/* Products Sub-Subpages Consolidated CSS */

:root {
  --primary-color: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary-color: #f97316;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  color: var(--text-dark);
  background: white;
}

/* Hero Section */
.product-hero {
  padding: 4rem 0;
  background: white;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-intro {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--secondary-color);
}

.product-description {
  font-size: 1.063rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

/* Advantages — compact two-column list */
.advantages-list {
  padding: 3.5rem 0;
  background: var(--bg-light);
}

.advantages-list .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.advantages-list .section-subtitle {
  text-align: center;
  margin-bottom: 2.25rem;
}

/* list grid */
.advantages-list-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
}

/* single item */
.advantages-list-grid li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border-color);
}

/* left column inside each li */
.adv-left {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* icon box */
.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(43, 126, 252, 0.08),
    rgba(234, 88, 12, 0.04)
  );
  color: var(--primary-color);
  flex-shrink: 0;
  font-size: 1.15rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

/* heading within left column */
.adv-left strong {
  display: inline-block;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

/* description */
.adv-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* hover microinteraction */
.advantages-list-grid li:hover .adv-icon {
  transform: translateY(-4px) rotate(-4deg);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
}

/* responsive */
@media (max-width: 900px) {
  .advantages-list-grid {
    grid-template-columns: 1fr;
  }
  .adv-left {
    min-width: 140px;
  }
}

/* Specifications Section */
.specs-section {
  padding: 4rem 0;
  background: white;
}

.specs-card {
  background: linear-gradient(
    135deg,
    #eff6ff 0%,
    #dbeafe 100%
  );
  border: 1px solid #bfdbfe;
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.specs-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.specs-content {
  position: relative;
  z-index: 2;
}

.specs-list {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  );
  gap: 1.5rem;
  margin-top: 2rem;
}

.spec-item {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: start;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.spec-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.12);
}

.spec-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-icon i {
  color: white;
  font-size: 1.125rem;
}

.spec-text h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.spec-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
  /* min-height: 400px; */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.image-badge i {
  color: var(--secondary-color);
}

/* Stats Bar */
.stats-bar {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(180px, 1fr)
  );
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.stat-icon i {
  color: white;
  font-size: 1.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      30deg,
      rgba(255, 255, 255, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.05) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.05) 87.5%
    );
  background-size: 80px 140px;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.5);
  color: white;
}

.btn-cta-secondary {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.3);
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .product-hero,
  .features-section,
  .specs-section,
  .cta-section {
    padding: 2.5rem 0;
  }

  .product-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .hero-image-wrapper {
    /* min-height: 300px; */
    margin-bottom: 2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-list-grid li {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    justify-content: center;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out backwards;
}

.animate-in:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-in:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-in:nth-child(3) {
  animation-delay: 0.3s;
}
