@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root {
  --green-dark: #0A5C2F;
  --green-main: #0E7A3D;
  --green-light: #16A84F;
  --green-pale: #E8F5EC;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --red: #C0281A;
  --red-light: #E53D2E;
  --cream: #FBF8F3;
  --white: #FFFFFF;
  --dark: #0D1B12;
  --navy: #0F2318;
  --text: #1A2E1A;
  --text-mid: #4A6450;
  --text-light: #7A9A7A;
  --shadow: 0 8px 40px rgba(10,92,47,0.13);
  --shadow-strong: 0 16px 60px rgba(10,92,47,0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::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);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 600; }

.hindi { font-family: 'Noto Sans Devanagari','Inter',sans-serif; }

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

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  font-family: 'Noto Sans Devanagari','Inter',sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white; box-shadow: 0 6px 30px rgba(14,122,61,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(14,122,61,0.5);
  background: linear-gradient(135deg, var(--green-light), var(--green-main));
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #A07830);
  color: white; box-shadow: 0 6px 30px rgba(201,168,76,0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.5); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color:white; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* SECTION */
section { padding: 80px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-main);
  padding: 6px 16px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}
#navbar.scrolled {
  background: white; box-shadow: 0 2px 30px rgba(10,92,47,0.12);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.88rem;
  font-weight: 500; color: white; transition: var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(255,255,255,0.2); }
#navbar.scrolled .nav-links a:hover { background: var(--green-pale); color: var(--green-main); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-toggle { display:flex; gap:4px; }
.lang-btn {
  padding: 6px 14px; border-radius: 20px; font-size: 0.82rem;
  font-weight: 600; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; color: white; cursor: pointer;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: white; color: var(--green-dark); border-color: white;
}
#navbar.scrolled .lang-btn { border-color: var(--green-main); color: var(--green-main); }
#navbar.scrolled .lang-btn.active, #navbar.scrolled .lang-btn:hover {
  background: var(--green-main); color: white;
}
.nav-cta { font-size: 0.88rem; padding: 10px 22px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:white; border-radius:2px; transition:var(--transition); }
#navbar.scrolled .hamburger span { background: var(--green-dark); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #062415 0%, #0A4020 40%, #0E5C30 70%, #0A3818 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 90px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(22,168,79,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute; bottom: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Floating leaves */
.leaf { position: absolute; pointer-events: none; opacity: 0.12; }
.leaf svg { width: 40px; height: 40px; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero-title { color: white; margin-bottom: 16px; }
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle-wrap {
  margin-bottom: 20px; height: 32px; overflow: hidden;
}
.hero-subtitle {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  font-weight: 500;
}
.typing-text { color: var(--gold-light); font-weight: 600; }
.hero-desc {
  color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75;
  margin-bottom: 32px; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  color: rgba(255,255,255,0.7); font-size: 0.88rem;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item::before { content: '✓'; color: var(--gold-light); font-weight: 700; }

/* Hero image side */
.hero-image-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-img-ring {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  border: 2px solid rgba(22,168,79,0.3);
  animation: pulseRing 3s ease-in-out infinite;
}
.hero-img-ring-2 {
  width: 360px; height: 360px;
  border: 1px solid rgba(201,168,76,0.25);
  animation: pulseRing 3s ease-in-out infinite 1s;
}
.hero-img-ring-3 {
  width: 300px; height: 300px;
  border: 1px solid rgba(22,168,79,0.15);
  animation: pulseRing 3s ease-in-out infinite 2s;
}
.hero-product-img {
  width: 340px; max-width: 90%; position: relative; z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: floatImg 4s ease-in-out infinite;
}
.hero-badges {
  position: absolute; z-index: 3;
}
.hero-badge-pill {
  position: absolute; background: white; border-radius: 50px;
  padding: 8px 16px; font-size: 0.8rem; font-weight: 700;
  color: var(--green-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.hb1 { top: 10%; left: -20%; }
.hb2 { top: 50%; right: -15%; }
.hb3 { bottom: 15%; left: -10%; }

/* ─── STATS STRIP ─── */
#stats {
  background: white; padding: 40px 0;
  box-shadow: 0 -4px 30px rgba(10,92,47,0.07);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item {}
.stat-icon { font-size: 2rem; margin-bottom: 8px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: var(--green-main);
  line-height: 1;
}
.stat-label { font-size: 0.88rem; color: var(--text-mid); margin-top: 4px; }
.stat-divider { width: 1px; background: #E0EDE5; height: 60px; margin: auto; }

/* ─── PROBLEM/SOLUTION ─── */
#problem { background: var(--cream); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.prob-card {
  border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden;
}
.prob-card-bad {
  background: linear-gradient(135deg, #1A0A08, #2D0F0A);
  color: white;
}
.prob-card-good {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: white;
}
.prob-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.2);
}
.prob-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prob-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; line-height: 1.5;
}
.prob-list li .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ─── HOW IT WORKS ─── */
#how { background: var(--navy); }
.how-title { color: white; }
.how-subtitle { color: rgba(255,255,255,0.65); }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px; margin-top: 50px;
}
.pillar-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px;
  transition: var(--transition);
}
.pillar-card:hover {
  background: rgba(255,255,255,0.1); transform: translateY(-4px);
  border-color: rgba(22,168,79,0.4);
}
.pillar-icon { font-size: 2.8rem; margin-bottom: 16px; }
.pillar-title { color: var(--gold-light); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.pillar-text { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.65; }

/* ─── BANNERS (doctor sections) ─── */
.banner-section { position: relative; overflow: hidden; }
.banner-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,36,21,0.82) 0%, rgba(6,36,21,0.4) 60%, transparent 100%);
  display: flex; align-items: center;
}
.banner-content { max-width: 520px; color: white; }
.banner-content h2 { color: white; margin-bottom: 16px; }
.banner-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1rem; }
.banner-right .banner-overlay {
  background: linear-gradient(270deg, rgba(6,36,21,0.82) 0%, rgba(6,36,21,0.4) 60%, transparent 100%);
  justify-content: flex-end;
}

/* ─── PROGRESS BARS ─── */
#wellness { background: var(--cream); }
.wellness-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 60px;
  margin-top: 50px;
}
.bar-item { }
.bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.bar-label { font-weight: 600; font-size: 0.95rem; }
.bar-pct { font-weight: 700; color: var(--green-main); font-size: 0.95rem; }
.bar-track {
  height: 10px; background: #D8EEE0; border-radius: 50px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 50px; width: 0%;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ─── INGREDIENTS ─── */
#ingredients { background: white; }
.ing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 50px;
}
.ing-card {
  background: var(--green-pale); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid #C8E8D0;
  transition: var(--transition); cursor: default;
}
.ing-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-strong);
  border-color: var(--green-light); background: white;
}
.ing-icon { font-size: 2.2rem; margin-bottom: 12px; }
.ing-name-hi { font-weight: 700; font-size: 1rem; color: var(--green-dark); }
.ing-name-en { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.ing-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── HOW TO USE ─── */
#usage { background: linear-gradient(135deg, var(--green-dark), #0A4020); }
.usage-title { color: white; }
.usage-subtitle { color: rgba(255,255,255,0.7); }
.steps-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; margin-top: 50px; position: relative;
}
.steps-row::before {
  content: '';
  position: absolute; top: 40px; left: 16%; right: 16%;
  height: 2px; background: rgba(255,255,255,0.2);
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px; color: white;
}
.step-title { color: var(--gold-light); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; }
.usage-note {
  margin-top: 40px; text-align: center;
  background: rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  padding: 20px; color: rgba(255,255,255,0.85); font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ─── ORDER SECTION ─── */
#order {
  background: linear-gradient(135deg, #051A0C, #0A3018 50%, #0D4020);
  position: relative; overflow: hidden;
}
#order::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22,168,79,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.order-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.order-left img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.order-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 44px;
}
.form-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 16px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 2rem; font-weight: 700; margin-bottom: 10px;
}
.form-subtitle { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; color: rgba(255,255,255,0.85); font-size: 0.88rem;
  font-weight: 600; margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
  color: white; font-size: 0.95rem; transition: var(--transition);
  font-family: 'Noto Sans Devanagari','Inter',sans-serif;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus {
  outline: none; border-color: var(--green-light);
  background: rgba(255,255,255,0.12);
}
.form-input.error { border-color: #FF6B6B; }
.form-error { color: #FF8888; font-size: 0.8rem; margin-top: 5px; display: none; }
.form-submit {
  width: 100%; padding: 17px; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), #A07830);
  color: white; font-size: 1.05rem; font-weight: 700;
  border: none; cursor: pointer; transition: var(--transition);
  font-family: 'Noto Sans Devanagari','Inter',sans-serif;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,168,76,0.5); }
.form-trust {
  margin-top: 16px; text-align: center;
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.form-trust span { display: flex; align-items: center; gap: 5px; }
.form-trust span::before { content: '✓'; color: var(--gold-light); font-weight: 700; }

/* ─── FAQ ─── */
#faq { background: var(--dark); }
.faq-title { color: white; }
.faq-subtitle { color: rgba(255,255,255,0.6); }
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(22,168,79,0.4); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; user-select: none;
  color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem;
  gap: 16px;
}
.faq-q:hover { color: var(--gold-light); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: var(--transition);
  color: white; font-size: 0.9rem;
}
.faq-item.open .faq-arrow { background: var(--green-main); transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(180deg, #030D07, #000);
  padding: 60px 0 30px; color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.footer-disc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-col h4 {
  color: var(--gold-light); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-order-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm); padding: 24px; text-align: center;
}
.footer-order-card p { font-size: 0.88rem; margin-bottom: 14px; color: rgba(255,255,255,0.7); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }

/* ─── MODAL ─── */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px); z-index: 9000;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  position: fixed; top: 50%; right: -100%; transform: translateY(-50%);
  width: 90%; max-width: 780px; z-index: 9001;
  background: white; border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.modal-backdrop.open .modal-box { right: 50%; transform: translate(50%,-50%); }
.modal-img-side {
  background: linear-gradient(135deg, #0A4020, #0D5828);
  display: flex; align-items: center; justify-content: center;
  padding: 32px; position: relative; overflow: hidden;
}
.modal-img-side::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(22,168,79,0.3) 0%, transparent 70%);
}
.modal-img-side img {
  width: 200px; position: relative; z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
  animation: floatImg 4s ease-in-out infinite;
}
.modal-form-side { padding: 36px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(0,0,0,0.1);
  border: none; cursor: pointer; font-size: 1.1rem; color: #666;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 10;
}
.modal-close:hover { background: var(--red); color: white; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale); color: var(--green-main);
  padding: 6px 14px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 12px;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 8px;
}
.modal-sub { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.6; }
.modal .form-label { color: var(--text); }
.modal .form-input {
  background: var(--cream); border-color: #C8E8D0; color: var(--text);
}
.modal .form-input::placeholder { color: #A0B8A8; }
.modal .form-input:focus { border-color: var(--green-main); background: white; }
.modal-submit {
  width: 100%; padding: 16px; border-radius: 50px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: white; font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: var(--transition);
  font-family: 'Noto Sans Devanagari','Inter',sans-serif;
  box-shadow: 0 6px 24px rgba(14,122,61,0.4);
}
.modal-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(14,122,61,0.5); }
.modal-cod { text-align:center; margin-top:12px; font-size:0.82rem; color:var(--text-light); }

/* ─── FLOATING CTA (mobile) ─── */
.float-cta {
  display: none;
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  animation: floatPulse 2.5s ease-in-out infinite;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity:0; transform:translateX(-30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity:1; transform:none; }

/* ─── DISCLAIMER BAR ─── */
.disclaimer-bar {
  background: #FFF8E1; border-top: 2px solid #FFD54F;
  padding: 12px 24px; text-align: center;
  font-size: 0.82rem; color: #5D4037; line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns:1fr; gap:40px; text-align:center; padding: 40px 0; }
  .hero-image-wrap { order:-1; }
  .hero-product-img { width:260px; }
  .hero-img-ring { width:320px; height:320px; }
  .hero-img-ring-2 { width:270px; height:270px; }
  .hero-img-ring-3 { width:220px; height:220px; }
  .hero-btns { justify-content:center; }
  .hero-trust { justify-content:center; }
  .hero-desc { margin:0 auto 32px; }
  .pillars-grid { grid-template-columns:1fr; }
  .order-inner { grid-template-columns:1fr; }
  .order-left { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  section { padding:60px 0; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .stat-divider { display:none; }
  .problem-grid { grid-template-columns:1fr; }
  .ing-grid { grid-template-columns:repeat(2,1fr); }
  .steps-row { grid-template-columns:1fr; gap:24px; }
  .steps-row::before { display:none; }
  .wellness-grid { grid-template-columns:1fr; }
  .modal-box { grid-template-columns:1fr; max-width:440px; }
  .modal-img-side { display:none; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .float-cta { display:block; }
  .footer-grid { grid-template-columns:1fr; }
  .banner-img { height:320px; }
}
@media (max-width:480px) {
  .ing-grid { grid-template-columns:1fr; }
  .order-form-card { padding:28px 20px; }
}
