:root {
  /* ── BLUE + GREEN PROFESSIONAL COLOR SYSTEM ── */

  /* Primary: Ocean Blue */
  --blue:         #0a5eb0;
  --blue-dark:    #063a7a;
  --blue-light:   #3d8ef0;
  --blue-mid:     #1570d8;
  --blue-glow:    rgba(10,94,176,0.38);

  /* Accent: Emerald Green */
  --green:        #0e9e6e;
  --green-dark:   #097250;
  --green-light:  #25c98c;
  --green-glow:   rgba(14,158,110,0.38);

  /* Backward compat aliases (replaces red/gold roles) */
  --red:          #0a5eb0;
  --red-dark:     #063a7a;
  --red-light:    #3d8ef0;
  --gold:         #0e9e6e;
  --gold-dark:    #097250;

  /* Surfaces: Deep navy-dark */
  --black:        #050d1a;
  --dark:         #090f1e;
  --dark2:        #0d1626;
  --dark3:        #12203a;
  --dark4:        #162844;
  --dark-warm:    #071222;

  /* Neutrals */
  --white:        #ffffff;
  --gray-light:   #f0f5ff;
  --gray:         #e2eaf8;
  --text-muted:   rgba(255,255,255,0.65);
  --text-faint:   rgba(255,255,255,0.40);
  --border-soft:  rgba(255,255,255,0.07);
  --border-blue:  rgba(10,94,176,0.28);
  --border-green: rgba(14,158,110,0.28);

  /* Radius */
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  /* Shadows */
  --shadow:       0 8px 40px rgba(0,0,0,0.35);
  --shadow-red:   0 6px 28px rgba(10,94,176,0.40);
  --shadow-blue:  0 6px 28px rgba(10,94,176,0.40);
  --shadow-green: 0 6px 28px rgba(14,158,110,0.35);

  /* Animation */
  --transition:   0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --container:    1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans Tamil', 'Inter', sans-serif;
  background: #090f1e;
  color: var(--white);
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* ── 8 HERBS SQUARE CARDS ── */
.herbs-outer {
  background: linear-gradient(180deg, #050d1a 0%, #090f1e 100%);
  padding: 60px 24px;
}
.herbs-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.herbs-inner .section-label {
  display: inline-block;
  background: rgba(14,158,110,0.12);
  border: 1.5px solid var(--green);
  color: var(--green-light);
  font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.herbs-inner h2 { font-size: clamp(22px,2.5vw,36px); font-weight:900; color:#fff; margin-bottom:8px; }
.herbs-inner h2 span { color: var(--green-light); }
.herbs-inner .herbs-sub { color:rgba(255,255,255,0.65); font-size:15px; margin-bottom:40px; line-height:1.7; }
.herbs-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.herb-card {
  background: #fff;
  border: 1.5px solid rgba(14,158,110,0.28);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.herb-card:hover { transform:translateY(-6px) scale(1.02); border-color:var(--green); box-shadow:0 12px 40px rgba(14,158,110,0.35); }
.herb-card .herb-icon {
  position:absolute; top:0; left:0; right:0; bottom:42%;
  display:flex; align-items:center; justify-content:center;
  font-size:54px;
  background: radial-gradient(ellipse at center, rgba(14,158,110,0.13) 0%, transparent 70%);
}
.herb-card .herb-number {
  position:absolute; top:10px; left:12px;
  width:26px; height:26px;
  background:var(--green-dark); color:#fff;
  font-size:11px; font-weight:900;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.herb-card .herb-body {
  width:100%;
  background: linear-gradient(0deg,rgba(5,13,26,0.97) 0%,rgba(5,13,26,0.7) 100%);
  padding: 12px 14px 14px;
  position:relative; z-index:2;
}
.herb-card .herb-name { font-size:14px; font-weight:900; color:#fff; margin-bottom:3px; line-height:1.3; }
.herb-card .herb-tamil { font-size:11px; font-weight:700; color:var(--green-light); margin-bottom:5px; }
.herb-card .herb-benefit { font-size:11px; color:#fff;line-height:1.5; }
.herb-card .herb-tag {
  display:inline-block;
  background:rgba(14,158,110,0.15); border:1px solid rgba(14,158,110,0.40);
  color:var(--green-light); font-size:10px; font-weight:700;
  padding:2px 8px; border-radius:20px; margin-top:6px;
}
@media(max-width:900px){ .herbs-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .herbs-grid{ grid-template-columns:repeat(1,1fr); gap:10px; } }

/* ── CERTIFICATION SECTION ── */
.cert-outer {
  background: linear-gradient(135deg,#050d1a 0%,#071628 50%,#050d1a 100%);
  padding: 60px 24px;
  border-top: 2px solid rgba(10,94,176,0.35);
  border-bottom: 2px solid rgba(14,158,110,0.35);
}
.cert-inner { max-width:var(--container); margin:0 auto; text-align:center; }
.cert-inner .cert-label {
  display:inline-block;
  background:rgba(10,94,176,0.12); border:1.5px solid var(--blue);
  color:var(--blue-light); font-size:12px; font-weight:700;
  padding:5px 16px; border-radius:50px;
  letter-spacing:1px; text-transform:uppercase; margin-bottom:14px;
}
.cert-inner h2 { font-size:clamp(22px,2.5vw,34px); font-weight:900; color:#fff; margin-bottom:10px; }
.cert-inner h2 span { color:var(--green-light); }
.cert-inner .cert-sub {
  font-size:15px; color:rgba(255,255,255,0.65);
  margin-bottom:44px; line-height:1.7;
  max-width:680px; margin-left:auto; margin-right:auto;
}
.cert-cards-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px; margin-bottom:40px;
}
.cert-card {
  background:linear-gradient(145deg,#0d1830,#0a1428);
  border:1.5px solid rgba(10,94,176,0.28);
  border-radius:16px; padding:28px 18px 22px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  transition:transform 0.22s ease,border-color 0.22s ease,box-shadow 0.22s ease;
}
.cert-card:hover { transform:translateY(-5px); border-color:var(--blue); box-shadow:0 10px 36px rgba(10,94,176,0.35); }
.cert-icon-wrap {
  width:68px; height:68px; border-radius:50%;
  background:linear-gradient(135deg,rgba(10,94,176,0.18),rgba(14,158,110,0.18));
  border:2px solid rgba(10,94,176,0.45);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; margin-bottom:14px;
  box-shadow:0 0 20px rgba(10,94,176,0.28);
}
.cert-card h3 { font-size:14px; font-weight:900; color:var(--blue-light); margin-bottom:8px; line-height:1.35; }
.cert-card p  { font-size:12px; color:rgba(255,255,255,0.62); line-height:1.6; }
.cert-card .cert-chip {
  display:inline-block;
  background:rgba(14,158,110,0.15); border:1px solid rgba(14,158,110,0.40);
  color:var(--green-light); font-size:10px; font-weight:800;
  padding:3px 10px; border-radius:20px; margin-top:10px;
}
.cert-strip {
  background:linear-gradient(135deg,rgba(10,94,176,0.10),rgba(14,158,110,0.10));
  border:1.5px solid rgba(255,255,255,0.07);
  border-radius:16px; padding:26px 32px;
  display:flex; align-items:center; justify-content:space-around;
  flex-wrap:wrap; gap:20px;
}
.cert-strip-item { display:flex; align-items:center; gap:12px; }
.cert-strip-item .si-icon { font-size:28px; }
.cert-strip-item .si-txt { text-align:left; }
.cert-strip-item .si-txt strong { display:block; font-size:14px; font-weight:900; color:#fff; margin-bottom:2px; }
.cert-strip-item .si-txt span  { font-size:12px; color:rgba(255,255,255,0.55); }
.cert-vdivider { width:1px; height:50px; background:rgba(255,255,255,0.10); }
.cert-images-row {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:16px; margin-top:36px;
}
.cert-images-row img {
  height:140px; width:auto;
  border-radius:10px; border:1px solid rgba(255,255,255,0.10);
  background:#fff; padding:8px 12px;
  filter:brightness(0.9) contrast(1.05);
  transition:transform 0.22s ease,filter 0.22s ease;
}
.cert-images-row img:hover { transform:scale(1.06); filter:brightness(1.1); }
@media(max-width:900px){ .cert-cards-grid{ grid-template-columns:repeat(2,1fr); } .cert-vdivider{ display:none; } }
@media(max-width:480px){ .cert-cards-grid{ grid-template-columns:1fr 1fr; gap:12px; } .cert-strip{ padding:18px 14px; } }

/* ── 8-CARD TESTIMONIALS GRID ── */
.testimonials-grid-8 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.tc-verified { display:inline-block; background:rgba(14,158,110,0.15); border:1px solid rgba(14,158,110,0.40); color:var(--green-light); font-size:10px; font-weight:700; padding:2px 8px; border-radius:20px; margin-top:3px; }
.tc-rating-num { font-size:12px; font-weight:800; color:var(--green-light); margin-left:5px; }
.tc-product-tag { font-size:11px; color:rgba(255,255,255,0.40); margin-top:8px; font-style:italic; }
@media(max-width:1100px){ .testimonials-grid-8{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:550px){ .testimonials-grid-8{ grid-template-columns:1fr; } }

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

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────
   TOP MARQUEE
───────────────────────────────────────── */
.top-marquee {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 0;
  z-index: 9999;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 12px rgba(10,94,176,0.50);
}

/* ─────────────────────────────────────────
   FULL-WIDTH SECTIONS (bg edge-to-edge)
   Inner content constrained by .container
───────────────────────────────────────── */
.section-full {
  width: 100%;
}

.spacer-top { height: 34px; }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar-outer {
  background: linear-gradient(135deg, #050d1a 0%, #080f1e 100%);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 34px;
  z-index: 900;
  width: 100%;
}
.navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon  { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand {
  font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 0.3px;
}
.logo-text .tagline {
  font-size: 10px; font-weight: 600; color: var(--gold);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.navbar-right { display: flex; align-items: center; gap: 14px; }
.navbar-phone {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px;
}
.navbar-phone span { color: var(--gold); }
.navbar-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 13px; font-weight: 800;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: var(--shadow-red); white-space: nowrap;
  transition: transform var(--transition);
}
.navbar-cta:hover { transform: scale(1.04); }

/* ─────────────────────────────────────────
   DIVIDER
───────────────────────────────────────── */
.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
}

/* ─────────────────────────────────────────
   HERO BANNER
───────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #050d1a 0%, #070e1c 100%);
  padding: 48px 24px 40px;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-left {}
.hero-left .hero-badge {
  display: inline-block;
  background: rgba(10,94,176,0.15);
  border: 1.5px solid var(--red);
  color: var(--red-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-left h1 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 16px;
}
.hero-left h1 span { color: var(--gold); }
.hero-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.hero-stat .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.hero-right { position: relative; }
.hero-right img { width: 100%; border-radius: var(--radius-lg); }
/* ── Product image responsive fix ── */
@media (max-width: 768px) {
  .hero-right img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 480px) {
  .hero-right img {
    max-width: 260px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 360px) {
  .hero-right img {
    max-width: 220px;
    margin: 0 auto;
    display: block;
  }
}
.hero-right .floating-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: float-badge 2.5s ease-in-out infinite;
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-right .floating-badge { font-size: 11px; }
}

/* ─────────────────────────────────────────
   DESIRES SECTION
───────────────────────────────────────── */
.desires-outer {
  background: linear-gradient(180deg, #090f1e 0%, #090f1e 100%);
  padding: 48px 24px;
}
.desires-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.desires-heading {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: #fff;
  border: 2px dashed var(--red);
  padding: 14px 24px;
  border-radius: 12px;
  margin-bottom: 36px;
  background: rgba(10,94,176,0.07);
  display: inline-block;
  width: 100%;
}
.desires-heading span { color: var(--red-light); }
.desires-grid-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.desires-col-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.desire-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(10,94,176,0.06);
  border: 1px solid rgba(10,94,176,0.20);
  border-radius: var(--radius);
  padding: 16px 12px;
  transition: border-color var(--transition), transform var(--transition);
}
.desire-item:hover { border-color: var(--red); transform: translateY(-3px); }
.desire-item img {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 3px solid var(--red);
  box-shadow: 0 0 18px rgba(10,94,176,0.55);
  object-fit: cover;
  margin-bottom: 10px;
}
.desire-item p {
  color: #fff; font-size: 13px;
  font-weight: 700; text-align: center; line-height: 1.4;
}
.desires-center-wide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.desires-center-wide img {
  /* width: 220px; */
  filter: drop-shadow(0 0 28px rgba(10,94,176,0.50));
}
@media (max-width: 900px) {
  .desires-grid-wide { grid-template-columns: 1fr; }
  .desires-center-wide img { width: 160px; }
}

/* ─────────────────────────────────────────
   ALERT BOX
───────────────────────────────────────── */
.alert-outer {
  background: linear-gradient(135deg, #1ac98c, #5debb7);
  padding: 20px 24px;
  border-left: 6px solid var(--red);
}
.alert-inner {
  max-width: var(--container);
  margin: 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: #070e1c;
  line-height: 1.8;
  text-align: justify;
}

/* ─────────────────────────────────────────
   TWO-COL WHITE SECTION
───────────────────────────────────────── */
.white-outer {
  background: #fff;
  padding: 56px 24px;
}
.white-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.white-left img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 8px; }
.white-left .problem-skew {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-red);
}
.white-left .problem-skew p {
  font-size: 15px; font-weight: 700; margin: 10px 0;
  display: flex; align-items: center; gap: 12px;
  color: #fff; text-align: left;
}
.white-left .problem-skew p img { width: 42px; height: 42px; flex-shrink: 0; }
.white-right {}
.white-right h1 {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900; color: var(--black);
  line-height: 1.45; margin-bottom: 16px;
}
.white-right p {
  font-size: 15px; line-height: 1.8;
  color: #444; margin-bottom: 16px;
}
.white-right p span { color: var(--red); font-weight: 800; }
@media (max-width: 860px) {
  .white-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────────────────────────────────────
   CTA BUTTON
───────────────────────────────────────── */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 17px; font-weight: 800;
  padding: 15px 36px; border-radius: 50px;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.2px;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,94,176,0.50); }
.cta-wrap { text-align: center; padding: 16px 0; }

/* ─────────────────────────────────────────
   SURVEY SECTION
───────────────────────────────────────── */
.survey-outer {
  background: linear-gradient(180deg, #090f1e, #090f1e);
  padding: 52px 24px;
}
.survey-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.survey-alert {
  background: #fff;
  color: var(--black);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border-left: 5px solid var(--red);
  line-height: 1.6;
}
.survey-title {
  color: var(--gold);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  margin-bottom: 28px;
  text-align: center;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reason-card {
  /* background: linear-gradient(135deg, #0d1626, #060f1f); */
  background: brown;
  border: 1.5px solid rgba(10,94,176,0.40);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: border-color var(--transition), transform var(--transition);
}
.reason-card:hover { border-color: var(--red); transform: translateY(-4px); }
.reason-card img { width: 90px; margin: 0 auto 14px; }
.reason-card p { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.6; }
@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .reasons-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ─────────────────────────────────────────
   GUARANTEE / BANNER STRIP
───────────────────────────────────────── */
.guarantee-outer {
  background: linear-gradient(135deg, #050d1a, #070e1c);
  padding: 18px 24px;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  text-align: center;
}
.guarantee-outer h4 {
  color: var(--gold);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
}

/* ─────────────────────────────────────────
   TRUST BADGES ROW
───────────────────────────────────────── */
.trust-outer { background: #090f1e; padding: 20px 24px; }
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
}
.trust-item .icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(10,94,176,0.12);
  border: 2px solid var(--red);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 22px;
}
.trust-item span {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-align: center; line-height: 1.3;
}

/* ─────────────────────────────────────────
   BENEFITS SECTION
───────────────────────────────────────── */
.benefits-outer {
  background: linear-gradient(180deg, #0d3060, #091e3d);
  padding: 48px 24px;
}
.benefits-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}
.benefits-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefit-item {
  background: rgba(0,0,0,0.35);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.benefit-item img { width: auto; height: 210px; object-fit: cover; }
.benefit-item .label {
  font-size: 13px; font-weight: 700; color: #fff;
  text-align: center; padding: 10px 8px;
  background: rgba(0,0,0,0.5); line-height: 1.4;
}
.benefits-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.benefits-promo .question {
  font-size: 16px; font-weight: 900; color: #fff;
  text-align: center; line-height: 1.5;
}
.benefits-promo img { width: 100%; border-radius: var(--radius); }
@media (max-width: 860px) {
  .benefits-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   INGREDIENTS SECTION
───────────────────────────────────────── */
.ingredients-outer {
  background: linear-gradient(180deg, #050d1a, #090f1e);
  padding: 56px 24px;
}
.ingredients-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.ingredients-inner h1 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  margin-bottom: 8px;
}
.ingredients-inner .sub-text {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.6;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}
.ingredient-card {
  background: linear-gradient(135deg, #181818, #090f1e);
  border: 1.5px solid rgba(227,28,28,0.28);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: border-color var(--transition), transform var(--transition);
}
.ingredient-card:hover { border-color: var(--red); transform: translateY(-3px); }
.ingredient-card img {
  width: 88px; height: 88px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(10,94,176,0.45);
}
.ingredient-card .info h2 {
  font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 6px;
}
.ingredient-card .info p {
  font-size: 14px; color: var(--gold); font-weight: 600; line-height: 1.6;
}
@media (max-width: 700px) {
  .ingredients-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   PROBLEMS SECTION
───────────────────────────────────────── */
.problems-outer {
  background: #fff;
  padding: 52px 24px;
}
.problems-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.problems-left h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.45;
}
.problem-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(10,94,176,0.15);
}
.problem-row .icon {
  background: var(--black);
  padding: 12px 14px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.problem-row .icon img { width: 48px; height: 48px; object-fit: contain; }
.problem-row .text {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 15px; font-weight: 700;
  padding: 14px 16px; flex: 1;
  display: flex; align-items: center; line-height: 1.4;
}
.problems-right { display: flex; flex-direction: column; gap: 16px; }
.problems-right img { width: 100%; border-radius: var(--radius); }
.notice-box {
  background: linear-gradient(135deg, #fff8f8, #fff);
  padding: 18px 20px;
  font-size: 15px; font-weight: 700;
  color: #222; line-height: 1.75;
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 16px rgba(10,94,176,0.10);
}
.notice-box span { color: var(--red); font-weight: 900; }
@media (max-width: 860px) {
  .problems-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────────────────────────────────────
   GIF CARDS SECTION
───────────────────────────────────────── */
.gif-outer {
  background: var(--gray-light);
  padding: 52px 24px;
}
.gif-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.gif-heading {
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.offer-blink {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 28px;
  animation: blink 1.3s step-start infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.gif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gif-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e5e5e5;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gif-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.gif-card img { width: 100%; }
.gif-card p {
  padding: 14px 16px;
  font-size: 14px; color: #333; line-height: 1.7;
}
.gif-card p span { color: var(--red); font-weight: 800; }
@media (max-width: 900px) {
  .gif-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .gif-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   PRODUCT SHOWCASE
───────────────────────────────────────── */
.product-outer {
  background: var(--dark2);
  padding: 52px 24px 0;
}
.product-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.product-left h1 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 20px;
}
.money-back {
  background: var(--black);
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1.5px solid var(--gold);
  display: inline-block;
}
.product-right {
  display: flex;
  gap: 0;
  align-items: flex-end;
}
.product-right img { flex: 1; width: 50%; }
@media (max-width: 860px) {
  .product-inner { grid-template-columns: 1fr; }
  .product-right img { width: 100%; }
}

/* ─────────────────────────────────────────
   STATS / SOCIAL PROOF BAR  (NEW creative)
───────────────────────────────────────── */
.stats-outer {
  background: linear-gradient(135deg, var(--red-dark), #0d3060);
  padding: 36px 24px;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-block { display: flex; flex-direction: column; align-items: center; }
.stat-block .big-num {
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-block .stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   HOW IT WORKS  (NEW creative)
───────────────────────────────────────── */
.hiw-outer {
  background: var(--black);
  padding: 56px 24px;
}
.hiw-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.hiw-inner h2 {
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 36px;
}
.hiw-inner h2 span { color: var(--gold); }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  z-index: 0;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hiw-step .step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 20px rgba(10,94,176,0.50);
  margin-bottom: 16px;
}
.hiw-step h3 {
  font-size: 16px; font-weight: 900; color: var(--gold); margin-bottom: 8px;
}
.hiw-step p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hiw-steps::before { display: none; }
}
@media (max-width: 480px) {
  .hiw-steps { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   TESTIMONIALS  (NEW creative)
───────────────────────────────────────── */
.testimonials-outer {
  background: linear-gradient(180deg, #090f1e, #090f1e);
  padding: 56px 24px;
}
.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.testimonials-inner h2 {
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900; color: #fff;
  margin-bottom: 36px;
}
.testimonials-inner h2 span { color: var(--red-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: linear-gradient(135deg, #181818, #07101f);
  border: 1.5px solid rgba(10,94,176,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--red); transform: translateY(-4px); }
.tc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tc-avatar img{
  width: 63px; height: 63px;
}
.tc-avatar {
  width: 63px; height: 63px;
  border-radius: 4%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  border: 2px solid var(--gold);
}
.tc-name { font-size: 15px; font-weight: 900; color: #fff; }
.tc-loc  { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); }
.tc-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.tc-text  { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   ORDER FORM SECTION
───────────────────────────────────────── */
.form-outer {
  background: linear-gradient(180deg, #050d1a, #070e1c);
  padding: 56px 24px;
}
.form-inner-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.form-left h2 {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900; color: #fff;
  line-height: 1.4; margin-bottom: 20px;
}
.form-left h2 span { color: var(--gold); }
.form-left-points { list-style: none; margin-bottom: 24px; }
.form-left-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 12px;
  line-height: 1.5;
}
.form-left-points li .check {
  color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
}
.badge-red  { background: var(--red); color: #fff; }
.badge-gold { background: var(--gold); color: var(--black); }
.badge-dark { background: var(--dark2); color: #fff; border: 1px solid rgba(255,255,255,0.15); }

.form-right {}
.form-heading {
  text-align: center;
  font-size: 15px; font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.price-box {
  background: linear-gradient(135deg, #090f1e, #090f1e);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  margin-bottom: 20px;
}
.price-old {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-new {
  font-size: 36px; font-weight: 900;
  color: var(--gold); margin-bottom: 14px;
}
.price-box img {
  width: 70%; margin: 0 auto;
  animation: pulse-img 2s ease-in-out infinite;
}
@keyframes pulse-img {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.countdown-wrap {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 12px;
  margin-bottom: 20px;
  text-align: center;
}
.countdown-label {
  font-size: 12px; font-weight: 700;
  color: var(--gold); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.clock-grid { display: flex; justify-content: center; gap: 10px; }
.clock-unit {
  display: flex; flex-direction: column;
  align-items: center; flex: 1; max-width: 80px;
}
.clock-unit .num {
  background: var(--gold); color: var(--black);
  font-size: 28px; font-weight: 900;
  width: 100%; border-radius: 10px;
  padding: 8px 0; text-align: center;
  box-shadow: 0 2px 12px rgba(14,158,110,0.40);
}
.clock-unit .lbl {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-top: 5px; letter-spacing: 0.4px;
}
.form-box {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px;
  font-weight: 700; color: rgba(255,255,255,0.75);
  margin-bottom: 7px; letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px; color: #fff;
  font-family: 'Noto Sans Tamil', sans-serif;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(10,94,176,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea { resize: none; }
.phone-wrap { position: relative; }
.phone-prefix {
  position: absolute; top: 50%; left: 16px;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-weight: 700; font-size: 15px;
  pointer-events: none; z-index: 2;
}
.phone-wrap input { padding-left: 48px; }
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 20px; font-weight: 900;
  padding: 18px; border: none;
  border-radius: var(--radius-sm);
  cursor: pointer; box-shadow: var(--shadow-red);
  transition: transform var(--transition), opacity var(--transition);
  font-family: 'Noto Sans Tamil', sans-serif; margin-top: 6px;
}
.submit-btn:hover   { transform: translateY(-2px); opacity: 0.93; }
.submit-btn:active  { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
@media (max-width: 900px) {
  .form-inner-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
  }

  .form-inner-wrap > *:first-child {
      order: 2;
  }

  .form-inner-wrap > *:last-child {
      order: 1;
  }
  .herb-cion img{
    max-width: 80%;
  }
}

/* ── DELIVERY ── */
.delivery-outer {
  background: #fff;
  padding: 24px;
}
.delivery-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.delivery-inner img { width: 100%; border-radius: var(--radius); }

/* ── FOOTER ── */
.footer-outer {
  background: #090f1e;
  border-top: 2px solid var(--red);
  padding: 32px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand .logo-wrap { margin-bottom: 12px; }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7;
}
.footer-links h5 {
  font-size: 14px; font-weight: 800;
  color: var(--gold); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.footer-links a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red-light); }
.footer-contact h5 {
  font-size: 14px; font-weight: 800;
  color: var(--gold); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.footer-contact p {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 8px; line-height: 1.6;
}
.footer-bottom {
  max-width: var(--container);
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ── FIXED BOTTOM BAR ── */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  z-index: 10000;
  box-shadow: 0 -4px 28px rgba(10,94,176,0.55);
}
.fixed-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.fixed-bar-left { display: flex; flex-direction: column; }
.fixed-bar-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.75); }
.fixed-bar-timer { font-size: 20px; font-weight: 900; color: var(--gold); }
.fixed-bar-right { display: flex; align-items: center; gap: 16px; }
.fixed-bar-price { font-size: 15px; font-weight: 900; color: #fff; }
.fixed-bar-price s { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 400; }
.fixed-bar-btn {
  background: #fff; color: var(--red);
  font-size: 14px; font-weight: 900;
  padding: 11px 22px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--transition); white-space: nowrap;
}
.fixed-bar-btn:hover { transform: scale(1.04); }
@media (max-width: 550px) {
  .fixed-bar-price { display: none; }
  .fixed-bar-btn { font-size: 13px; padding: 9px 14px; }
}

/* ── RESPONSIVE GLOBAL ── */
@media (max-width: 480px) {
  .logo-text .brand { font-size: 14px; }
  .navbar-phone { display: none; }
  .cta-btn { font-size: 15px; padding: 13px 24px; }
  .clock-unit .num { font-size: 22px; }
}
/* ── GIF CARDS SECTION ── */
.gif-outer {
  background: var(--gray-light);
  padding: 52px 24px;
}
.gif-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.gif-heading {
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.offer-blink {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 28px;
  animation: blink 1.3s step-start infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.gif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gif-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e5e5e5;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gif-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.gif-card img { width: 100%; }
.gif-card p {
  padding: 14px 16px;
  font-size: 14px; color: #333; line-height: 1.7;
}
.gif-card p span { color: var(--red); font-weight: 800; }
@media (max-width: 900px) {
  .gif-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .gif-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   BLUE + GREEN PROFESSIONAL ENHANCEMENT LAYER
═══════════════════════════════════════════════════ */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-light); }

/* Selection */
::selection { background: rgba(10,94,176,0.35); color: #fff; }

/* ── NAVBAR ENHANCEMENTS ── */
.navbar-outer {
  border-bottom: 2px solid rgba(10,94,176,0.6) !important;
  background: linear-gradient(135deg, var(--black) 0%, #061426 70%, #050e1e 100%) !important;
}
.logo-text .brand {
  background: linear-gradient(90deg, #fff 40%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text .tagline {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%) !important;
  border: 1px solid rgba(61,142,240,0.25) !important;
}
.navbar-cta:hover { box-shadow: 0 6px 20px var(--blue-glow) !important; }

/* ── MARQUEE ── */
.top-marquee {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 35%, var(--green) 65%, var(--blue-dark) 100%) !important;
  box-shadow: 0 2px 14px var(--blue-glow) !important;
}

/* ── DIVIDER ── */
.divider {
  height: 2px !important;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 25%, var(--green) 50%, var(--blue) 75%, transparent 100%) !important;
}

/* ── HERO BADGE ── */
.hero-badge {
  background: rgba(10,94,176,0.12) !important;
  border: 1.5px solid rgba(10,94,176,0.7) !important;
  color: var(--blue-light) !important;
}

/* ── HERO STATS ── */
.hero-stat .num, .stat-block .big-num {
  color: var(--green-light) !important;
  text-shadow: 0 2px 14px var(--green-glow) !important;
}

/* ── FLOATING BADGE ── */
.floating-badge {
  background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px var(--green-glow) !important;
}

/* ── DESIRE ITEMS ── */
.desire-item {
  background: rgba(10,94,176,0.07) !important;
  border: 1px solid rgba(10,94,176,0.22) !important;
}
.desire-item:hover { border-color: var(--blue) !important; }
.desire-item img { border-color: var(--blue) !important; box-shadow: 0 0 18px var(--blue-glow) !important; }

/* ── DESIRES HEADING ── */
.desires-heading {
  border: 2px dashed rgba(10,94,176,0.6) !important;
  background: rgba(10,94,176,0.08) !important;
}

/* ── ALERT BOX (now green toned) ── */
.alert-outer {
  background: linear-gradient(135deg, #0e7a5a, #0e9e6e 50%, #1ac98c 100%) !important;
  border-left: 6px solid var(--blue-dark) !important;
}
.alert-inner { color: #021810 !important; }

/* ── WHITE SECTION ── */
.white-right p span { color: var(--blue) !important; }
.problem-skew {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
  box-shadow: 0 6px 24px var(--blue-glow) !important;
}

/* ── CTA BUTTONS ── */
.cta-btn {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%) !important;
  box-shadow: var(--shadow-blue) !important;
  position: relative; overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 60%);
  border-radius: 50px; pointer-events: none;
}
.cta-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(10,94,176,0.55) !important;
  filter: brightness(1.08);
}

/* ── SURVEY SECTION ── */
.survey-title {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.survey-alert { border-left: 5px solid var(--blue) !important; }

/* ── REASON CARDS ── */
.reason-card {
  /* background: linear-gradient(135deg, #0d1830, #0a1428) !important; */
  background: brown;
  border: 1.5px solid rgba(10,94,176,0.28) !important;
}
.reason-card:hover {
  border-color: var(--blue) !important;
  box-shadow: 0 8px 28px var(--blue-glow) !important;
  transform: translateY(-5px) !important;
}

/* ── GUARANTEE STRIP ── */
.guarantee-outer {
  border-top: 2px solid rgba(10,94,176,0.6) !important;
  border-bottom: 2px solid rgba(14,158,110,0.6) !important;
  background: linear-gradient(135deg, var(--dark), #071a3a 50%, var(--dark)) !important;
}
.guarantee-outer h4 { color: var(--green-light) !important; text-shadow: 0 2px 10px var(--green-glow); }

/* ── TRUST BADGES ── */
.trust-outer { background: var(--dark) !important; }
.trust-item .icon-circle {
  background: rgba(10,94,176,0.10) !important;
  border: 1.5px solid rgba(10,94,176,0.45) !important;
  transition: all 0.22s ease;
}
.trust-item:hover .icon-circle {
  background: rgba(14,158,110,0.15) !important;
  border-color: var(--green) !important;
}

/* ── BENEFITS SECTION ── */
.benefits-outer {
  background: linear-gradient(180deg, #0a3060, #062040 60%, #041530 100%) !important;
}
.benefit-item {
  border: 1px solid rgba(10,94,176,0.15) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border-radius: var(--radius) !important;
}
.benefit-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px rgba(10,94,176,0.30) !important;
}

/* ── INGREDIENT CARDS ── */
.ingredient-card {
  background: linear-gradient(135deg, #0d1830, #090f1e) !important;
  border: 1.5px solid rgba(10,94,176,0.25) !important;
}
.ingredient-card:hover {
  border-color: var(--blue) !important;
  box-shadow: 0 8px 32px var(--blue-glow) !important;
  transform: translateY(-4px) !important;
}
.ingredient-card img {
  border-color: var(--blue) !important;
  box-shadow: 0 0 18px var(--blue-glow) !important;
}
.ingredient-card .info h2 { color: var(--blue-light) !important; }
.ingredient-card .info p  { color: var(--green-light) !important; }

/* ── PROBLEM ROWS ── */
.problem-row .icon { background: var(--dark3) !important; }
.problem-row .text {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%) !important;
}
.problem-row { box-shadow: 0 2px 14px rgba(10,94,176,0.20) !important; }
.notice-box { border-left: 5px solid var(--blue) !important; }
.notice-box span { color: var(--blue) !important; }

/* ── GIF CARDS SECTION ── */
.gif-outer { background: var(--gray-light) !important; }
.gif-card { border: 1px solid #d0dff5 !important; }
.gif-card p span { color: var(--blue) !important; }
.gif-card:hover { box-shadow: 0 12px 32px rgba(10,94,176,0.18) !important; }

/* ── PRODUCT SECTION ── */
.product-outer { background: var(--dark2) !important; }
.money-back {
  border: 1.5px solid var(--green) !important;
  color: var(--green-light) !important;
  background: rgba(14,158,110,0.08) !important;
}

/* ── STATS BAR ── */
.stats-outer {
  background: linear-gradient(135deg, var(--blue-dark), #0a3060 50%, #063a7a 100%) !important;
}

/* ── HOW IT WORKS ── */
.hiw-step .step-circle {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%) !important;
  border: 2.5px solid var(--green) !important;
  box-shadow: 0 0 22px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.hiw-steps::before {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue) 35%, var(--green) 65%, var(--blue) 100%) !important;
}
.hiw-step h3 { color: var(--green-light) !important; }

/* ── TESTIMONIALS ── */
.testimonials-inner h2 span { color: var(--blue-light) !important; }
.testimonial-card {
  background: linear-gradient(135deg, #0d1830, #0a1428) !important;
  border: 1.5px solid rgba(10,94,176,0.22) !important;
}
.testimonial-card:hover {
  border-color: var(--blue) !important;
  box-shadow: 0 8px 32px var(--blue-glow) !important;
  transform: translateY(-4px) !important;
}
.tc-avatar {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  border: 2px solid var(--green) !important;
}
.tc-stars { color: var(--green-light) !important; }

/* ── ORDER FORM ── */
.form-left h2 span { color: var(--green-light) !important; }
.price-box { border: 2px solid var(--blue) !important; }
.price-new {
  color: var(--green-light) !important;
  text-shadow: 0 2px 16px var(--green-glow) !important;
}
.countdown-wrap {
  background: rgba(10,94,176,0.06) !important;
  border: 1.5px solid rgba(10,94,176,0.22) !important;
}
.countdown-label { color: var(--green-light) !important; }
.clock-unit .num {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue)) !important;
  color: #fff !important;
  box-shadow: 0 2px 14px var(--blue-glow) !important;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue) !important;
  background: rgba(10,94,176,0.08) !important;
  box-shadow: 0 0 0 3px rgba(10,94,176,0.14) !important;
}
.submit-btn {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%) !important;
  box-shadow: var(--shadow-blue) !important;
  border-radius: var(--radius) !important;
}
.submit-btn:hover { box-shadow: 0 10px 32px var(--blue-glow) !important; }

/* ── BADGE VARIANTS ── */
.badge-red  { background: var(--blue) !important; color: #fff !important; }
.badge-gold { background: linear-gradient(135deg, var(--green-dark), var(--green)) !important; color: #fff !important; }

/* ── FOOTER ── */
.footer-outer {
  background: var(--dark) !important;
  border-top: 2px solid rgba(10,94,176,0.5) !important;
}
.footer-links h5, .footer-contact h5 { color: var(--green-light) !important; }
.footer-links a:hover { color: var(--blue-light) !important; }

/* ── FIXED BOTTOM BAR ── */
.fixed-bottom-bar {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue) 50%, var(--blue-dark) 100%) !important;
  box-shadow: 0 -4px 28px var(--blue-glow) !important;
  overflow: hidden;
}
.fixed-bar-timer { color: var(--green-light) !important; }
.fixed-bar-btn {
  background: var(--green) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px var(--green-glow) !important;
}
.fixed-bar-btn:hover { background: var(--green-light) !important; transform: scale(1.04) !important; }
.fixed-bottom-bar::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer-bar 4s ease-in-out infinite;
}
@keyframes shimmer-bar {
  0% { left: -100%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

/* ── FORM LEFT POINTS ── */
.form-left-points li .check { color: var(--green-light) !important; }

/* ── OFFER BLINK ── */
.offer-blink { color: var(--blue) !important; }

/* ── SVG LOGO circle color ── */
/* (inline SVG in HTML will also be updated separately) */




/* ═══════════════════════════════════════════════════
   VIDEO PLAYER SECTION — FULLY RESPONSIVE
═══════════════════════════════════════════════════ */
.video-section-outer{
  background: linear-gradient(180deg, #050d1a 0%, #071628 55%, #050d1a 100%);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.video-section-outer::before{
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(10,94,176,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.video-section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.vs-label-wrap{
  margin-bottom: 14px;
}
.vs-label{
  display: inline-block;
  background: rgba(14,158,110,0.12);
  border: 1.5px solid var(--green);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.vs-heading{
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}
.vs-heading span{
  background: linear-gradient(90deg, var(--blue-light), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vs-sub{
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.vs-player-wrap{
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto 28px;
}
.vs-glow-ring{
  position: absolute;
  inset: -7px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--blue-dark), var(--green-dark));
  background-size: 300% 300%;
  animation: vs-glow-rotate 6s linear infinite;
  z-index: 0;
  filter: blur(3px);
  opacity: 0.65;
}
@keyframes vs-glow-rotate{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}
.vs-video-container{
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  z-index: 1;
  box-shadow: 0 20px 70px rgba(0,0,0,0.65), 0 0 0 2px rgba(10,94,176,0.35);
}
.vs-video-container video{
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 600px;
  object-fit: contain;
  display: block;
  background: #000;
}
.vs-play-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5,13,26,0.60), rgba(6,20,60,0.50));
  border-radius: 18px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.vs-play-overlay.hidden{
  opacity: 0;
  pointer-events: none;
}
.vs-play-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease;
}
.vs-play-btn:hover{
  transform: scale(1.09);
}
.vs-play-btn svg{
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 6px 32px rgba(10,94,176,0.75));
}
.vs-play-btn span{
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.vs-trust-chips{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.vs-chip{
  display: inline-block;
  background: rgba(10,94,176,0.10);
  border: 1px solid rgba(10,94,176,0.30);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 50px;
}
.vs-order-bar{
  width: 100%;
  background: linear-gradient(135deg, #041510 0%, #063a20 35%, #041530 70%, #063a7a 100%);
  border-top: 2.5px solid rgba(14,158,110,0.55);
  padding: 30px 24px 34px;
  position: relative;
  overflow: hidden;
}
.vs-order-bar::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: vs-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes vs-shimmer{
  0%{ left: -100%; }
  60%{ left: 160%; }
  100%{ left: 160%; }
}
.vs-order-bar-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.vs-order-tagline{
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.vs-order-tagline strong{
  color: var(--green-light);
  font-weight: 900;
}
.vs-order-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0dd474 0%, #09b05e 45%, #077d3f 100%);
  color: #fff;
  font-family: Noto Sans Tamil, Inter, sans-serif;
  font-size: clamp(16px, 2.4vw, 26px);
  font-weight: 900;
  padding: 20px 58px;
  border-radius: 70px;
  border: 2.5px solid rgba(255,255,255,0.22);
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 7px rgba(14,158,110,0.18), 0 12px 44px rgba(14,158,110,0.58), 0 4px 18px rgba(0,0,0,0.45);
  animation: vs-btn-pulse 2.4s ease-in-out infinite;
  transition: transform 0.22s cubic-bezier(.16,1,.3,1), box-shadow 0.22s cubic-bezier(.16,1,.3,1);
}
@keyframes vs-btn-pulse{
  0%,100%{
    box-shadow: 0 0 0 7px rgba(14,158,110,0.18), 0 12px 44px rgba(14,158,110,0.58), 0 4px 18px rgba(0,0,0,0.45);
  }
  50%{
    box-shadow: 0 0 0 16px rgba(14,158,110,0.08), 0 18px 60px rgba(14,158,110,0.72), 0 6px 22px rgba(0,0,0,0.50);
  }
}
.vs-order-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.20) 50%, transparent 100%);
  transition: left 0.55s ease;
  pointer-events: none;
}
.vs-order-btn:hover::after{
  left: 130%;
}
.vs-order-btn:hover{
  transform: translateY(-5px) scale(1.03);
  animation: none;
  box-shadow: 0 0 0 12px rgba(14,158,110,0.12), 0 22px 60px rgba(14,158,110,0.72), 0 8px 24px rgba(0,0,0,0.50);
}
.vs-order-btn:active{
  transform: translateY(-2px) scale(1.01);
}
.vs-btn-icon{
  font-size: 1.3em;
}
.vs-btn-arrow{
  font-size: 1.4em;
  display: inline-block;
  transition: transform 0.22s ease;
}
.vs-order-btn:hover .vs-btn-arrow{
  transform: translateX(5px);
}
.vs-order-note{
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.vs-unmute-btn{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.78);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  animation: vs-unmute-pulse 2s ease-in-out infinite;
}
@keyframes vs-unmute-pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0.12); }
  50%{ box-shadow: 0 0 0 8px rgba(255,255,255,0.04); }
}
.vs-unmute-btn:hover{
  background: rgba(14,158,110,0.85);
  transform: translateX(-50%) scale(1.05);
}
.vs-unmute-btn.hidden{
  display: none;
}
.vs-unmute-icon{
  font-size: 18px;
}

@media (max-width: 1200px){
  .vs-video-container video{
    max-height: 500px;
  }
}
@media (max-width: 900px){
  .video-section-outer{
    padding: 44px 0 0;
  }
  .vs-heading{
    font-size: clamp(20px, 3vw, 28px);
  }
  .vs-sub{
    font-size: 14px;
    margin-bottom: 24px;
  }
  .vs-video-container video{
    max-height: 420px;
  }
  .vs-play-btn svg{
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px){
  .video-section-outer{
    padding: 36px 0 0;
  }
  .video-section-inner{
    padding: 0 16px;
  }
  .vs-player-wrap{
    margin-bottom: 20px;
  }
  .vs-glow-ring{
    inset: -4px;
    filter: blur(2px);
  }
  .vs-video-container{
    aspect-ratio: 9 / 16;
    max-width: 100%;
    border-radius: 18px;
  }
  .vs-video-container video{
    width: 100%;
    height: 100%;
    min-height: 520px;
    /*max-height: 78vh;*/
    /*object-fit: cover;*/
    border-radius: 18px;
  }
  .vs-play-btn svg{
    width: 72px;
    height: 72px;
  }
  .vs-play-btn span{
    font-size: 14px;
  }
  .vs-order-btn{
    padding: 17px 36px;
    font-size: 17px;
  }
  .vs-order-bar{
    padding: 24px 16px 28px;
  }
  .vs-order-tagline{
    font-size: 14px;
  }
  .vs-chip{
    font-size: 11px;
    padding: 4px 12px;
  }
}
@media (max-width: 480px){
  .video-section-outer{
    padding: 28px 0 0;
  }
  .video-section-inner{
    padding: 0 12px;
  }
  .vs-heading{
    font-size: 18px;
  }
  .vs-sub{
    font-size: 13px;
  }
  .vs-glow-ring{
    inset: -3px;
    filter: blur(1px);
    opacity: 0.5;
  }
  .vs-video-container{
    border-radius: 14px;
    aspect-ratio: 9 / 16;
  }
  .vs-video-container video{
    min-height: 560px;
    /*max-height: 72vh;*/
    /*object-fit: cover;*/
    border-radius: 14px;
  }
  .vs-play-btn svg{
    width: 60px;
    height: 60px;
  }
  .vs-play-btn span{
    font-size: 13px;
  }
  .vs-play-btn{
    gap: 8px;
  }
  .vs-unmute-btn{
    font-size: 11px;
    padding: 7px 14px;
    bottom: 10px;
  }
  .vs-unmute-icon{
    font-size: 15px;
  }
  .vs-order-btn{
    padding: 15px 18px;
    font-size: 15px;
    width: 95%;
    justify-content: center;
    border-radius: 50px;
  }
  .vs-order-bar{
    padding: 20px 12px 24px;
  }
  .vs-order-tagline{
    font-size: 13px;
  }
  .vs-chip{
    font-size: 10px;
    padding: 3px 10px;
  }
  .vs-trust-chips{
    gap: 8px;
    margin-bottom: 28px;
  }
}
@media (max-width: 360px){
  .vs-heading{
    font-size: 16px;
  }
  .vs-video-container video{
    min-height: 420px;
    max-height: 68vh;
  }
  .vs-order-btn{
    font-size: 14px;
    padding: 13px 14px;
  }
}

/* ───────────────────────────────────────────
   RESPONSIVE IMAGE BOX — ps.webp / product.png / capsule.jpeg
   3-image showcase block, fully fluid
─────────────────────────────────────────── */
.responsive-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px;
}
.responsive-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.responsive-box img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
/* Desktop: 3 images in a row */
.responsive-box img:nth-child(1) { width: clamp(220px, 28vw, 380px); }
.responsive-box img:nth-child(2) { width: clamp(220px, 28vw, 380px); }
.responsive-box img:nth-child(3) { width: clamp(200px, 24vw, 340px); border-radius: 14px; }

/* Tablet 992px */
@media (max-width: 992px) {
  .responsive-box { gap: 20px; padding: 32px 20px; }
  .responsive-box img:nth-child(1),
  .responsive-box img:nth-child(2) { width: clamp(180px, 30vw, 300px); }
  .responsive-box img:nth-child(3) { width: clamp(160px, 26vw, 260px); }
}
/* Tablet 768px — 2 per row, 3rd full width */
@media (max-width: 768px) {
  .responsive-box { gap: 16px; padding: 28px 16px; }
  .responsive-box img:nth-child(1),
  .responsive-box img:nth-child(2) { width: calc(48% - 8px); max-width: 260px; }
  .responsive-box img:nth-child(3) { width: 80%; max-width: 300px; }
}
/* Mobile 576px — stacked column */
@media (max-width: 576px) {
  .responsive-box {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 16px;
  }
  .responsive-box img:nth-child(1),
  .responsive-box img:nth-child(2),
  .responsive-box img:nth-child(3) {
    width: 85% !important;
    max-width: 300px;
  }
}
/* Small mobile 360px */
@media (max-width: 360px) {
  .responsive-box img:nth-child(1),
  .responsive-box img:nth-child(2),
  .responsive-box img:nth-child(3) {
    width: 92% !important;
    max-width: 260px;
  }
  .responsive-box { padding: 18px 12px; gap: 12px; }
}


/* Override white-outer padding when used as responsive-box */
.white-outer.responsive-box {
  background: #fff;
  padding: 0;
}


/* ───────────────────────────────────────────
   COMPREHENSIVE RESPONSIVE FIX LAYER
   Mobile-first fixes — no design changes, only responsive
─────────────────────────────────────────── */

/* ── GLOBAL overflow guard ── */
* { max-width: 100%; }
img { max-width: 100%; height: auto; }

/* ── SPACER TOP (marquee height) ── */
@media (max-width: 480px) {
  .spacer-top { height: 32px; }
  .navbar-outer { top: 32px; }
}

/* ── NAVBAR HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, var(--black), #061426);
  border-top: 1px solid rgba(10,94,176,0.3);
  padding: 16px 24px;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .mobile-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  margin-top: 4px;
  border-bottom: none;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-right .navbar-phone { display: none; }
  .navbar-right .navbar-cta { display: none; }
}
@media (max-width: 380px) {
  .logo-text .brand { font-size: 13px; }
  .logo-icon { width: 36px; height: 36px; }
}

/* ── HERO SECTION ── */
@media (max-width: 768px) {
  .hero-section { padding: 32px 16px 28px; }
  .hero-inner { gap: 20px; }
  .hero-left p { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .hero-stat .num { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero-section { padding: 24px 14px 20px; }
  .hero-stats { gap: 10px; }
  .hero-stat .num { font-size: 20px; }
  .hero-stat .lbl { font-size: 10px; }
}

/* ── DESIRES SECTION ── */
@media (max-width: 768px) {
  .desires-outer { padding: 32px 16px; }
  .desires-col-wide { grid-template-columns: 1fr 1fr; gap: 12px; }
  .desire-item img { width: 120px; height: 120px; }
  .desire-item p { font-size: 12px; }
}
@media (max-width: 480px) {
  .desires-heading { padding: 10px 14px; font-size: 16px; }
  .desires-col-wide { grid-template-columns: 1fr 1fr; gap: 8px; }
  .desire-item { padding: 10px 8px; }
  .desire-item img { width: 80px; height: 80px; }
  .desire-item p { font-size: 11px; }
}
@media (max-width: 360px) {
  .desires-col-wide { grid-template-columns: 1fr; }
  .desire-item img { width: 90px; height: 90px; }
}

/* ── WHITE OUTER (3 images) ── */
@media (max-width: 480px) {
  .white-outer { padding: 32px 16px; }
  .white-inner { gap: 20px; }
}

/* ── ALERT BOX ── */
@media (max-width: 480px) {
  .alert-outer { padding: 14px 16px; }
  .alert-inner { font-size: 13px; }
}

/* ── SURVEY / REASONS SECTION ── */
@media (max-width: 480px) {
  .survey-outer { padding: 36px 16px; }
  .reason-card { padding: 16px 10px; }
  .reason-card img { width: 70px; }
  .reason-card p { font-size: 12px; }
}

/* ── TRUST BADGES ── */
@media (max-width: 480px) {
  .trust-inner { gap: 10px; }
  .trust-item { min-width: 72px; }
  .trust-item .icon-circle { width: 44px; height: 44px; font-size: 18px; }
  .trust-item span { font-size: 10px; }
}

/* ── BENEFITS SECTION ── */
@media (max-width: 860px) {
  .benefits-outer { padding: 36px 16px; }
  .benefits-grid-4 { gap: 10px; }
}
@media (max-width: 600px) {
  .benefit-item img { width: 100%; height: 160px; }
}
@media (max-width: 480px) {
  .benefit-item img { height: 130px; }
  .benefit-item .label { font-size: 11px; padding: 8px 6px; }
}

/* ── INGREDIENTS ── */
@media (max-width: 700px) {
  .ingredients-outer { padding: 36px 16px; }
  .ingredient-card { flex-direction: column; align-items: center; text-align: center; padding: 16px 14px; }
  .ingredient-card img { width: 72px; height: 72px; }
  .ingredient-card .info h2 { font-size: 17px; }
  .ingredient-card .info p { font-size: 13px; }
}

/* ── PROBLEMS SECTION ── */
@media (max-width: 860px) {
  .problems-outer { padding: 36px 16px; }
}
@media (max-width: 480px) {
  .problem-row .icon img { width: 36px; height: 36px; }
  .problem-row .text { font-size: 13px; padding: 10px 12px; }
}

/* ── GIF CARDS ── */
@media (max-width: 480px) {
  .gif-outer { padding: 36px 16px; }
  .gif-card p { font-size: 13px; padding: 10px 12px; }
}

/* ── PRODUCT SHOWCASE ── */
@media (max-width: 860px) {
  .product-outer { padding: 36px 16px 0; }
  .product-right { flex-wrap: wrap; }
  .product-right img { width: 50%; flex: none; }
}
@media (max-width: 480px) {
  .product-left h1 { font-size: 18px; }
  .product-right img { width: 50%; }
}

/* ── STATS BAR ── */
@media (max-width: 480px) {
  .stats-outer { padding: 24px 16px; }
  .stat-block .big-num { font-size: 26px; }
  .stat-block .stat-lbl { font-size: 11px; }
}

/* ── HOW IT WORKS ── */
@media (max-width: 480px) {
  .hiw-outer { padding: 36px 16px; }
  .hiw-step .step-circle { width: 56px; height: 56px; font-size: 22px; }
  .hiw-step h3 { font-size: 14px; }
  .hiw-step p { font-size: 12px; }
}

/* ── TESTIMONIALS ── */
@media (max-width: 480px) {
  .testimonials-outer { padding: 36px 16px; }
  .testimonial-card { padding: 18px 14px; }
  .tc-text { font-size: 13px; }
}

/* ── 8-CARD TESTIMONIALS ── */
@media (max-width: 480px) {
  .testimonials-grid-8 { grid-template-columns: 1fr; }
}

/* ── HERBS SECTION ── */
@media (max-width: 480px) {
  .herbs-outer { padding: 36px 14px; }
  .herb-card .herb-icon { font-size: 40px; }
  .herb-card .herb-name { font-size: 13px; }
}

/* ── CERT SECTION ── */
@media (max-width: 480px) {
  .cert-outer { padding: 36px 14px; }
  .cert-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cert-card { padding: 18px 12px 16px; }
  .cert-icon-wrap { width: 54px; height: 54px; font-size: 22px; }
  .cert-card h3 { font-size: 12px; }
  .cert-card p { font-size: 11px; }
  .cert-images-row img { height: 90px; padding: 6px 8px; }
  .cert-strip { padding: 14px 10px; gap: 14px; }
  .cert-strip-item .si-txt strong { font-size: 12px; }
}

/* ── ORDER FORM ── */
@media (max-width: 480px) {
  .form-outer { padding: 36px 16px; }
  .form-left h2 { font-size: 20px; }
  .price-new { font-size: 28px; }
  .submit-btn { font-size: 17px; padding: 15px; }
  .form-badges { gap: 6px; }
  .badge { font-size: 11px; padding: 5px 10px; }
}
@media (max-width: 360px) {
  .clock-unit .num { font-size: 20px; padding: 6px 0; }
  .clock-unit { max-width: 60px; }
}

/* ── FIXED BOTTOM BAR ── */
@media (max-width: 380px) {
  .fixed-bar-inner { padding: 8px 12px; gap: 8px; }
  .fixed-bar-timer { font-size: 16px; }
  .fixed-bar-btn { font-size: 12px; padding: 8px 12px; }
  .fixed-bar-label { font-size: 10px; }
}

/* ── VIDEO UNMUTE BTN ── */
@media (max-width: 480px) {
  .vs-unmute-btn { font-size: 11px; padding: 7px 14px; }
}

/* ── FOOTER ── */
@media (max-width: 480px) {
  .footer-outer { padding: 24px 16px; }
  .footer-bottom { font-size: 11px; }
}

/* ── DELIVERY SECTION ── */
@media (max-width: 480px) {
  .delivery-outer { padding: 16px; }
}
