/* ===================================================================
   SMS YATRA — WhatsApp Business API
   Design tokens — clean white + WhatsApp green
   Ink      : #0F1A16  (near-black, dark sections / primary text)
   Paper    : #FFFFFF  (clean white background)
   Green    : #25D366  (WhatsApp green — primary actions)
   Green Dk : #128C4A  (secondary green — hover, depth)
   Teal Acc : #0E9F6E  (accent — highlights, route lines)
   Forest   : #0B3D2E  (deep green — dark section variation)
   =================================================================== */

:root {
  --ink: #0F1A16;
  --ink-soft: #55655F;
  --paper: #FFFFFF;
  --paper-dim: #F2F8F5;
  --line: #E2EAE6;
  --green: #25D366;
  --green-dark: #128C4A;
  --marigold: #0E9F6E;
  --plum: #0B3D2E;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.12;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--marigold);
  border-radius: 50%;
  display: inline-block;
}

/* Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(31,174,106,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(31,174,106,0.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); }

/* Header / Nav ---------------------------------------------------------------*/
header.site {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250,243,226,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
header.site.scrolled {
  background: rgba(250,243,226,0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -22px rgba(16,38,44,0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo .dot { color: var(--green); }
.logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; display: block; }
.footer-brand .logo-mark { width: 44px; height: 44px; }

/* Capsule nav pill -----*/
.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px;
}
.nav-pill a {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.nav-pill a:hover { color: var(--ink); }
.nav-pill a.active { background: var(--ink); color: var(--paper); }

.nav-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-login { font-size: 14.5px; font-weight: 700; color: var(--ink); opacity: .8; }
.nav-login:hover { opacity: 1; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* Animated hamburger ----- */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu ----- */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(16,38,44,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 70;
}
.mobile-overlay.show { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 82vw);
  background: var(--paper);
  border-left: 1px solid var(--line);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 90px 28px 28px;
  box-shadow: -20px 0 50px -30px rgba(16,38,44,0.5);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
.mobile-menu-cta .btn { justify-content: center; width: 100%; }

@media (max-width: 900px) {
  .nav-pill, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* Hero ---------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 76px 0 40px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-dark);
  position: relative;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust {
  display: flex;
  gap: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-trust b { color: var(--ink); font-size: 15px; display: block; font-family: var(--font-body); }

.hero-art { position: relative; }
.phone-mock {
  position: relative;
  margin-left: auto;
  width: min(320px, 90%);
}

/* Route/Yatra signature line running through hero art */
.route-svg { width: 100%; height: auto; }

/* Stats strip ---------------------------------------------------------*/
.stats-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 34px 0;
}
.stats-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-strip .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--white);
}
.stats-strip .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}

/* Section shell ---------------------------------------------------------*/
section { padding: 96px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 54px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 17px; margin-top: 14px; }

/* Features grid ---------------------------------------------------------*/
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 32px -20px rgba(16,38,44,0.35); }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--white);
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.feature-parity-note {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}

/* Journey / Yatra steps ---------------------------------------------------------*/
.journey { background: var(--paper-dim); position: relative; }
.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.journey-track::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 3px dashed var(--marigold);
  z-index: 0;
}
.stop {
  position: relative;
  z-index: 1;
  text-align: left;
}
.stop-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--marigold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 18px;
}
.stop h4 { font-size: 17px; margin-bottom: 8px; }
.stop p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* Code sample ---------------------------------------------------------*/
.code-section {
  background: var(--ink);
  color: var(--paper);
}
.code-section .section-head h2,
.code-section .section-head p { color: var(--paper); }
.code-section .section-head p { opacity: .75; }
.code-window {
  background: #0B1B1F;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.code-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
}
.code-titlebar span {
  width: 11px; height: 11px; border-radius: 50%;
}
.code-titlebar span:nth-child(1) { background: #EF6B5C; }
.code-titlebar span:nth-child(2) { background: #EFC15C; }
.code-titlebar span:nth-child(3) { background: #5CD98A; }
.code-titlebar b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-left: 10px;
}
pre.code {
  margin: 0;
  padding: 26px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  overflow-x: auto;
  color: #E7F3EC;
}
.tok-kw { color: #EF8B2C; }
.tok-str { color: #6BD98A; }
.tok-fn { color: #7EC4E8; }
.tok-com { color: #6C8A82; }
.tok-var { color: #E7C36B; }

/* Pricing ---------------------------------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-14px);
  box-shadow: 0 26px 50px -24px rgba(16,38,44,0.5);
}
.plan-name { font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.plan-price { font-family: var(--font-display); font-size: 40px; margin: 12px 0 4px; }
.plan-price span { font-size: 15px; font-family: var(--font-body); font-weight: 600; opacity: .6; }
.plan-desc { font-size: 14px; opacity: .75; margin-bottom: 22px; }
.plan ul { margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; }
.plan ul li i { color: var(--green); margin-top: 3px; }
.plan.featured ul li i { color: var(--marigold); }
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }

/* Testimonials ---------------------------------------------------------*/
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
}
.testimonial p.quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}
.who b { display: block; font-size: 14.5px; }
.who span { font-size: 13px; color: var(--ink-soft); }

/* CTA banner ---------------------------------------------------------*/
.cta-banner {
  background: linear-gradient(120deg, var(--plum), var(--ink));
  color: var(--paper);
  border-radius: 26px;
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); max-width: 20ch; }
.cta-banner p { opacity: .8; margin-top: 10px; max-width: 40ch; }

/* Contact / footer ---------------------------------------------------------*/
.contact-section { background: var(--paper-dim); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info h3 { font-size: 24px; margin-bottom: 16px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 26px; }
.contact-info ul { display: flex; flex-direction: column; gap: 16px; }
.contact-info li { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.contact-info li i { width: 36px; height: 36px; border-radius: 10px; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--green-dark); }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: 13px; font-weight: 700; margin-bottom: 6px; display: block; }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--paper);
  color: var(--ink);
}
textarea { resize: vertical; min-height: 100px; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.form-note { font-size: 13px; color: var(--ink-soft); }
.form-alert {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.form-alert.success { background: rgba(31,174,106,0.14); color: var(--green-dark); }
.form-alert.error { background: rgba(239,107,92,0.14); color: #C1483A; }

footer.site {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 0 0 24px;
  overflow: hidden;
}
.footer-route {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 0;
}
.footer-route svg { width: 100%; height: 100%; display: block; }

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.footer-brand p { opacity: .7; font-size: 14.5px; max-width: 36ch; margin-top: 14px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.footer-badges span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  opacity: .85;
}
.footer-badges i { color: var(--green); }

.footer-newsletter label {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-newsletter-row { display: flex; gap: 10px; }
.footer-newsletter-row input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
}
.footer-newsletter-row input::placeholder { color: rgba(250,243,226,0.45); }
.footer-newsletter-row button {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  border: none;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.footer-newsletter-row button:hover { background: var(--green-dark); transform: translateY(-2px); }
.footer-newsletter-note { font-size: 12.5px; opacity: .55; margin-top: 10px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h5 { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; opacity: .6; margin-bottom: 16px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-grid ul a { opacity: .85; }
.footer-grid ul a:hover { opacity: 1; text-decoration: underline; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; opacity: .85; }
.footer-contact-list i { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--green); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 13px;
  opacity: .65;
  flex-wrap: wrap;
  gap: 10px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, border-color .18s ease;
}
.socials a:hover { background: var(--green); border-color: var(--green); }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* Scroll progress bar ---------------------------------------------------------*/
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--marigold);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 100;
}

/* Problems — horizontal pinned scroll ---------------------------------------------------------*/
.problem-pin {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.problem-pin .section-head { color: var(--paper); }
.problem-pin .section-head p { opacity: .72; }
.problem-pin-track-wrap {
  padding: 30px 0 10px 28px;
}
.problem-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 10px 0 10px;
  will-change: transform;
}
.problem-card {
  width: 300px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.problem-card .problem-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--marigold);
  letter-spacing: .06em;
  margin-bottom: 18px;
  display: block;
}
.problem-card .problem-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(239,139,44,0.15);
  color: var(--marigold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.problem-card h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.problem-card p { color: rgba(250,243,226,0.7); font-size: 14.5px; margin: 0; }
.problem-hint {
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  opacity: .55;
  text-align: center;
}

/* Product showcase — sticky scrollytelling ---------------------------------------------------------*/
.showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.showcase-list { display: flex; flex-direction: column; }
.showcase-item {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  opacity: .45;
  transition: opacity .35s ease;
}
.showcase-item:first-child { padding-top: 6px; }
.showcase-item.active { opacity: 1; }
.showcase-item .showcase-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-dark);
  display: block;
  margin-bottom: 10px;
}
.showcase-item h3 { font-size: 22px; margin-bottom: 10px; }
.showcase-item p { font-size: 15px; color: var(--ink-soft); margin: 0; max-width: 42ch; }
.showcase-sticky {
  position: sticky;
  top: 110px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 30px 60px -32px rgba(16,38,44,0.35);
}
.showcase-sticky .showcase-frame {
  position: relative;
  aspect-ratio: 420 / 320;
}
.showcase-sticky img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s ease;
}
.showcase-sticky img.active { opacity: 1; }

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-sticky { position: static; margin-bottom: 28px; }
}

/* Count-up stat emphasis ---------------------------------------------------------*/
.stats-strip .num { font-variant-numeric: tabular-nums; }

/* Reveal-on-scroll ---------------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Reduced motion ---------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive ---------------------------------------------------------*/
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .phone-mock { margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .journey-track::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan.featured { transform: none; }
}
@media (max-width: 700px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .features-grid, .pricing-grid, .testimonial-grid, .journey-track { grid-template-columns: 1fr; }
  .stats-strip .wrap { grid-template-columns: 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 26px; }
}
