/* =============================================
   VIJAYSAR HERBALS — Premium Landing Page CSS
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-soft: #d8f3dc;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --brown: #6b3f1f;
  --brown-light: #c68b4c;
  --cream: #faf6ef;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #777777;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2d6a4f 0%, #1a4a2e 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(45,106,79,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,106,79,0.5);
  background: linear-gradient(135deg, #3a8a65 0%, #1a4a2e 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-soft);
  border-color: var(--green-dark);
}

.btn-header {
  background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
  color: white;
  padding: 10px 22px;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
}

.btn-xl { padding: 18px 40px; font-size: 1.15rem; }
.btn-buy { width: 100%; padding: 16px; font-size: 1.05rem; margin-top: 8px; border-radius: var(--radius-md); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-dark));
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 0;
  overflow: hidden;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1000;
}
.announcement-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.announcement-inner span { padding: 0 60px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,106,79,0.1);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--green-dark); letter-spacing: 2px; }
.logo-tagline { font-size: 0.65rem; font-weight: 600; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }

.header-nav { display: flex; gap: 6px; align-items: center; }
.nav-link { padding: 8px 14px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; color: var(--text-mid); transition: all var(--transition); }
.nav-link:hover { background: var(--green-soft); color: var(--green-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all var(--transition); display: block; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  background: white;
  border-top: 1px solid var(--green-soft);
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; border-radius: var(--radius-sm); color: var(--text-mid); font-weight: 500; }
.mobile-nav a:hover { background: var(--green-soft); color: var(--green-dark); }
.mobile-nav .btn { margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f5ee 40%, #faf6ef 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(82,183,136,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.6; transform:scale(1.4); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #c9a84c 0%, #e8a020 50%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  padding-left: 4px;
}

.hero-price-block { margin-bottom: 28px; }
.price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.price-original { font-size: 1.4rem; color: var(--text-light); text-decoration: line-through; }
.price-current { font-size: 2.5rem; font-weight: 800; color: var(--green-dark); font-family: 'Playfair Display', serif; }
.price-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.price-note { font-size: 0.82rem; color: var(--green-mid); font-weight: 600; }

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.trust-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 18px;
  background: rgba(45,106,79,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(45,106,79,0.1);
}
.trust-strip span { font-size: 0.8rem; color: var(--green-dark); font-weight: 600; }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(82,183,136,0.25) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  border-radius: 50%;
  filter: blur(40px);
}
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.offer-badge-float {
  position: absolute;
  top: -14px;
  left: -14px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(239,68,68,0.45);
  z-index: 2;
  animation: wobble 2s ease-in-out infinite;
}
@keyframes wobble {
  0%,100% { transform:rotate(-5deg); }
  50% { transform:rotate(5deg); }
}

.review-float {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
  z-index: 2;
  border: 1px solid var(--green-soft);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-6px); }
}
.review-stars { font-size: 0.8rem; margin-bottom: 4px; }
.review-float p { font-size: 0.75rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.review-float span { font-size: 0.7rem; color: var(--text-light); }

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--green-mid);
  border-bottom: 2px solid var(--green-mid);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%,100% { transform:rotate(45deg) translateY(0); opacity:1; }
  50% { transform:rotate(45deg) translateY(6px); opacity:0.5; }
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--green-dark);
  padding: 30px 0;
}
.proof-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.proof-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.proof-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* ===== SECTION SHARED STYLES ===== */
section { padding: 80px 0; }
.section-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag.white {
  background: rgba(255,255,255,0.15);
  color: white;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.25;
}
.section-title.left { text-align: left; }
.section-title.white { color: white; }
.underline-green {
  position: relative;
  display: inline-block;
}
.underline-green::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section { background: var(--cream); }
.problem-section .section-tag, .problem-section .section-title { text-align: center; display: block; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.problem-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-icon { font-size: 2.5rem; margin-bottom: 12px; }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.problem-card p { font-size: 0.88rem; color: var(--text-mid); }

.problem-solution-bridge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.bridge-line { flex: 1; height: 2px; background: linear-gradient(90deg, transparent, var(--green-light), transparent); }
.bridge-text {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.bridge-text span { font-size: 1.2rem; margin-right: 6px; }

/* ===== PRODUCT HIGHLIGHT ===== */
.product-highlight { background: white; }
.product-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-feature-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.product-desc { color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-mid); }
.check-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.science-badge {
  background: linear-gradient(135deg, rgba(45,106,79,0.08), rgba(82,183,136,0.08));
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--green-dark);
  line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section { background: linear-gradient(180deg, #f0f7f4 0%, white 100%); }
.benefits-section .section-tag, .benefits-section .section-title { text-align: center; display: block; margin-bottom: 40px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-mid);
  transition: width var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { width: 100%; opacity: 0.04; z-index: 0; }
.benefit-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.benefit-icon-wrap.green { background: rgba(45,106,79,0.1); }
.benefit-icon-wrap.blue { background: rgba(59,130,246,0.1); }
.benefit-icon-wrap.gold { background: rgba(201,168,76,0.1); }
.benefit-icon-wrap.earth { background: rgba(107,63,31,0.1); }
.benefit-icon-wrap.purple { background: rgba(139,92,246,0.1); }
.benefit-icon-wrap.rose { background: rgba(244,63,94,0.1); }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.benefit-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--green-dark); color: white; }
.how-it-works .section-tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.how-it-works .section-title { color: white; margin-bottom: 50px; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.step-card {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex-shrink: 0;
  margin-top: 60px;
  opacity: 0.6;
}
.how-note {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.how-note span { font-size: 1.5rem; flex-shrink: 0; }
.how-note strong { color: var(--gold-light); }

/* ===== BUY SECTION ===== */
.buy-section {
  background: linear-gradient(135deg, #0f2d1e 0%, #1a4a2e 50%, #0f2d1e 100%);
  padding: 80px 0;
  text-align: center;
}
.buy-section .section-tag { margin-bottom: 12px; }
.buy-section .section-title { margin-bottom: 30px; }
.gold-text { color: var(--gold-light); }

/* Countdown */
.countdown-wrap { margin-bottom: 40px; }
.countdown-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 12px; }
.countdown { display: flex; justify-content: center; align-items: center; gap: 8px; }
.cd-block {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  min-width: 70px;
  text-align: center;
}
.cd-block span { font-size: 2rem; font-weight: 800; color: var(--gold-light); display: block; font-family: 'Playfair Display', serif; }
.cd-block label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 2rem; color: var(--gold); font-weight: 800; }

/* Product Cards */
.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
  text-align: left;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); }
.product-card.featured {
  border: 3px solid var(--gold);
  transform: scale(1.02);
}
.product-card.featured:hover { transform: scale(1.02) translateY(-6px); }

.best-value-banner {
  background: linear-gradient(90deg, var(--gold), #e8a020);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.5px;
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.product-card-badge.gold { background: linear-gradient(135deg, var(--gold), #a07830); }

.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.pack-label { font-size: 0.88rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.pack-includes { list-style: none; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.pack-includes li { font-size: 0.82rem; color: var(--text-mid); }

.card-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.card-price-old { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.card-price-new { font-size: 1.8rem; font-weight: 800; color: var(--green-dark); font-family: 'Playfair Display', serif; }
.card-saving { background: #fef2f2; color: #dc2626; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* Order Form */
.order-form { display: flex; flex-direction: column; gap: 10px; }
.form-title { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; padding-top: 4px; border-top: 1px solid #f0f0f0; }
.order-form input, .order-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color var(--transition);
  outline: none;
}
.order-form input:focus, .order-form select:focus { border-color: var(--green-light); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.secure-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 4px; }

/* Urgency */
.urgency-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(239,68,68,0.1);
  border: 1.5px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.urgency-dot {
  width: 10px; height: 10px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.2s infinite;
}
.urgency-box strong { color: #fca5a5; }

/* Trust Badges Row */
.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}
.trust-badge span { font-size: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials .section-tag, .testimonials .section-title { text-align: center; display: block; }
.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 24px 0 40px;
}
.overall-score { font-size: 4rem; font-weight: 900; color: var(--green-dark); font-family: 'Playfair Display', serif; line-height: 1; }
.overall-stars { font-size: 1.5rem; }
.overall-count { font-size: 0.88rem; color: var(--text-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars-sm { font-size: 0.9rem; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.reviewer span { font-size: 0.75rem; color: var(--green-mid); }
.reviews-cta { text-align: center; }

/* ===== COMPARISON ===== */
.comparison-section { background: white; }
.comparison-section .section-tag, .comparison-section .section-title { text-align: center; display: block; margin-bottom: 40px; }
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}
.comparison-table th {
  background: var(--green-dark);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table .our-col { background: rgba(45,106,79,0.06); font-weight: 600; }
.comparison-table th.our-col { background: var(--green-mid); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #fafafa; }
.comparison-table .our-col:hover { background: rgba(45,106,79,0.1) !important; }
.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; }
.partial { color: #d97706; }

/* ===== TRACKING SECTION ===== */
.tracking-section { background: linear-gradient(135deg, #f0f7f4, #e8f5ee); }
.tracking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}
.tracking-icon { font-size: 3rem; margin-bottom: 16px; }
.tracking-card h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-dark); margin-bottom: 12px; }
.tracking-card p { color: var(--text-mid); margin-bottom: 24px; }
.tracking-form { display: flex; gap: 10px; margin-bottom: 16px; }
.tracking-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}
.tracking-form input:focus { border-color: var(--green-light); }
.tracking-form button {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.tracking-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,79,0.3); }
.tracking-result {
  background: var(--green-soft);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--green-dark);
  text-align: left;
  margin-top: 10px;
}
.tracking-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }
.tracking-note a { color: var(--green-mid); font-weight: 600; }

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }
.faq-section .section-tag, .faq-section .section-title { text-align: center; display: block; margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
  gap: 12px;
}
.faq-arrow {
  font-size: 1.4rem;
  color: var(--green-mid);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  transition: all 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--green-dark), #0f2d1e);
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: white; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-price { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 28px; }
.fp-old { font-size: 1.4rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.fp-new { font-size: 2.8rem; font-weight: 900; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.fp-badge { background: #ef4444; color: white; font-size: 0.88rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; }
.final-guarantee { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 18px; }

/* ===== FOOTER ===== */
.footer { background: #0d1f14; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-brand { color: white; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  color: white;
}
.footer-social a:hover { background: var(--green-mid); }
.footer-links h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); padding: 4px 0; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 8px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}
.modal-icon { font-size: 4rem; margin-bottom: 16px; }
.modal-box h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--green-dark); margin-bottom: 12px; }
.modal-box p { color: var(--text-mid); margin-bottom: 24px; }
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== STICKY BUY BAR (MOBILE) ===== */
.sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 2px solid var(--green-soft);
  padding: 12px 20px;
  z-index: 998;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-price span { font-size: 1.3rem; font-weight: 800; color: var(--green-dark); display: block; }
.sticky-price small { font-size: 0.72rem; color: var(--green-mid); font-weight: 600; }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate].visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .product-highlight-inner { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .header-nav, .btn-header { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 30px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-wrap { order: -1; }
  .hero-img { max-height: 320px; width: 100%; object-fit: cover; }
  .review-float { display: none; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .trust-strip { justify-content: center; }
  .product-highlight-inner { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { display: none; }
  .product-cards { grid-template-columns: 1fr; }
  .product-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .problem-solution-bridge { flex-direction: column; text-align: center; }
  .bridge-text { white-space: normal; }
  .proof-divider { display: none; }
  .sticky-buy-bar { display: flex; }
  body { padding-bottom: 70px; }
  .tracking-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
  .trust-badges-row { gap: 10px; }
  .trust-badge { font-size: 0.75rem; padding: 8px 14px; }
  .modal-box { padding: 32px 24px; }
  .tracking-card { padding: 32px 20px; }
}
