/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE - NUVORA organic nutrition
   Homepage-specific styles only.
   Base layout, header, footer, typography handled by base.css.
   ═══════════════════════════════════════════════════════════════ */

/* ── Color Palette (local references) ──
   Primary:        #1B5E3B
   Primary Light:  #3D9A55
   Primary Dark:   #0A2E1C
   Accent:         #8BC34A
   Accent Light:   #D4F0A8
   Background:     #F5FAF3
   Surface:        #E4F0DC
   Text:           #1A1A0E
   ── */

/* ═══════════════════════════════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(135deg, #0A2E1C 0%, #1B5E3B 30%, #3D9A55 60%, #3D9A55 100%);
  background-size: 300% 300%;
  animation: heroGradientMove 12s ease infinite;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

@keyframes heroGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Radial glow overlay */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 78% 30%, rgba(139, 195, 74, 0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.home-hero::after {
  display: none;
}

.home-hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-content {
  flex: 0 0 60%;
  max-width: 60%;
}

.hero-image {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Floating leaf particles */
.hero-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(212, 240, 168, 0.3);
  border-radius: 50% 0 50% 0;
  animation: leafFloat 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.hero-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { top: 25%; left: 75%; animation-delay: 1.2s; animation-duration: 5.5s; width: 6px; height: 6px; }
.hero-particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2.4s; animation-duration: 8s; width: 10px; height: 10px; }
.hero-particle:nth-child(4) { top: 40%; left: 85%; animation-delay: 0.8s; animation-duration: 6.5s; }
.hero-particle:nth-child(5) { top: 70%; left: 50%; animation-delay: 3s; animation-duration: 7.5s; width: 5px; height: 5px; }
.hero-particle:nth-child(6) { top: 10%; left: 55%; animation-delay: 1.8s; animation-duration: 9s; width: 7px; height: 7px; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  25% { transform: translateY(-20px) rotate(45deg); opacity: 0.7; }
  50% { transform: translateY(-10px) rotate(90deg); opacity: 0.5; }
  75% { transform: translateY(-30px) rotate(135deg); opacity: 0.6; }
}


/* ═══════════════════════════════════════════════════════════════
   2. HERO CONTENT
   ═══════════════════════════════════════════════════════════════ */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-title {
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-highlight {
  color: #D4F0A8;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8BC34A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  text-decoration: none;
}

.home-button:hover {
  background: #D4F0A8;
  box-shadow: 0 8px 24px rgba(139, 195, 74, 0.4);
  transform: translateY(-1px);
}

.home-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.home-button-outline:hover {
  background: #ffffff;
  color: #1B5E3B;
}


/* ═══════════════════════════════════════════════════════════════
   3. TRUST TICKER
   ═══════════════════════════════════════════════════════════════ */
.trust-ticker {
  background: #E4F0DC;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.trust-ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.trust-ticker:hover .trust-ticker__track {
  animation-play-state: paused;
}

.trust-ticker__items {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A0E;
  white-space: nowrap;
}

.trust-ticker__item svg {
  width: 18px;
  height: 18px;
  color: #1B5E3B;
  stroke: #1B5E3B;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════
   4. FEATURED PRODUCT
   ═══════════════════════════════════════════════════════════════ */
.featured-product {
  padding: 80px 0;
  background: #F5FAF3;
}

.featured-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-product__image-card {
  background: #E4F0DC;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-product__image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.featured-product__category {
  display: inline-block;
  background: rgba(27, 94, 59, 0.08);
  color: #1B5E3B;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-product__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1A1A0E;
  line-height: 1.2;
  margin-bottom: 16px;
}

.featured-product__description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-product__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
}

.featured-product__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1A1A0E;
  font-weight: 500;
}

.featured-product__benefits li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B5E3B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}

.featured-product__price {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1B5E3B;
  margin-bottom: 24px;
}

.featured-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8BC34A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  text-decoration: none;
}

.featured-product__cta:hover {
  background: #D4F0A8;
  box-shadow: 0 8px 24px rgba(139, 195, 74, 0.35);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════
   5. BENEFITS SECTION
   ═══════════════════════════════════════════════════════════════ */
.benefits-section {
  background: #E4F0DC;
  padding: 80px 0;
}

/* Shared section header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  color: #8BC34A;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1A1A0E;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-title .highlight {
  color: #D4F0A8;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27, 94, 59, 0.1);
  border-color: #1B5E3B;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 94, 59, 0.1) 0%, rgba(139, 195, 74, 0.08) 100%);
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: #1B5E3B;
  stroke: #1B5E3B;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A0E;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   6. RESULTS / STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.results-section {
  background: linear-gradient(135deg, #0A2E1C 0%, #1B5E3B 30%, #3D9A55 60%, #3D9A55 100%);
  color: #ffffff;
  padding: 80px 0;
}

.results-section .section-label {
  color: #D4F0A8;
}

.results-section .section-title {
  color: #ffffff;
}

.results-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4F0A8;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════
   7. TESTIMONIALS TICKER
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 80px 0;
  background: #F5FAF3;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 40s linear infinite;
}

.testimonials-section:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 350px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #E8DED8;
  border-radius: 16px;
  padding: 32px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(27, 94, 59, 0.1);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 15px;
  color: #1A1A0E;
  font-weight: 600;
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #1B5E3B;
  font-weight: 500;
}

.testimonial-verified::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B5E3B' stroke='none'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════
   8. COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.comparison-section {
  background: #E4F0DC;
  padding: 80px 0;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A0E;
  border-bottom: 2px solid #1B5E3B;
  text-align: center;
  background: #F5FAF3;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #E8DED8;
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1A1A0E;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: #F5FAF3;
}

/* Highlight our column */
.comparison-table th.our-column,
.comparison-table td.our-column {
  background: rgba(27, 94, 59, 0.04);
}

.check-yes {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B5E3B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
}

.check-no {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
}


/* ═══════════════════════════════════════════════════════════════
   9. VIP CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.vip-cta {
  text-align: center;
  padding: 80px 0;
  background: #F5FAF3;
}

.vip-cta__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1A1A0E;
  margin-bottom: 16px;
  line-height: 1.3;
}

.vip-cta__title .highlight {
  color: #D4F0A8;
}

.vip-cta__description {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.vip-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8BC34A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  text-decoration: none;
}

.vip-cta__button:hover {
  background: #D4F0A8;
  box-shadow: 0 8px 24px rgba(139, 195, 74, 0.35);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════
   10. FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: #F5FAF3;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E8DED8;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A0E;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #1B5E3B;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}


/* ═══════════════════════════════════════════════════════════════
   11. NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: #E4F0DC;
  padding: 60px 0;
}

.newsletter-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-inner h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A0E;
  margin-bottom: 10px;
}

.newsletter-inner p {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #E8DED8;
  border-right: none;
  font-size: 15px;
  color: #1A1A0E;
  background: #ffffff;
  outline: none;
  border-radius: 8px 0 0 8px;
  transition: border-color 0.2s;
}

.newsletter-form input[type="email"]:focus {
  border-color: #1B5E3B;
}

.newsletter-form input[type="email"]::placeholder {
  color: #999;
}

.newsletter-form button {
  background: #8BC34A;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #D4F0A8;
}


/* ═══════════════════════════════════════════════════════════════
   5b. BENEFITS CONTENT SECTION (alternate class names)
   ═══════════════════════════════════════════════════════════════ */
.benefits-content-section {
  background: #E4F0DC;
  padding: 80px 0;
}

.benefits-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.benefit-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27, 94, 59, 0.1);
  border-color: #1B5E3B;
}

.benefit-content-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 94, 59, 0.1) 0%, rgba(139, 195, 74, 0.08) 100%);
  margin: 0 auto 20px;
}

.benefit-content-icon svg {
  width: 32px;
  height: 32px;
  color: #1B5E3B;
  stroke: #1B5E3B;
}

.benefit-content-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A0E;
  margin-bottom: 10px;
}

.benefit-content-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   6b. RESULTS GRID (with styled cards & progress bars)
   ═══════════════════════════════════════════════════════════════ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.result-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.result-number {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
}

.result-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4F0A8;
  margin-bottom: 12px;
}

.result-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

.results-footnote {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 32px;
  font-style: italic;
}

/* Section label light variant */
.section-label--light {
  color: #D4F0A8;
}

.section-title--light {
  color: #ffffff;
}


/* ═══════════════════════════════════════════════════════════════
   8b. COMPARISON TABLE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */
.comparison-table-wrapper {
  max-width: 860px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-highlight {
  background: rgba(27, 94, 59, 0.06);
}

.comparison-logo {
  max-width: 100px;
  height: auto;
}

.comparison-check {
  color: #1B5E3B;
  font-size: 20px;
  font-weight: 700;
}

.comparison-x {
  color: #C53030;
  font-size: 20px;
  font-weight: 700;
}

.comparison-maybe {
  color: #B7791F;
  font-size: 20px;
  font-weight: 700;
}

.comparison-expensive {
  color: #C53030;
  font-size: 14px;
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   12. SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.animate-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-section.animate--visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-item--child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--index, 0) * 0.1s);
}

.animate-section.animate--visible .animate-item--child {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   13. RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .benefits-grid,
  .benefits-content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-grid,
  .results-grid {
    gap: 24px;
  }

  .stat-number,
  .result-number {
    font-size: 3rem;
  }

  .featured-product__grid {
    gap: 32px;
  }

  .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .home-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
  }
}

/* ── Tablet / small: 768px ── */
@media (max-width: 768px) {
  /* Hero */
  .home-hero {
    min-height: auto;
    padding: 60px 0 80px;
  }

  .home-hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    flex: none;
    max-width: 100%;
  }

  .hero-image {
    flex: none;
    max-width: 80%;
    margin: 0 auto;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .hero-cta-group {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .home-button,
  .home-button-outline {
    width: 80%;
    text-align: center;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  /* Featured Product */
  .featured-product {
    padding: 48px 0;
  }

  .featured-product__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-product__benefits {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefits-section,
  .benefits-content-section {
    padding: 48px 0;
  }

  .benefits-grid,
  .benefits-content-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card,
  .benefit-content-card {
    padding: 28px 20px;
  }

  /* Results */
  .results-section {
    padding: 48px 0;
  }

  .stats-grid,
  .results-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number,
  .result-number {
    font-size: 3rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 48px 0;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 320px;
    padding: 24px 20px;
  }

  /* Comparison */
  .comparison-section {
    padding: 48px 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* VIP CTA */
  .vip-cta {
    padding: 48px 0;
  }

  /* FAQ */
  .faq-section {
    padding: 48px 0;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-form input[type="email"] {
    border-right: 1px solid #E8DED8;
    border-radius: 8px 8px 0 0;
  }

  .newsletter-form button {
    border-radius: 0 0 8px 8px;
    padding: 14px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 32px;
  }

  /* Trust ticker */
  .trust-ticker {
    padding: 12px 0;
  }

  .trust-ticker__item {
    font-size: 12px;
    gap: 6px;
  }

  .trust-ticker__items {
    gap: 28px;
  }
}

/* ── Mobile: 480px ── */
@media (max-width: 480px) {
  .home-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .hero-description {
    font-size: 14px;
  }

  .home-button,
  .home-button-outline {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .stat-number,
  .result-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.375rem;
  }

  .featured-product__title {
    font-size: 1.5rem;
  }

  .featured-product__price {
    font-size: 1.5rem;
  }

  .vip-cta__title {
    font-size: 1.375rem;
  }

  .faq-question {
    font-size: 15px;
  }

  .testimonial-card {
    min-width: 260px;
    max-width: 290px;
    padding: 20px 16px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 10px;
    font-size: 12px;
  }
}
