/* ===== REVEL MASTER STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary-green: #2D7659;
  --gold: #E8B341;
  --saffron: #FF6B35;
  --cream: #FDFAF3;
  --light-bg: #F0E5D8;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --border: #E0E0E0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { font-size: 1rem; line-height: 1.75; color: var(--text-light); }
p.dark { color: var(--text-dark); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light-bg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--saffron);
  color: var(--white);
}
.btn-primary:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
}

/* --- Hero Section (Home) --- */
.hero {
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(45, 118, 89, 0.1);
  color: var(--primary-green);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hero h1 span {
  color: var(--primary-green);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 500px;
}

.usp-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.usp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.usp-chip::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
}

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

/* --- Full-width Hero Slider --- */
.hero-slider {
  position: relative;
  height: min(64vh, 56vw);
  min-height: 520px;
  max-height: 680px;
  overflow: hidden;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slider .hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroZoom 8s ease-in-out forwards;
}

.hero-slide.active .hero-slide-bg img {
  animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.01); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(10, 30, 20, 0.78) 0%, rgba(10, 30, 20, 0.55) 40%, rgba(10, 30, 20, 0.15) 100%);
}

.hero-slide-overlay > .container {
  margin: 0;
  width: 100%;
}

@media (min-width: 769px) {
  .hero-slide-overlay > .container {
    padding-left: 96px;
  }
}

.hero-slide-content {
  max-width: 640px;
  padding: 20px 0;
}

.hero-slider .hero-badge {
  background: var(--white);
  color: var(--primary-green);
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-slider h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-slider h1 span {
  color: var(--gold);
}

.hero-slider .hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 26px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Caption entrance animation */
.hero-slide.active .hero-slide-content > *:not(.hero-badge) {
  animation: captionUp 0.9s ease forwards;
  opacity: 0;
}

.hero-slide.active .hero-slide-content > .hero-badge {
  animation: captionUp 0.9s ease forwards;
}

.hero-slide.active .hero-slide-content .hero-badge { animation-delay: 0.1s; }
.hero-slide.active .hero-slide-content h1 { animation-delay: 0.25s; }
.hero-slide.active .hero-slide-content .hero-sub { animation-delay: 0.4s; }
.hero-slide.active .hero-slide-content .hero-actions { animation-delay: 0.55s; }

@keyframes captionUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
}

.hero-slider:hover .hero-arrow {
  opacity: 1;
}

.hero-arrow:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }

/* Dots */
.hero-slider .hero-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-slider .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-slider .hero-dot.active {
  background: var(--saffron);
  transform: scale(1.3);
}

.hero-slider .hero-dot:hover {
  background: var(--saffron);
}

/* --- Trust Strip --- */
.trust-strip {
  padding: 56px 0 72px;
  position: relative;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-card {
  position: relative;
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-card:hover::after {
  opacity: 1;
}

.trust-card.green-tint {
  background: linear-gradient(160deg, rgba(45, 118, 89, 0.12), rgba(45, 118, 89, 0.03));
  border: 1px solid rgba(45, 118, 89, 0.18);
}

.trust-card.gold-tint {
  background: linear-gradient(160deg, rgba(232, 179, 65, 0.14), rgba(232, 179, 65, 0.03));
  border: 1px solid rgba(232, 179, 65, 0.25);
}

.trust-card.saffron-tint {
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.03));
  border: 1px solid rgba(255, 107, 53, 0.22);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.trust-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-card.green-tint .trust-number {
  color: var(--primary-green);
}

.trust-card.gold-tint .trust-number {
  color: #c7942f;
}

.trust-card.saffron-tint .trust-number {
  color: var(--saffron);
}

.trust-plus {
  font-size: 1.6rem;
  vertical-align: super;
}

.trust-label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-sub {
  font-size: 0.82rem;
  color: var(--text-light);
}

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

.section-header h2 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Legal (Privacy / Terms) --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  color: var(--primary-green);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--text-dark);
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-content .legal-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-content a {
  color: var(--primary-green);
  text-decoration: underline;
}

/* --- Product Teaser --- */
.product-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-teaser-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-teaser-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-teaser-content h2 {
  margin-bottom: 16px;
}

.product-teaser-content p {
  margin-bottom: 28px;
}

/* --- Benefits Grid --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(45, 118, 89, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--gold), var(--saffron), var(--primary-green));
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(45, 118, 89, 0.3);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
}

/* --- Pricing Section --- */
.pricing-highlight {
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--primary-green);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-card .plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-card .price-original {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing-card .price-save {
  color: var(--saffron);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-card .per-bottle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 16px;
}

.pricing-alt {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Story Teaser --- */
.story-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-teaser-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-teaser-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-video {
  position: relative;
  height: 200px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--saffron);
}

.testimonial-body {
  padding: 24px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-loc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Final CTA --- */
.final-cta {
  background: var(--primary-green);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* --- Product Page Specifics --- */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

.plan-selector {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.plan-option {
  flex: 1;
  padding: 14px 24px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
}

.plan-option.active {
  background: var(--primary-green);
  color: var(--white);
}

.plan-price-display {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price-display .original {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
}

.plan-savings {
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 24px;
}

/* What's Inside */
.whats-inside {
  text-align: center;
  padding: 80px 0;
}

.whats-inside h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 32px;
  color: var(--primary-green);
}

.exclusion-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.exclusion-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  border: 1px solid var(--border);
  background: var(--white);
}

.exclusion-x {
  color: #cc3333;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Comparison Bar Chart */
.comparison-chart {
  max-width: 700px;
  margin: 0 auto;
}

.bar-group {
  margin-bottom: 24px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.bar-track {
  height: 28px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 14px;
  transition: width 1.5s ease;
  width: 0;
}

.bar-fill.amla { background: var(--primary-green); }
.bar-fill.orange { background: var(--saffron); }
.bar-fill.kiwi { background: var(--gold); }

.bar-attribution {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 24px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
}

.comparison-table td {
  background: var(--white);
  font-size: 0.95rem;
}

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

.comparison-table .highlight-col {
  background: rgba(45, 118, 89, 0.05);
  font-weight: 600;
}

/* Steps Visual */
.consume-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.consume-step {
  text-align: center;
  padding: 24px;
}

.consume-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.tip-callout {
  max-width: 500px;
  margin: 32px auto 0;
  padding: 16px 24px;
  background: rgba(232, 179, 65, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-dark);
  text-align: center;
}

/* Delivery Key Points */
.delivery-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.delivery-point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.delivery-point::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
}

/* Full Pricing Table */
.full-pricing-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.full-pricing-table th,
.full-pricing-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.full-pricing-table th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.full-pricing-table td {
  background: var(--white);
  font-size: 0.95rem;
}

.full-pricing-table .plan-header {
  font-weight: 700;
  color: var(--primary-green);
}

.full-pricing-table .highlight-row td {
  background: rgba(45, 118, 89, 0.05);
}

.full-pricing-table tr:last-child td {
  border-bottom: none;
}

/* --- Story Page --- */
.story-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.problem-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.mission-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mission-section h2 {
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.founder-note {
  max-width: 800px;
  margin: 0 auto;
}

.founder-note blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  padding: 24px 32px;
  border-left: 4px solid var(--primary-green);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}

.founder-attr {
  font-weight: 600;
  color: var(--primary-green);
}

/* Values horizontal scroll */
.values-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.values-scroll::-webkit-scrollbar {
  height: 6px;
}

.values-scroll::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 3px;
}

.values-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 3px;
}

.value-card {
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  color: var(--primary-green);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.value-card p {
  font-size: 0.95rem;
}

/* Future Products */
.future-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.future-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.future-card .silhouette {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.future-card h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.future-card .coming-soon {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- Blog Page --- */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.category-tag {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
}

.category-tag:hover,
.category-tag.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 180px;
  background: var(--light-bg);
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(45, 118, 89, 0.1);
  color: var(--primary-green);
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.blog-card-body p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

/* Expert Spotlight */
.expert-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.expert-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.expert-card:hover {
  box-shadow: var(--shadow-md);
}

.expert-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}

.expert-attr {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 0.9rem;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.video-embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-body {
  padding: 16px;
}

.video-card-body h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.video-card-body p {
  font-size: 0.8rem;
}

/* --- FAQ Page --- */
.faq-category {
  margin-bottom: 48px;
}

.faq-category h3 {
  margin-bottom: 20px;
  color: var(--primary-green);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-green);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--saffron);
}

.faq-arrow {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--text-light);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 40px;
  padding: 16px;
  border-top: 1px solid var(--border);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-channel:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-green);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.channel-icon.whatsapp { background: #25D366; color: var(--white); }
.channel-icon.email { background: var(--primary-green); color: var(--white); }
.channel-icon.phone { background: var(--saffron); color: var(--white); }

.channel-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.channel-info p {
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 118, 89, 0.1);
}

.form-message {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-message.success {
  display: block;
  background: rgba(45, 118, 89, 0.1);
  color: var(--primary-green);
  border: 1px solid rgba(45, 118, 89, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(255, 107, 53, 0.1);
  color: #c2410c;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Newsletter */
.newsletter-section {
  text-align: center;
  padding: 60px 0;
  background: var(--light-bg);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 450px;
  margin: 24px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-green);
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--saffron);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--saffron);
}

/* --- Checkout Modal --- */
.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.checkout-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--light-bg);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkout-close:hover {
  background: var(--border);
}

.checkout-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.checkout-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: var(--transition);
}

.checkout-step.active {
  background: var(--primary-green);
}

.checkout-step.done {
  background: var(--saffron);
}

.checkout-step-content {
  display: none;
}

.checkout-step-content.active {
  display: block;
}

.checkout-step-content h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.plan-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.plan-choice:hover,
.plan-choice.selected {
  border-color: var(--primary-green);
  background: rgba(45, 118, 89, 0.04);
}

.plan-choice-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.plan-choice-info p {
  font-size: 0.85rem;
}

.plan-choice-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-green);
}

.pincode-input {
  display: flex;
  gap: 12px;
}

.pincode-input input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.pincode-input input:focus {
  outline: none;
  border-color: var(--primary-green);
}

.pincode-result {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}

.pincode-result.success {
  display: block;
  background: rgba(45, 118, 89, 0.1);
  color: var(--primary-green);
  border: 1px solid rgba(45, 118, 89, 0.2);
}

.pincode-result.fail {
  display: block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--saffron);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.interest-form {
  margin-top: 16px;
  display: none;
}

.interest-form.visible {
  display: block;
}

.checkout-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.checkout-nav .btn {
  flex: 1;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid,
  .product-teaser-grid,
  .story-teaser-grid,
  .product-hero-grid,
  .problem-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
  }

  .how-it-works-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .how-it-works-steps::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-steps {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .consume-steps {
    grid-template-columns: 1fr;
  }

  .future-products {
    grid-template-columns: 1fr;
  }

  .expert-spotlight {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-slider {
    height: 72vh;
    min-height: 500px;
    max-height: 620px;
  }

  .hero-slider h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }

  .hero-slider .hero-sub {
    font-size: 0.98rem;
  }

  .hero-slider .hero-dots {
    bottom: 18px;
  }

  .hero-slider .hero-dot {
    width: 10px;
    height: 10px;
  }

  .hero-arrow {
    display: none;
  }
}

/* --- Floating WhatsApp Button --- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: waPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}
