/* ====================================================================
   LeadJeeto design system
   Light, high-trust business-software aesthetic. Mobile-first.
   Breakpoints: base (mobile) → 640px → 960px
   ==================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;

  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --border: #e2e8f0;

  --green-700: #15803d;
  --green-800: #166534;
  --green-50: #f0fdf4;
  --wa: #25d366;

  --blue-700: #1d4ed8;
  --amber-700: #b45309;
  --amber-50: #fffbeb;
  --red-700: #b91c1c;
  --red-50: #fef2f2;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 12px 28px -14px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 22px 48px -20px rgba(15, 23, 42, 0.28);

  --radius-card: 14px;
  --radius-btn: 12px;
  --radius-input: 10px;

  --font: "Inter", "Noto Sans Devanagari", "Nirmala UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: clip; /* not `hidden`: keeps position: sticky working */
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 800;
}

/* Devanagari needs more vertical room than Latin */
:lang(hi) h1, :lang(hi) h2, :lang(hi) h3, :lang(hi) h4 { line-height: 1.3; }

p { max-width: 68ch; }

a {
  color: var(--blue-700);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--blue-700);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

/* Anchored sections clear the sticky header when jumped to via nav/CTAs */
section[id],
[id].section { scroll-margin-top: 5.25rem; }

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  vertical-align: -0.2em;
  fill: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Skip link: hidden until keyboard-focused, then pinned top-left */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -60px;
  z-index: 200;
  background: var(--green-700);
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow);
  transition: top 0.15s ease;
}
.skip-link:hover { text-decoration: none; }
.skip-link:focus { top: 0.75rem; }

/* Scroll-reveal: JS adds .js-reveal only when motion is allowed, so no-JS and
   reduced-motion users always see fully-rendered content. */
.js-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* The display rules on .btn etc. must never defeat the hidden attribute */
[hidden] { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.8rem 1.4rem;
  min-height: 48px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease,
              transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(21, 128, 61, 0.45);
}
.btn--primary:hover { background: var(--green-800); box-shadow: 0 8px 22px -6px rgba(21, 128, 61, 0.5); }

.btn--outline {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--ink-500); }

.btn--ghost {
  color: var(--blue-700);
  padding: 0.5rem 0.75rem;
  min-height: 40px;
}

.btn--lg {
  font-size: 1.1rem;
  padding: 1rem 1.6rem;
}

.btn--block { width: 100%; }

.btn--success {
  background: var(--wa) !important;
  color: #fff !important;
  pointer-events: none;
  box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.45) !important;
}

@keyframes pulse-soft {
  0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.4); }
  70% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 0 15px rgba(21, 128, 61, 0); }
  100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(21, 128, 61, 0); }
}

/* ---------- Pills / trust strip ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}
.pill .icon { color: var(--green-700); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-900);
  text-decoration: none;
  min-width: 0;
}
.brand:hover { text-decoration: none; }

.brand__logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.brand__tag {
  display: none;
  font-size: 0.72rem;
  color: var(--ink-500);
  font-weight: 600;
  border-left: 1px solid var(--border);
  padding-left: 0.6rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Keep the header WhatsApp button proportionate: it should invite, not dominate */
.site-header .btn--primary {
  padding: 0.55rem 1rem;
  min-height: 42px;
  font-size: 0.95rem;
}
@media (min-width: 640px) {
  .site-header .btn--primary { padding: 0.7rem 1.25rem; min-height: 46px; }
}

.header-call {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink-900);
  font-size: 0.95rem;
}

.lang-link {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .brand__tag { display: block; }
  .header-call { display: inline-flex; }
}

/* ---------- Hindi suggestion banner ---------- */
.hi-banner {
  display: none;
  background: var(--amber-50);
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  text-align: center;
  padding: 0.5rem 1rem;
}
.hi-banner.is-visible { display: block; }
.hi-banner a { font-weight: 700; }
.hi-banner button {
  margin-left: 0.75rem;
  color: var(--ink-500);
  font-size: 1rem;
  padding: 0 0.4rem;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.25rem, 6vw, 5.5rem) 0; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.35rem); margin-bottom: 0.75rem; }
.section-head p { margin: 0 auto; color: var(--ink-500); font-size: clamp(1rem, 1.6vw, 1.1rem); }

/* Secondary in-section heading (e.g. the checklist intro inside the problem section) */
.section-head--sub { margin-bottom: 1.25rem; }
.section-head--sub h2 { font-size: 1.35rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

/* ---------- Hero (Dark Cinematic) ---------- */
.hero-dark-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #0b1114;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(52, 140, 105, 0.20) 0%, transparent 42%),
    radial-gradient(circle at 85% 0%, rgba(52, 140, 105, 0.20) 0%, transparent 42%);
  padding-top: 5.5rem;
  color: #fff;
  text-align: center;
}

/* Animated spotlight light-shafts in the hero's top corners (backdrop only).
   Green-forward to match the site accent; scoped to the top of the hero. */
.hero-dark-wrapper::before,
.hero-dark-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 900px;
  width: 46%;
  pointer-events: none;
  z-index: 0;
  filter: blur(34px);
  transform-origin: top center;
  will-change: transform, opacity;
}
.hero-dark-wrapper::before {
  left: 0;
  background:
    radial-gradient(ellipse 30% 70% at 22% 0%, rgba(74, 200, 140, 0.30), transparent 60%),
    radial-gradient(ellipse 12% 55% at 31% 0%, rgba(130, 232, 178, 0.20), transparent 55%);
  animation: beam-drift-l 13s ease-in-out infinite alternate;
}
.hero-dark-wrapper::after {
  right: 0;
  background:
    radial-gradient(ellipse 30% 70% at 78% 0%, rgba(74, 200, 140, 0.30), transparent 60%),
    radial-gradient(ellipse 12% 55% at 69% 0%, rgba(130, 232, 178, 0.20), transparent 55%);
  animation: beam-drift-r 16s ease-in-out infinite alternate;
}

@keyframes beam-drift-l {
  0%   { transform: translateX(-4%) rotate(-4deg) scaleY(1);    opacity: 0.6; }
  100% { transform: translateX(6%)  rotate(4deg)  scaleY(1.08); opacity: 1; }
}
@keyframes beam-drift-r {
  0%   { transform: translateX(4%)  rotate(4deg)  scaleY(1);    opacity: 0.65; }
  100% { transform: translateX(-6%) rotate(-4deg) scaleY(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-dark-wrapper::before,
  .hero-dark-wrapper::after { animation: none; }
}

.hero-dark__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-dark__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  padding: 0.4rem 1.5rem;
  border-radius: 999px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-dark__logo-img { 
  height: 32px; 
  width: auto; 
  display: block;
}

.hero-dark__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-dark__headline em {
  font-style: italic;
  color: #4ade80;
  font-weight: 500;
}

.hero-dark__sub {
  font-family: var(--font);
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-dark__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-dark__badge .icon { color: #4ade80; }

.section--dark-vsl {
  padding-top: 0;
  padding-bottom: 5rem;
  background-color: transparent;
  /* Stretch to full width inside the centered flex-column hero so the
     16:9 frame (whose poster is absolutely positioned) can size correctly. */
  align-self: stretch;
  width: 100%;
}
.section--dark-vsl .vsl__frame {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.03), 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  /* Cinematic fallback behind the poster so a missing/slow poster still looks intentional */
  background: radial-gradient(115% 100% at 50% 0%, #173038 0%, #0d1a1f 45%, #080f12 100%);
}
.section--dark-vsl .vsl__play {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  width: 80px;
  height: 80px;
  animation: none;
  box-shadow: none;
  transition: all 0.2s ease;
}
.section--dark-vsl .vsl__play .icon {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.section--dark-vsl .vsl__frame:hover .vsl__play {
  background: rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) scale(1.05);
}

/* ---------- Dark Problem/Solution Section ---------- */
.section--dark-problem {
  background-color: #0b1114;
  color: #fff;
  padding-top: 0;
  padding-bottom: 6rem;
}

.vsl-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.btn-glow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: inset -10px -10px 20px -10px rgba(74, 222, 128, 0.4), 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-glow:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset -10px -10px 25px -10px rgba(74, 222, 128, 0.6), 0 6px 15px rgba(0,0,0,0.4);
  color: #fff;
  text-decoration: none;
}
.btn-glow .icon {
  width: 14px;
  height: 14px;
  color: #4ade80;
}

.vsl-cta__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
.avatars {
  display: flex;
}
.avatar-img, .avatars img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 1px solid #1a1a1a !important;
  margin-left: -6px !important;
  object-fit: cover !important;
}
.avatar-img:first-child, .avatars img:first-child { margin-left: 0 !important; }

.logo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 1rem 0 4rem;
  opacity: 0.4;
}
.logo-placeholder {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: -0.02em;
}
.logo-placeholder .icon {
  width: 16px;
  height: 16px;
}

.dark-section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 3rem;
  line-height: 1.2;
  color: #fff;
}
.dark-section-headline em {
  font-style: italic;
  color: #4ade80;
  font-weight: 400;
}

.compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1150px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 1rem;
}
@media (min-width: 800px) {
  .compare-cards { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem; }
}

.compare-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 16px;
  text-align: left;
}

.compare-card--solution {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(74, 222, 128, 0.15), transparent 60%), linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.02) 45%, transparent 50%);
  pointer-events: none;
}

.compare-card h3 {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-rocket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
}

.compare-card__inner {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: #e2e8f0;
}
.compare-list .icon {
  width: 20px;
  height: 20px;
  color: #cbd5e1;
  flex-shrink: 0;
}
.compare-list--cyan .icon {
  color: #4ade80;
}

.compare-card__footer-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.compare-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.compare-card__tags span {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
}
.compare-card__tags .tag-cyan {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tag-cyan .icon { width: 14px; height: 14px; color: #4ade80; }

/* ---------- Stats bar ---------- */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.1;
}
.stat__num.is-loss { color: var(--red-700); }
.stat__num.is-money { color: var(--amber-700); }

.stat__label {
  font-size: 0.92rem;
  color: var(--ink-500);
}

.footnotes {
  max-width: 900px;
  margin: 1.25rem auto 0;
  font-size: 0.78rem;
  color: var(--ink-700); /* AA-safe on tinted (--bg-alt) backgrounds */
  line-height: 1.5;
}
.footnotes p { max-width: none; }

@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- ROI / missed-lead calculator ---------- */
.roi {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.5rem;
}

.roi__control { display: flex; flex-direction: column; justify-content: center; }
.roi__control label {
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 0.9rem;
  max-width: none;
}
.roi__control output {
  color: var(--green-700);
  font-weight: 800;
}

.roi__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--green-50);
  border: 1px solid var(--border);
  outline-offset: 4px;
}
.roi__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-700);
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.roi__range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-700);
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.roi__scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-500);
  margin-top: 0.5rem;
}
/* Second slider (average order value) sits below the first with its own air */
.roi__control .roi__scale + label { margin-top: 1.4rem; }

.roi__result {
  text-align: center;
  background: var(--red-50);
  border: 1px solid #fecaca;
  border-radius: var(--radius-card);
  padding: 1.25rem 1rem;
}
.roi__resultlabel { font-size: 0.9rem; color: var(--ink-700); max-width: none; margin-bottom: 0.25rem; }
.roi__amount {
  font-size: clamp(1.9rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--red-700);
  line-height: 1.1;
  max-width: none;
  transition: transform 0.2s ease, color 0.2s ease;
}
.roi__resultsub { font-size: 0.9rem; color: var(--ink-700); max-width: none; margin-top: 0.25rem; }
.roi__rupees { font-weight: 700; color: var(--ink-900); }

.roi__payback {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-top: 0.75rem;
  background: #fff;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

@keyframes pulse-red {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .is-pulsing { animation: none !important; }
}
.is-pulsing {
  animation: pulse-red 0.4s ease-out;
}

.roi__foot {
  max-width: 820px;
  margin: 1rem auto 0;
  text-align: center;
}
.roi__foot .btn { margin-bottom: 0.75rem; }
.roi__assume { font-size: 0.8rem; color: var(--ink-500); max-width: none; margin: 0 auto; }

@media (min-width: 640px) {
  .roi { grid-template-columns: 1.1fr 1fr; gap: 2rem; padding: 2rem; }
}

/* ---------- Problem story: plain narrative beat, no card chrome ---------- */
.story {
  max-width: 58ch;
  margin: 0 auto 2.75rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
}
.story p { max-width: none; margin-bottom: 1rem; }
.story p:last-child { margin-bottom: 0; }
.story strong { color: var(--ink-900); }

/* ---------- Statement band: single-line VSL pattern interrupt ---------- */
.statement {
  background: var(--ink-900);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  text-align: center;
}
.statement p {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin: 0 auto;
}
.statement em { font-style: normal; color: #4ade80; }
:lang(hi) .statement p { line-height: 1.4; }

/* ---------- Checklist Minimal Grid ---------- */
.checklist {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .checklist { grid-template-columns: 1fr 1fr; }
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1rem 1.15rem;
  font-size: 0.98rem;
  color: var(--ink-700);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.checklist__item:hover { border-color: var(--ink-500); }

.checklist__box {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--ink-500);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.checklist__box .icon { width: 14px; height: 14px; }

.checklist__item[aria-pressed="true"] {
  border-color: var(--green-700);
  background: var(--green-50);
}
.checklist__item[aria-pressed="true"] .checklist__box {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.score-box {
  max-width: 760px;
  margin: 1.75rem auto 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--ink-500);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 1.4rem 1.5rem;
  text-align: center;
}
.score-box p {
  max-width: none;
  font-weight: 600;
  color: var(--ink-900);
}
/* Spacing lives on the CTA so no stray gap remains while it is hidden */
.score-box .btn { margin: 1rem auto 0; }
.score-box.is-warn { border-left-color: var(--amber-700); background: var(--amber-50); }
.score-box.is-crit { border-left-color: var(--red-700); background: var(--red-50); }

/* ---------- VSL facade ---------- */
.vsl {
  max-width: 860px;
  margin: 0 auto;
}

.vsl__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--ink-900);
  display: block;
  padding: 0;
}

.vsl__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsl__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.15s ease;
  animation: pulse-soft 2.5s infinite;
}
.vsl__frame:hover .vsl__play { background: var(--green-800); }
.vsl__play .icon { width: 28px; height: 28px; margin-left: 3px; position: relative; z-index: 2; }

.vsl__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl__caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-500);
  margin-top: 0.85rem;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--ink-700); }
.step .fine { display: block; margin-top: 0.6rem; }

@media (min-width: 960px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Demo visuals: phone + sheet mock ---------- */
.demo-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

/* min-width:0 lets the sheet-mock's scroll container actually shrink on phones
   instead of forcing the whole page wider than the viewport */
.demo-visuals > div {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.demo-visuals .phone { margin: 0 auto; }

@media (min-width: 960px) {
  .demo-visuals { grid-template-columns: auto 1fr; gap: 3rem; }
}

/* Single-proof variant: the sheet mock alone, centered at a readable width */
.demo-visuals--single { max-width: 760px; margin: 0 auto; }
@media (min-width: 960px) {
  .demo-visuals--single { grid-template-columns: 1fr; }
}

.phone {
  width: 290px;
  border: 10px solid var(--ink-900);
  border-radius: 32px;
  background: #e5ddd5; /* WhatsApp-like chat backdrop */
  overflow: hidden;
  box-shadow: var(--shadow);
}

.phone__bar {
  background: var(--green-800);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.phone__chat {
  padding: 0.85rem 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 300px;
}

.bubble {
  max-width: 88%;
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.12);
}
.bubble--in { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.bubble--out { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 2px; }
.bubble time {
  display: block;
  font-size: 0.62rem;
  color: var(--ink-500);
  text-align: right;
  margin-top: 0.25rem;
}
.bubble--out time { color: #4b7c50; }

.mock-caption {
  font-size: 0.78rem;
  color: var(--ink-700); /* AA-safe on the --bg-alt "how it works" section */
  text-align: center;
  margin-top: 0.6rem;
  max-width: none;
}

.sheetmock {
  width: 100%;
  overflow-x: auto;
}

.sheetmock table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  overflow: hidden;
}

.sheetmock th {
  background: var(--bg-alt);
  color: var(--ink-900);
  font-weight: 700;
  text-align: left;
  padding: 0.55rem 0.75rem;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.sheetmock td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  color: var(--ink-700);
}

.sheetmock .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}
.tag--new { background: var(--green-50); color: var(--green-800); }
.tag--fup { background: var(--amber-50); color: var(--amber-700); }

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  background: #fff;
}

.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare th,
.compare td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.compare thead th {
  background: var(--bg-alt);
  color: var(--ink-900);
  font-size: 0.92rem;
}

.compare tbody tr:last-child td { border-bottom: none; }

.compare th:first-child,
.compare td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink-900);
  position: sticky;
  left: 0;
  background: #fff;
  box-shadow: 1px 0 0 var(--border);
  max-width: 220px;
  white-space: normal;
}
.compare thead th:first-child { background: var(--bg-alt); }

.compare .col-us {
  background: var(--green-50);
  font-weight: 600;
  color: var(--ink-900);
}
.compare thead .col-us {
  background: var(--green-700);
  color: #fff;
}

.compare .yes { color: var(--green-700); font-weight: 700; }
.compare .no { color: var(--red-700); }
.compare .meh { color: var(--amber-700); }

/* Swipe affordance: shown only while the table actually overflows (narrow viewports) */
.table-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-500);
  margin: 0.5rem auto 0;
  max-width: none;
}
@media (max-width: 800px) {
  .table-hint { display: block; }
}

/* ---------- Founder ---------- */
.founder {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}

.founder__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green-50);
  outline: 1px solid var(--border);
  margin: 0 auto;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
}
.founder__photo .icon { width: 64px; height: 64px; }

.founder__body h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.founder__body p { margin-bottom: 0.85rem; }
.founder__body p:last-of-type { margin-bottom: 0; }

.founder__sign {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--ink-900);
}
.founder__sign .fine { font-weight: 400; }

.founder__cta { margin-top: 1.25rem; }

@media (min-width: 640px) {
  .founder {
    grid-template-columns: auto 1fr;
    padding: 2.5rem;
    text-align: left;
  }
}

/* ---------- Offer box ---------- */
/* The offer is the crescendo: extra air before it so it lands as its own moment */
#offer { padding-top: clamp(4rem, 8vw, 6.5rem); }

/* ---------- Pricing Toggle ---------- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-700);
}

.pricing-toggle .badge {
  background: var(--green-100, #dcfce7);
  color: var(--green-800);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  font-weight: 700;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--border);
  transition: .3s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

input:checked + .toggle-slider {
  background-color: var(--green-700);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.pricing-toggle span.is-active {
  color: var(--ink-900);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .offers-grid { grid-template-columns: 1fr 1.15fr 1fr; align-items: stretch; }
}

.offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-card--featured {
  border: 2px solid var(--green-700);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
@media (min-width: 960px) {
  .offer-card--featured { transform: scale(1.05); }
}

.offer-card__head {
  background: var(--bg-alt);
  color: var(--ink-900);
  text-align: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.offer-card--featured .offer-card__head {
  background: var(--green-700);
  color: #fff;
  border-bottom: none;
}
.offer-card__head h3 { font-size: 1.2rem; }
.offer-card--featured .offer-card__head h3 { font-size: 1.3rem; color: #fff; }

.offer-card__body { padding: 1.75rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }

.offer-card__setup { font-size: 0.9rem; color: var(--ink-500); text-align: center; margin-bottom: 0.25rem; }
.offer-card__setup del { color: var(--red-700); margin-right: 0.3rem; }

.offer-card__price { text-align: center; margin-bottom: 0.35rem; }
.offer-card__price .amount { font-size: 2.2rem; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.offer-card--featured .offer-card__price .amount { font-size: 2.6rem; }
.offer-card__price .period { color: var(--ink-500); font-weight: 600; }

.offer-card__pricenote { text-align: center; font-size: 0.9rem; color: var(--ink-500); max-width: none; margin-bottom: 1.5rem; }

.offer-card__list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; flex-grow: 1; }
.offer-card__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; }
.offer-card--featured .offer-card__list li { font-size: 0.98rem; }
.offer-card__list .icon { color: var(--green-700); margin-top: 0.25em; }
.offer-card__list .icon-x { color: var(--ink-300); margin-top: 0.25em; width: 16px; height: 16px; }
.offer-card__list strong { color: var(--ink-900); }
.offer-card__list .value { color: var(--amber-700); font-weight: 700; white-space: nowrap; }

.offer-card__total {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 0.85rem 1.15rem; text-align: center; font-size: 0.95rem; margin-bottom: 1.5rem; max-width: none;
}
.offer-card__total strong { color: var(--ink-900); }

.slots { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1rem 1.15rem; text-align: center; margin-bottom: 1.5rem; }
.slots__meter { display: flex; justify-content: center; gap: 6px; margin-bottom: 0.5rem; }
.slots__meter span { width: 22px; height: 12px; border-radius: 3px; background: #fff; border: 1.5px solid var(--green-700); }
.slots__meter span.is-taken { background: var(--green-700); }
.slots__label { font-size: 0.9rem; font-weight: 700; color: var(--ink-900); max-width: none; }
.slots__why { font-size: 0.82rem; color: var(--ink-500); max-width: none; }

.offer-card__guarantee {
  display: flex; gap: 0.75rem; align-items: flex-start; background: var(--green-50); border: 1px solid #bbf7d0; border-radius: var(--radius-card); padding: 1rem 1.15rem; font-size: 0.92rem; margin-bottom: 1.5rem;
}
.offer-card__guarantee .icon { color: #fff; background: var(--green-700); border-radius: 50%; padding: 8px; width: 40px; height: 40px; flex-shrink: 0; margin-top: 0.1em; }
.offer-card__guarantee p { max-width: none; }

.offer-card__ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: auto; }

.offer-card__paynote { text-align: center; font-size: 0.82rem; color: var(--ink-500); margin-top: 0.9rem; max-width: none; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq__item:hover { border-color: #cbd5e1; }
.faq__item.is-open { border-color: var(--green-700); box-shadow: var(--shadow); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-900);
  padding: 1.1rem 1.25rem;
  min-height: 48px;
}

.faq__q .icon {
  color: var(--ink-500);
  transition: transform 0.25s ease;
}
.faq__item.is-open .faq__q .icon { transform: rotate(45deg); }

/* 0fr→1fr grid animation: no max-height, so long Hindi answers never clip */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

.faq__a > div {
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--ink-700);
  font-size: 0.96rem;
}
.faq__item.is-open .faq__a > div { padding-bottom: 1.25rem; }
.faq__a p { margin-bottom: 0.7rem; max-width: none; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- Lead form ---------- */
.lead-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 0.35rem;
}

.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  padding: 0.75rem 0.9rem;
  min-height: 48px;
}
.field input:focus,
.field select:focus {
  border-color: var(--blue-700);
  outline: 2px solid rgba(29, 78, 216, 0.25);
  outline-offset: 0;
}

.field--phone { display: flex; }
.field--phone .prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-input) 0 0 var(--radius-input);
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--ink-700);
}
.field--phone input { border-radius: 0 var(--radius-input) var(--radius-input) 0; }

/* Inline validation errors (replaces the old native alert) */
.field-error {
  display: none;
  color: var(--red-700);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.35rem;
}
.field-error.is-visible { display: block; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--red-700);
}
.field input[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus {
  outline: 2px solid rgba(185, 28, 28, 0.25);
  border-color: var(--red-700);
}

/* honeypot: hidden from humans, present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-500);
  text-align: center;
  margin-top: 0.8rem;
  max-width: none;
}

.form-alert {
  border-radius: var(--radius-card);
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-alert--ok {
  background: var(--green-50);
  border: 1px solid #bbf7d0;
  color: var(--ink-900);
}
.form-alert--err {
  background: var(--red-50);
  border: 1px solid #fecaca;
  color: var(--ink-900);
}
.form-alert p { max-width: none; margin-bottom: 0.75rem; }
.form-alert .btn { margin-top: 0.25rem; }

/* ---------- Final CTA band ---------- */
.final-cta {
  background: var(--ink-900);
  padding: 3.5rem 0;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  max-width: 720px;
  margin: 0 auto 0.75rem;
}
.final-cta p {
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}
.final-cta .btn--outline {
  background: transparent;
  color: #fff;
  border-color: #475569;
}
.final-cta .btn--outline:hover { border-color: #94a3b8; }
.final-cta .hero__ctas { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 6.5rem; /* bottom padding clears the mobile sticky bar */
  font-size: 0.92rem;
  color: var(--ink-500);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer__legal {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.6;
}
.site-footer__legal p { max-width: none; margin-bottom: 0.5rem; }

@media (min-width: 640px) {
  .site-footer { padding-bottom: 3rem; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}

/* ---------- Mobile sticky bottom bar ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.sticky-bar .btn { flex: 1; font-size: 0.95rem; padding: 0.7rem 0.5rem; }

.btn--wa {
  background: var(--wa);
  color: #073b16;
}
.btn--wa:hover { background: #1fbd5a; }

@media (min-width: 640px) {
  .sticky-bar { display: none; }
}

/* ---------- Floating WhatsApp (desktop only) ---------- */
.float-wa {
  display: none;
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.float-wa:hover { transform: scale(1.08); text-decoration: none; }
.float-wa .icon { width: 30px; height: 30px; }

@media (min-width: 640px) {
  .float-wa { display: flex; }
}

/* ---------- Fine print ---------- */
.fine {
  font-size: 0.8rem;
  color: var(--ink-500);
}
