.products-section {
  max-width: 1200px;
  margin: auto;
  padding: 130px 30px 80px;
}
.products-title {
  text-align: center;
  font-size: 60px;
  color: cyan;
  text-shadow: 0 0 20px cyan;
}
.products-subtitle {
  text-align: center;
  color: white;
  margin-top: 15px;
  font-size: 22px;
}
.product-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 70px;
  flex-wrap: wrap;
}
.product-logo img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 30px;
  border: 3px solid cyan;
  box-shadow: 0 0 30px cyan;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}
.product-downloads {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.download-btn {
  text-decoration: none;
  color: white;
  border: 2px solid cyan;
  padding: 18px;
  border-radius: 15px;
  text-align: center;
  font-size: 22px;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.download-btn:hover {
  background: cyan;
  color: #08111f;
  transform: translateY(-5px);
  box-shadow: 0 0 25px cyan;
}

.about-box {
  margin-top: 80px;
  border: 2px solid cyan;
  border-radius: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}
.about-box h2 {
  color: cyan;
  margin-bottom: 20px;
  font-size: 36px;
}
.about-box p {
  color: white;
  font-size: 20px;
  line-height: 36px;
}
/* MOBILE */
@media (max-width: 900px) {
  .product-wrapper {
    flex-direction: column;
  }
  .download-btn {
    font-size: 18px;
  }
}
.product-info {
  margin-bottom: 30px;
  color: white;
}
.product-info h2 {
  color: cyan;
  margin-bottom: 20px;
  font-size: 36px;
  text-shadow: 0 0 15px cyan;
}
.product-info p {
  margin: 12px 0;
  font-size: 20px;
  color: #ddd;
}
.product-info strong {
  color: cyan;
}
.product-preview {
  flex: 1.4;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.preview-card {
  width: 220px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid cyan;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
}
.preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px cyan;
}
.preview-card h3 {
  text-align: center;
  padding: 15px;
  color: cyan;
  font-size: 22px;
}
.preview-card img {
  width: 100%;
  display: block;
}
.product-preview {
  justify-content: center;
}
.preview-card {
  width: 180px;
}
.product-video {
  width: 100%;
  max-width: 620px;
  margin-left: -65px;
}
.product-video video {
  width: 100%;
  height: 380px;

  border-radius: 20px;
  border: 2px solid #00e5ff;
  box-shadow:
    0 0 20px cyan,
    0 0 60px rgba(0, 255, 255, 0.4);
}
