/* ================================================================
   VanshIVF — Lucknow IVF Landing Page
   style.css v4.1
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --blue-dark:  #003F7D;
  --blue:       #005BA8;
  --orange:     #EC7217;
  --orange-dk:  #c45a0a;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --text:       #1f2937;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
}

/* ── Typography helpers ────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-white  { color: #fff; }
.text-center { text-align: center; }
.accent      { color: var(--orange); }

/* ── Section helpers ───────────────────────────────────────────── */
.section        { padding: 4rem 0; }
.section-gray   { background: var(--gray-50); }
.section-light  { background: #fafafa; }
.section-blue   { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .3rem .9rem;
  margin-bottom: .75rem;
}
.label-blue        { background: #eff6ff; color: var(--blue); }
.label-orange      { background: #fff7ed; color: var(--orange-dk); }
.label-orange-dark { background: rgba(255,255,255,.15); color: #fed7aa; }
.label-pink        { background: #fdf2f8; color: #9d174d; }
.label-green       { background: #f0fdf4; color: #166534; }

.section-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-title.text-white { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.section-sub-left {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

/* ── Reveal animation ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.nav-logo { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .875rem;
  font-weight: 600;
}
.nav-links a { color: var(--gray-700); transition: color .2s; }
.nav-links a:hover { color: var(--orange); }

.nav-phone {
  display: flex !important;
  align-items: center;
  gap: .35rem;
  color: var(--blue-dark) !important;
}

.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: .45rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--orange-dk); }

#navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .35rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
#mobile-nav {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  z-index: 800;
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transform: translateY(-110%);
  transition: transform .3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
#mobile-nav.open { transform: translateY(0); }
#mobile-nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  padding: .25rem 0;
}
#mobile-nav a:hover { color: var(--orange); }
.btn-full {
  background: var(--orange);
  color: #fff !important;
  padding: .75rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  margin-top: .25rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 2.5rem;
  align-items: start;
}

/* LEFT column */
.hero-content { padding-top: .5rem; }

.emi-pill {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  letter-spacing: .02em;
  box-shadow: 0 2px 12px rgba(236,114,23,.4);
}

.hero-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .85rem;
}
.hero-title .accent { color: #fed7aa; }
.hero-emi-note {
  font-size: .8125rem;
  color: rgba(255,255,255,.82);
  margin: -.15rem 0 .55rem;
}

.hero-support {
  font-size: 1.0625rem;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}
.hero-support-hindi {
  font-weight: 700;
  color: #e0f2fe;
  margin-bottom: .55rem;
}
.hero-support-english {
  color: #dbeafe;
  margin-bottom: .45rem;
}
.hero-cost-note {
  font-size: .8125rem;
  color: rgba(224,242,254,.82);
  margin: 0 0 1rem;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #e0f2fe;
  font-size: .9375rem;
  font-weight: 600;
}
.hb-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: #86efac;
  flex-shrink: 0;
}

/* Hero doctor authority card */
.hero-doc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hdc-img img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.45);
  flex-shrink: 0;
}
.hdc-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: .2rem;
}
.hdc-qual { font-size: .8125rem; color: #bfdbfe; margin-bottom: .35rem; }
.hdc-trust {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8125rem;
  color: #86efac;
  font-weight: 600;
}

/* Hero primary CTA */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: .9rem 1.875rem;
  border-radius: 12px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(236,114,23,.45);
}
.btn-hero-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}

/* RIGHT column — form card */
.hero-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: box-shadow .2s;
}
.hero-form-trust-panel {
  margin-top: 1rem;
  display: grid;
  gap: .55rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #e0f2fe;
  font-size: .8125rem;
  font-weight: 700;
}

/* Pop animation — triggered by JS when hero CTA is clicked */
@keyframes formPop {
  0%   { transform: scale(1);    box-shadow: var(--shadow-lg); }
  25%  { transform: scale(1.025); box-shadow: 0 0 0 6px rgba(236,114,23,.35), var(--shadow-lg); }
  50%  { transform: scale(.995); box-shadow: 0 0 0 10px rgba(236,114,23,.18), var(--shadow-lg); }
  75%  { transform: scale(1.01);  box-shadow: 0 0 0 5px rgba(236,114,23,.25), var(--shadow-lg); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0px rgba(236,114,23,0),   var(--shadow-lg); }
}
.hero-form-card.popped {
  animation: formPop .55s cubic-bezier(.36,.07,.19,.97) forwards;
}

/* Arrow indicator — pointing from left CTA to form */
.hero-form-col {
  position: relative;
}
.hfc-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 1.25rem 1.5rem;
}
.hfc-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.1875rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .25rem;
}
.hfc-sub { font-size: .875rem; color: #bfdbfe; }
.hfc-body { padding: 1.25rem 1.5rem; }

.hero-form-success {
  text-align: center;
  padding: 2rem 0;
}
.hs-icon { font-size: 3rem; margin-bottom: .75rem; }
.hero-form-success h3 {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.hero-form-success p { color: var(--gray-600); font-size: .9375rem; }
.hero-success-next {
  margin-top: 1rem;
  text-align: left;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: .9rem 1rem;
}
.hero-success-next strong {
  display: block;
  color: var(--blue-dark);
  font-size: .9375rem;
  margin-bottom: .55rem;
}
.hero-success-steps {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gray-700);
  font-size: .875rem;
  line-height: 1.65;
}

/* ================================================================
   FORM ELEMENTS
   ================================================================ */
.form-group { margin-bottom: .875rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .35rem;
}
.req { color: #ef4444; }

.form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-size: .9375rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,91,168,.12);
}
.form-input.error {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
}

.field-error { display: none; margin-top: .3rem; }
.field-error.show { display: block; }
.field-error span { font-size: .8125rem; color: #b45309; font-weight: 600; }
.form-quick-note {
  text-align: center;
  font-size: .95rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: .15rem 0 .2rem;
}
.form-quick-sub {
  text-align: center;
  font-size: .8125rem;
  color: var(--gray-600);
  margin-bottom: .75rem;
  line-height: 1.55;
}
.form-callback-note {
  text-align: center;
  font-size: .78rem;
  color: #64748b;
  margin-top: .55rem;
}
.form-step-note {
  text-align: center;
  margin-top: .65rem;
  font-size: .74rem;
  color: #64748b;
  line-height: 1.5;
}
.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem .9rem;
  margin-top: .7rem;
  font-size: .75rem;
  color: var(--gray-600);
  font-weight: 700;
}

/* ── Submit buttons ─────────────────────────────────────────────── */
.btn-submit-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: .9rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: .25rem;
  box-shadow: 0 4px 14px rgba(236,114,23,.35);
  line-height: 1.4;
}
.btn-submit-hero:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}
.btn-submit-hero:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-submit:hover { background: var(--orange-dk); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; }

.btn-dismiss {
  width: 100%;
  background: transparent;
  color: var(--gray-600);
  font-size: .875rem;
  font-weight: 600;
  padding: .6rem;
  border: none;
  cursor: pointer;
  margin-top: .4rem;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
}

/* ================================================================
   FEATURED MEDIA STRIP
   ================================================================ */
.featured-media-strip {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.25rem 0;
}
.featured-media-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.featured-media-head {
  max-width: 860px;
}
.featured-media-kicker {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: .45rem;
}
.featured-media-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: .5rem;
}
.featured-media-hindi {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.featured-media-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  margin-top: .25rem;
}
.featured-media-item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: #fff;
}
.featured-media-item img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: opacity .2s ease;
}
.featured-media-item:hover img,
.featured-media-item:focus-within img {
  opacity: .96;
}
.featured-media-copy {
  max-width: 920px;
  color: var(--gray-600);
}
.featured-media-copy p {
  font-size: .875rem;
  line-height: 1.7;
}
.featured-media-copy p + p {
  margin-top: .25rem;
}
.featured-media-cta {
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.featured-media-cta:hover {
  color: var(--blue);
}

/* ================================================================
   PROOF STRIP (section 2)
   ================================================================ */
#proof-strip {
  background: var(--blue-dark);
  padding: 2rem 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-item {
  text-align: center;
  padding: 1.25rem .5rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.proof-label { font-size: .8125rem; color: #93c5fd; font-weight: 600; }

/* ================================================================
   WHY CHOOSE (section 3)
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.why-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* ================================================================
   HOW IT WORKS (section 4)
   ================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--orange));
  z-index: 0;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .875rem;
  box-shadow: 0 2px 10px rgba(0,63,125,.3);
}
.step-emoji { font-size: 2rem; margin-bottom: .75rem; }
.step-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.step-card p { font-size: .8125rem; color: var(--gray-600); line-height: 1.65; }

/* ================================================================
   DOCTOR SECTION (section 5)
   ================================================================ */
.doctor-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
}
.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 420px;
  display: block;
}
.doctor-info {
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.doctor-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #bfdbfe;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: .875rem;
  align-self: flex-start;
}
.doctor-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .2rem;
}
.doctor-qual { font-size: .9375rem; color: #93c5fd; font-weight: 600; margin-bottom: .2rem; }
.doctor-qual2 { font-size: .875rem; color: #bfdbfe; margin-bottom: .85rem; }
.doctor-trust-meta {
  display: grid;
  gap: .45rem;
  margin-bottom: .85rem;
}
.doctor-trust-meta span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: #dbeafe;
}
.doctor-trust-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fdba74;
  flex-shrink: 0;
}
.doctor-reg-line {
  font-size: .8125rem;
  color: #cbd5e1;
  margin: 0 0 1.1rem;
}
.doctor-stats { display: flex; gap: 1.75rem; margin-bottom: 1.25rem; }
.d-stat { text-align: center; }
.d-stat-num {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.d-stat-label { font-size: .75rem; color: #93c5fd; margin-top: .25rem; font-weight: 600; }
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .45rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.doctor-reviews-link {
  color: #bfdbfe;
}
.doctor-bio {
  font-size: .9375rem;
  color: #e0f2fe;
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}
.doctor-trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.dti {
  font-size: .875rem;
  color: #86efac;
  font-weight: 600;
}
.doctor-ctas { display: flex; gap: .875rem; flex-wrap: wrap; }
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  padding: .7rem 1.5rem;
  border-radius: 10px;
  transition: background .2s;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
}
.btn-primary-sm:hover { background: var(--orange-dk); }
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  padding: .7rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
}
.btn-outline-sm:hover { background: rgba(255,255,255,.2); }

/* ================================================================
   MEDIA FEATURE SECTION (section 5A)
   ================================================================ */
.media-feature-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 168, .08), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}
.media-feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 2.5rem;
  align-items: start;
}
.media-feature-copy { padding-top: .4rem; }
.media-feature-trust-list {
  display: grid;
  gap: .875rem;
  margin: 1.5rem 0 1rem;
}
.media-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0, 91, 168, .1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 63, 125, .06);
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
}
.media-trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(236, 114, 23, .14);
  color: var(--orange-dk);
  font-size: .85rem;
  font-weight: 800;
}
.media-feature-note {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.media-feature-ctas {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
}
.media-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .75rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 63, 125, .14);
  background: rgba(255,255,255,.92);
  color: var(--blue-dark);
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
}
.media-call-btn:hover {
  background: #fff;
  border-color: rgba(0, 63, 125, .25);
  color: var(--blue);
}
.media-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.media-video-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0, 91, 168, .1);
  border-radius: 18px;
  padding: .8rem;
  box-shadow: 0 18px 40px rgba(0, 63, 125, .08);
}
.media-video-trigger {
  display: block;
  width: 100%;
  text-align: left;
}
.media-video-frame,
.media-video-noscript {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #d9e8f7, #f0f6fc);
}
.media-video-frame img,
.media-video-noscript iframe,
.media-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}
.media-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18));
  transition: opacity .2s;
}
.media-video-trigger:hover .media-video-frame::after,
.media-video-trigger:focus-visible .media-video-frame::after {
  opacity: .8;
}
.media-video-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.media-video-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-top: .8rem;
}
.media-video-hint {
  font-size: .75rem;
  color: var(--gray-600);
  margin-top: .3rem;
}
.media-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 63, 125, .88);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 63, 125, .28);
}
.media-video-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-top: .75rem;
}
.media-video-trigger:focus-visible {
  outline: 3px solid rgba(236, 114, 23, .32);
  outline-offset: 4px;
  border-radius: 18px;
}

/* ================================================================
   EMI SECTION (section 6)
   ================================================================ */
.emi-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.emi-features { display: flex; flex-direction: column; gap: 1.25rem; }
.emi-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-100);
}
.ef-icon { font-size: 1.625rem; flex-shrink: 0; margin-top: .1rem; }
.ef-text strong { display: block; font-size: .9375rem; color: var(--text); margin-bottom: .3rem; font-family: 'Montserrat', system-ui, sans-serif; font-weight: 800; }
.ef-text p { font-size: .875rem; color: var(--gray-600); line-height: 1.55; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-dark);
  color: #fff;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--blue); }

.emi-badge-card {
  background: linear-gradient(160deg, var(--blue-dark), var(--blue));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 80px;
}
.ebc-top {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ebc-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #93c5fd; margin-bottom: .5rem; }
.ebc-emi-text { font-size: 1rem; color: #bfdbfe; margin-bottom: .3rem; }
.ebc-amount {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ebc-amount span { font-size: 1rem; color: #93c5fd; font-weight: 600; }
.ebc-features { padding: 1.25rem 2rem; display: flex; flex-direction: column; gap: .625rem; }
.ebc-feat { font-size: .9375rem; color: #e0f2fe; font-weight: 600; }
.ebc-note { text-align: center; font-size: .75rem; color: rgba(255,255,255,.4); padding: 0 2rem 1.5rem; }

/* ================================================================
   TESTIMONIALS (section 7)
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.tc-top { display: flex; align-items: flex-start; gap: .875rem; }
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: .9375rem; color: var(--text); }
.tc-loc { font-size: .8125rem; color: var(--gray-600); }
.tc-stars { color: #f59e0b; font-size: 1.0625rem; margin-left: auto; white-space: nowrap; }
.tc-condition-badge {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.tc-text {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.tc-verified { font-size: .8125rem; color: #059669; font-weight: 600; }

.rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.rs-stars { color: #f59e0b; font-size: 1.25rem; }
.rs-text { font-size: .9375rem; color: var(--gray-700); }
.testimonial-disclaimer {
  margin-top: 1rem;
  text-align: center;
  font-size: .8125rem;
  color: var(--gray-500);
}

/* ================================================================
   CLINIC TRUST VISUALS (section 8)
   ================================================================ */
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}
.clinic-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
  min-height: 220px;
}
.clinic-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.clinic-img-fallback {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #e8f0f8, #f8fbff);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: .9375rem;
  text-align: center;
}
.clinic-caption {
  background: var(--blue-dark);
  color: #bfdbfe;
  font-size: .8125rem;
  font-weight: 600;
  padding: .625rem 1rem;
  text-align: center;
}
.clinic-trust-list { display: flex; flex-direction: column; gap: 1.1rem; }
.cti {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.cti-icon { font-size: 1.5rem; flex-shrink: 0; }
.cti strong { display: block; font-size: .9375rem; color: var(--text); margin-bottom: .2rem; font-family: 'Montserrat', system-ui, sans-serif; font-weight: 800; }
.cti p { font-size: .8125rem; color: var(--gray-600); line-height: 1.55; }

.edu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.edu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.edu-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .55rem;
}
.edu-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.emi-inline-note {
  font-size: .75rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: .45rem;
}

/* ================================================================
   FAQ (section 9)
   ================================================================ */
.faq-list {
  list-style: none;
  max-width: 760px;
  margin: 2rem auto 0;
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-btn:hover { color: var(--blue); }
.faq-chevron { flex-shrink: 0; color: var(--gray-600); transition: transform .25s; }
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-btn[aria-expanded="true"] { color: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer p {
  padding-bottom: 1.1rem;
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.faq-inline-cta {
  display: inline-flex;
  align-items: center;
  padding-bottom: 1rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue);
}
.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}
.faq-cta p { font-size: 1rem; color: var(--gray-700); margin-bottom: 1rem; font-weight: 600; }
.faq-cta-btns { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }
.btn-blue-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  padding: .7rem 1.5rem;
  border-radius: 10px;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  transition: background .2s;
}
.btn-blue-sm:hover { background: var(--blue); }
.btn-green-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  padding: .7rem 1.5rem;
  border-radius: 10px;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  transition: background .2s;
}
.btn-green-sm:hover { background: #15803d; }

/* ================================================================
   FINAL CTA (section 10)
   ================================================================ */
.section-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--orange-dk) 100%);
  padding: 4.5rem 0;
}
.final-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.cta-title .accent { color: #fed7aa; }
.cta-sub { font-size: 1rem; color: #bfdbfe; margin-bottom: 1.25rem; }
.cta-trust-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .875rem;
  color: #86efac;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: .9rem 2rem;
  border-radius: 12px;
  transition: background .2s;
  box-shadow: 0 4px 16px rgba(236,114,23,.4);
}
.btn-cta-primary:hover { background: var(--orange-dk); }
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: .9rem 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s;
}
.btn-cta-call:hover { background: rgba(255,255,255,.2); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #0f172a;
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: .875rem; color: #94a3b8; line-height: 1.7; margin-bottom: .75rem; }
.footer-highlight { font-size: .9375rem; color: #f97316; font-weight: 700; }
.footer-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .9375rem;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .875rem; color: #94a3b8; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: .625rem; }
.footer-ci { font-size: .875rem; color: #94a3b8; line-height: 1.5; }
.footer-ci a { color: #93c5fd; }
.footer-ci a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
}
.footer-reassurance {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #1e293b;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(15, 23, 42, .55);
}
.footer-reassurance h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .2rem;
}
.footer-reassurance p {
  color: #94a3b8;
  font-size: .875rem;
}
.footer-reassurance-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .8125rem; color: #64748b; margin-bottom: .35rem; }
.footer-privacy-line { font-size: .8125rem; color: #94a3b8; margin-bottom: .35rem; line-height: 1.6; }
.footer-disclaimer { font-size: .75rem; color: #475569; line-height: 1.6; }

/* ================================================================
   SOFT CONSULTATION NUDGE
   ================================================================ */
.consult-nudge {
  position: fixed;
  right: 1.25rem;
  bottom: 6.5rem;
  width: min(360px, calc(100vw - 2rem));
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.consult-nudge.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.consult-nudge-inner {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 91, 168, .12);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .14);
  padding: 1.3rem 1.15rem 1.1rem;
}
.consult-nudge-kicker {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .4rem;
}
.consult-nudge-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: .45rem;
}
.consult-nudge-sub {
  font-size: .925rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: .45rem;
}
.consult-nudge-hindi {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: .8rem;
}
.consult-nudge-points {
  display: grid;
  gap: .38rem;
  margin-bottom: .9rem;
}
.consult-nudge-points span {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.consult-nudge-actions {
  display: flex;
  gap: .75rem;
}
.consult-nudge-primary,
.consult-nudge-secondary,
.consult-nudge-close {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.consult-nudge-primary,
.consult-nudge-secondary {
  flex: 1;
  min-height: 44px;
  border-radius: 12px;
  font-size: .875rem;
  font-weight: 800;
}
.consult-nudge-primary {
  background: var(--orange);
  color: #fff;
}
.consult-nudge-primary:hover { background: var(--orange-dk); }
.consult-nudge-secondary {
  background: #f8fafc;
  color: var(--gray-700);
  border: 1px solid #dbeafe;
}
.consult-nudge-secondary:hover { background: #eff6ff; }
.consult-nudge-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  background: rgba(248, 250, 252, .94);
  border-radius: 999px;
  z-index: 1;
}
.consult-nudge-close:hover { color: var(--gray-700); background: #eef2f7; }
.hero-form-card.nudge-highlight {
  animation: formNudgePulse 2.4s ease forwards;
}
@keyframes formNudgePulse {
  0%   { box-shadow: var(--shadow-lg); }
  18%  { box-shadow: 0 0 0 5px rgba(236,114,23,.28), var(--shadow-lg); }
  48%  { box-shadow: 0 0 0 10px rgba(236,114,23,.14), var(--shadow-lg); }
  78%  { box-shadow: 0 0 0 4px rgba(236,114,23,.12), var(--shadow-lg); }
  100% { box-shadow: var(--shadow-lg); }
}

/* ================================================================
   STICKY BOTTOM BAR
   ================================================================ */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  border-top: 1px solid var(--gray-200);
  padding-bottom: env(safe-area-inset-bottom);
}
.sbb-call,
.sbb-form {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem .5rem;
  font-weight: 700;
  font-size: .9375rem;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  transition: opacity .15s;
}
.sbb-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sbb-copy small {
  font-size: .68rem;
  font-weight: 600;
  opacity: .88;
}
.sbb-call { background: var(--blue-dark); color: #fff; }
.sbb-call:hover { opacity: .9; }
.sbb-form { background: var(--orange); color: #fff; }
.sbb-form:hover { opacity: .9; }

/* ================================================================
   PASSIVE DECISION REMINDER
   ================================================================ */
.decision-reminder {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(4.8rem + env(safe-area-inset-bottom));
  z-index: 840;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .14);
  padding: 1rem 1rem .95rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.decision-reminder.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.decision-reminder-kicker {
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.decision-reminder-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.35;
  padding-right: 2rem;
}
.decision-reminder-actions {
  display: flex;
  gap: .75rem;
  margin-top: .85rem;
}
.decision-reminder-call,
.decision-reminder-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  font-size: .875rem;
  font-weight: 800;
}
.decision-reminder-call {
  background: #eff6ff;
  color: var(--blue-dark);
}
.decision-reminder-wa {
  background: var(--orange);
  color: #fff;
}
.decision-reminder-close {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.active { display: flex; }

.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.popup-close:hover { background: var(--gray-200); }

.exit-popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 1.75rem 1.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.exit-emoji { font-size: 2.5rem; text-align: center; margin-bottom: .75rem; }
.exit-popup-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: .35rem;
}
.exit-popup-sub {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  margin-bottom: .35rem;
}
.exit-popup-text {
  font-size: .875rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* ================================================================
   RESPONSIVE — Tablet ≤ 900px
   ================================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-form-col { order: -1; }

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

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .proof-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }

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

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

  .doctor-card { grid-template-columns: 1fr; }
  .doctor-img-wrap img { min-height: 280px; height: 280px; }
  .doctor-info { padding: 1.5rem; }
  .doctor-name { font-size: 1.5rem; }

  .media-feature-shell { grid-template-columns: 1fr; }
  .media-video-grid { grid-template-columns: 1fr 1fr; }

  .emi-inner { grid-template-columns: 1fr; }
  .emi-badge-card { position: static; }

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .edu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-reassurance { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   RESPONSIVE — Mobile ≤ 600px
   ================================================================ */
@media (max-width: 600px) {
  .section { padding: 2.75rem 0; }

  .hero-title { font-size: 1.875rem; }
  .hero-support { font-size: .9375rem; }

  .featured-media-strip { padding: 2rem 0; }
  .featured-media-item { min-height: 82px; padding: .9rem; }
  .featured-media-item img { max-height: 36px; }

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

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

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step-card { padding: 1.25rem .875rem; }

  .doctor-trust-items { grid-template-columns: 1fr; }
  .doctor-stats { gap: 1rem; }
  .d-stat-num { font-size: 1.25rem; }
  .doctor-ctas { flex-direction: column; }
  .btn-primary-sm, .btn-outline-sm { justify-content: center; }

  .media-feature-trust-list { margin-top: 1.25rem; }
  .media-feature-ctas { flex-direction: column; }
  .media-video-grid { grid-template-columns: 1fr; }
  .media-video-card { padding: .7rem; }
  .media-call-btn, .media-feature-ctas .btn-primary { width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .rating-strip { flex-wrap: wrap; }
  .google-reviews-link { width: 100%; }

  .cta-trust-row { flex-direction: column; gap: .5rem; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-call { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .hero-form-trust-panel { display: none; }
  .footer-reassurance-actions { width: 100%; }
  .footer-reassurance-actions .btn-outline-sm,
  .footer-reassurance-actions .btn-primary-sm { flex: 1; justify-content: center; }

  .faq-cta-btns { flex-direction: column; align-items: center; }

  .consult-nudge {
    left: .75rem;
    right: .75rem;
    width: auto;
    bottom: calc(env(safe-area-inset-bottom) + 4.6rem);
    transform: translateY(22px);
  }
  .consult-nudge-inner {
    border-radius: 18px;
    padding: 1rem 1rem .95rem;
  }
  .consult-nudge-title { font-size: 1.125rem; padding-right: 2rem; }
  .consult-nudge-actions { flex-direction: column; }
  .form-trust-row { flex-direction: column; gap: .35rem; align-items: center; }
  .decision-reminder-actions { flex-direction: column; }

  /* Show sticky bar + add padding */
  .sticky-bottom-bar { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

  /* WA button sits above sticky bar on mobile */
  .float-wa-btn { bottom: 70px; right: 1rem; }
  .float-wa-bubble { display: none; }
  body.consult-nudge-open .float-wa-btn { transform: translateY(-132px); }
  body.decision-reminder-open .float-wa-btn { transform: translateY(-124px); }
}
@media (min-width: 768px) {
  .decision-reminder {
    left: auto;
    width: 340px;
    bottom: 1.25rem;
  }
}

.form-urgency-strip {
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: .55rem .875rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: .75rem;
}
.form-disclosure {
  text-align: center;
  font-size: .75rem;
  color: #94a3b8;
  margin-top: .7rem;
  line-height: 1.55;
}

/* ================================================================
   FORM PRIORITY PRE-FRAMING NOTE (#8)
   ================================================================ */
/* ================================================================
   WHY COUPLES DELAY IVF SECTION (#5)
   ================================================================ */
.delay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.delay-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--blue);
  transition: transform .2s, box-shadow .2s;
}
.delay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.delay-icon { font-size: 2rem; margin-bottom: .875rem; }
.delay-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.delay-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
.delay-closing {
  text-align: center;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
}
.delay-closing-msg {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* ================================================================
   FLOATING WHATSAPP BUTTON (#2)
   ================================================================ */
.float-wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}
.float-wa-bubble {
  background: #fff;
  color: #1f2937;
  font-size: .8125rem;
  font-weight: 700;
  padding: .5rem .875rem;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.float-wa-btn:hover .float-wa-bubble,
.float-wa-btn:focus .float-wa-bubble {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.float-wa-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  animation: waPulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.7), 0 0 0 6px rgba(37,211,102,.12); }
}

/* ================================================================
   EXIT POPUP — trust line improvement (#7)
   ================================================================ */
.exit-popup-title { font-size: 1.375rem; line-height: 1.25; }
.exit-trust-line {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: .5rem .875rem;
  font-size: .8125rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 1.25rem;
}

/* ================================================================
   RESPONSIVE — WHY DELAY + SOCIAL PROOF (≤ 900px)
   ================================================================ */
@media (max-width: 900px) {
  .delay-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .delay-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .delay-card { padding: 1.1rem 1rem; }
  .float-wa-btn { bottom: 70px; right: 1rem; }
  .float-wa-bubble { display: none !important; }
  /* sp-wrap override must live here — AFTER the main .sp-wrap definition */
}

/* ================================================================
   CAMP PAGE — ADDITIONAL STYLES (FREE INFERTILITY CAMP 2026)
   ================================================================ */

/* ── Camp badge / pill variants ─────────────────────────────────── */
.camp-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #16a34a;
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: .75rem;
  letter-spacing: .02em;
  box-shadow: 0 2px 12px rgba(22,163,74,.4);
  animation: campPulse 2.2s ease-in-out infinite;
}
@keyframes campPulse {
  0%,100% { box-shadow: 0 2px 12px rgba(22,163,74,.4); }
  50%      { box-shadow: 0 2px 20px rgba(22,163,74,.65), 0 0 0 6px rgba(22,163,74,.12); }
}

/* ── Camp date strip in hero ────────────────────────────────────── */
.camp-date-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-bottom: 1.25rem;
  padding: .875rem 1.1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.camp-date-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #e0f2fe;
  font-size: .9rem;
  font-weight: 600;
}
.camp-date-item strong { color: #fff; }

/* ── Countdown timer ────────────────────────────────────────────── */
.countdown-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.countdown-label-pre {
  font-size: .8125rem;
  font-weight: 700;
  color: #fed7aa;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.countdown-blocks {
  display: flex;
  gap: .5rem;
}
.countdown-block {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: .55rem .875rem;
  text-align: center;
  min-width: 58px;
  backdrop-filter: blur(4px);
}
.countdown-num {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.625rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.countdown-unit {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: block;
  margin-top: .25rem;
}
.countdown-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.45);
  align-self: center;
  margin-bottom: .5rem;
}
#camp-countdown-live {
  display: none;
  color: #86efac;
  font-weight: 700;
  font-size: .9375rem;
  background: rgba(134,239,172,.12);
  border: 1px solid rgba(134,239,172,.3);
  border-radius: 8px;
  padding: .45rem .875rem;
}

/* ── Why Attend benefits ────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--orange);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  font-size: 2.25rem;
  margin-bottom: .875rem;
}
.benefit-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.benefit-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* ── Camp details section ───────────────────────────────────────── */
.camp-details-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.camp-info-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin: 1.25rem 0 1.5rem;
}
.camp-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .875rem 1.1rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.camp-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.camp-info-row strong {
  display: block;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: .9375rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .2rem;
}
.camp-info-row p { font-size: .875rem; color: var(--gray-600); line-height: 1.5; margin: 0; }
.camp-info-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.camp-highlight-card {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 80px;
}
.chc-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .2rem;
}
.chc-hindi { font-size: 1rem; color: #bfdbfe; margin-bottom: 1.5rem; }
.chc-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  font-weight: 600;
  color: #e0f2fe;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.chc-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.chc-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(134,239,172,.2);
  color: #86efac;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  flex-shrink: 0;
}
.chc-ctas { display: flex; gap: .75rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* ── Who Should Attend ──────────────────────────────────────────── */
.attend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.attend-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--blue);
  transition: transform .2s, box-shadow .2s;
}
.attend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.attend-icon { font-size: 2rem; margin-bottom: .625rem; }
.attend-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .9375rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.attend-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

/* ── Treatments grid ────────────────────────────────────────────── */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.treatment-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.25rem .875rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform .2s, box-shadow .2s;
}
.treatment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.treatment-icon { font-size: 1.875rem; margin-bottom: .5rem; }
.treatment-card h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: .8125rem;
  color: var(--text);
  line-height: 1.4;
}

/* ── Symptoms section ───────────────────────────────────────────── */
.symptoms-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.symptoms-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.symptoms-card.male  { border-top: 4px solid var(--blue); }
.symptoms-card.female { border-top: 4px solid var(--orange); }
.symptoms-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.symptoms-gender-icon { font-size: 2rem; }
.symptoms-card-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.1875rem;
  font-weight: 900;
}
.male  .symptoms-card-title { color: var(--blue-dark); }
.female .symptoms-card-title { color: var(--orange-dk); }
.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9375rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.symptom-item:last-child { border-bottom: none; }
.symptom-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}
.male  .symptom-dot { background: var(--blue); }
.female .symptom-dot { background: var(--orange); }

/* ── Full registration form (Section 8) ─────────────────────────── */
.register-form-wrap {
  max-width: 680px;
  margin: 2rem auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.rfw-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 1.75rem 2rem;
}
.rfw-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .25rem;
}
.rfw-sub { font-size: .9375rem; color: #bfdbfe; }
.rfw-body { padding: 1.75rem 2rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-select-field {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-size: .9375rem;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-select-field:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,91,168,.12);
}
.register-counsellor-note {
  text-align: center;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-top: 1rem;
  padding: .875rem;
  background: #eff6ff;
  border-radius: 10px;
  border: 1px solid #bfdbfe;
}

/* ── Sticky bar — 3-button camp variant ─────────────────────────── */
.sbb-wa {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .85rem .35rem;
  font-weight: 700;
  font-size: .875rem;
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  background: #25d366;
  color: #fff;
  transition: opacity .15s;
}
.sbb-wa:hover { opacity: .9; }
.sbb-wa .sbb-copy small,
.sbb-call .sbb-copy small,
.sbb-form .sbb-copy small { font-size: .63rem; }

/* ── Responsive — camp additions ───────────────────────────────── */
@media (max-width: 900px) {
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .camp-details-inner { grid-template-columns: 1fr; }
  .attend-grid        { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid    { grid-template-columns: repeat(3, 1fr); }
  .symptoms-inner     { grid-template-columns: 1fr; }
  .camp-highlight-card { position: static; }
}
@media (max-width: 600px) {
  .camp-date-strip    { gap: .4rem; }
  .benefits-grid      { grid-template-columns: 1fr; }
  .attend-grid        { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .treatments-grid    { grid-template-columns: repeat(2, 1fr); }
  .form-row-2         { grid-template-columns: 1fr; }
  .rfw-body           { padding: 1.25rem; }
  .rfw-header         { padding: 1.25rem; }
  .countdown-blocks   { gap: .35rem; }
  .countdown-block    { min-width: 50px; padding: .45rem .6rem; }
  .countdown-num      { font-size: 1.375rem; }
}
