/* ==========================================================================
   ADCWash.lt — landing pages (žibintų poliravimas / stiklo įdaužos remontas)
   Design system: ADCParking foundation, ADCWash navy + red brand.
   Mobile-first. BEM. CSS custom properties. Plus Jakarta Sans.
   ========================================================================== */

:root {
  /* --- Brand palette (sampled from maketai) --- */
  --navy: #001a4d;
  --navy-2: #0a3170;
  --navy-3: #0b50c0;          /* interactive blue / links / active */
  --red: #d01010;             /* accent + CTA */
  --red-2: #e8241c;           /* CTA gradient end */

  /* --- Surfaces & text --- */
  --surface: #f2f3f7;
  --surface-2: #e7eaf1;
  --white: #ffffff;
  --text: #11161f;
  --text-light: #475067;
  --text-muted: #6b7280;
  --outline: rgba(17, 22, 31, 0.12);

  /* --- Semantic --- */
  --success: #16a673;
  --gold: #f5b50a;
  --warn-bg: #fdecec;

  /* --- Spacing (8pt) --- */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem;

  /* --- Structure --- */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --container: 1080px;
  --header-h: 60px;
  --shadow-sm: 0 4px 12px rgba(17, 22, 31, 0.05);
  --shadow: 0 10px 28px rgba(17, 22, 31, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 26, 77, 0.14);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-drawer: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: var(--navy-3); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid rgba(11, 80, 192, 0.5); outline-offset: 2px; border-radius: 4px; }

/* --- Layout helpers --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.section { padding: var(--sp-12) 0; }
.section--tight { padding: var(--sp-10) 0; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); color: #fff; }
.section__head { text-align: center; max-width: 620px; margin: 0 auto var(--sp-8); }
.section-title {
  font-size: 1.6rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em;
}
.section-title--bar {
  display: inline-block; background: var(--navy); color: #fff;
  padding: var(--sp-2) var(--sp-5); border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.section-sub { margin-top: var(--sp-3); color: var(--text-light); font-size: 1.0625rem; }
.eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red);
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 54px; padding: 0.9rem 1.75rem; border: none; border-radius: var(--radius-lg);
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em; text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn--cta {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff; box-shadow: 0 6px 18px rgba(208, 16, 16, 0.32);
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(208, 16, 16, 0.42); }
.btn--cta:active { transform: scale(0.98) translateY(0); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.12); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-1px); }
.btn--outline {
  background: #fff; color: var(--navy); border: 1.5px solid var(--outline);
}
.btn--outline:hover { border-color: var(--navy); background: var(--surface); }
.btn--navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: 0 6px 18px rgba(0,26,77,0.28); }
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,26,77,0.38); }
.btn--navy:active { transform: scale(0.98) translateY(0); }
.btn--lg { min-height: 60px; font-size: 1.125rem; padding: 1rem 2.25rem; }
.btn--block { display: flex; width: 100%; }

/* --- Header --- */
.header {
  position: sticky; top: 0; z-index: 1100; background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--outline); height: var(--header-h);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: inline-flex; align-items: baseline; font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em; color: var(--navy); }
.logo:hover { text-decoration: none; }
.logo img { height: 32px; width: auto; display: block; }
.logo__wash { color: var(--red); }
.logo__tld { color: var(--text-muted); font-weight: 700; font-size: 0.95rem; }
.header__nav { display: none; align-items: center; gap: var(--sp-6); }
.header__nav a { color: var(--text-light); font-weight: 600; font-size: 0.9375rem; }
.header__nav a:hover { color: var(--navy); text-decoration: none; }
.header__cta { display: none; }
.header__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; color: var(--navy);
}

/* --- Mobile menu drawer --- */
.mmenu { position: fixed; inset: 0; z-index: 1200; visibility: hidden; }
.mmenu.is-open { visibility: visible; }
.mmenu__backdrop {
  position: absolute; inset: 0; background: rgba(0, 12, 36, 0.5); opacity: 0;
  transition: opacity 0.3s ease;
}
.mmenu.is-open .mmenu__backdrop { opacity: 1; }
.mmenu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 280px; max-width: 85vw;
  background: #fff; box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
  transform: translateX(100%); transition: transform 0.32s var(--ease-drawer);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2);
}
.mmenu.is-open .mmenu__panel { transform: translateX(0); }
.mmenu__close { align-self: flex-end; width: 44px; height: 44px; border: none; background: none; color: var(--navy); }
.mmenu__link { padding: var(--sp-3) 0; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--outline); }
.mmenu__link:hover { color: var(--navy); text-decoration: none; }
.mmenu .btn { margin-top: var(--sp-4); }

/* --- Hero --- */
.hero { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(11, 80, 192, 0.35), transparent 55%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: grid; gap: var(--sp-8); padding: var(--sp-10) 0 var(--sp-12); }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2); align-self: start;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 0.85rem; border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 700;
}
.hero__badge--red { background: var(--red); border-color: var(--red); }
.hero h1 { font-size: 2rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-top: var(--sp-4); }
.hero__price { display: inline-flex; align-items: baseline; gap: var(--sp-2); margin-top: var(--sp-4); }
.hero__price b { font-size: 2.5rem; font-weight: 800; color: #fff; }
.hero__price span { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }
.hero__lead { margin-top: var(--sp-4); font-size: 1.0625rem; color: rgba(255, 255, 255, 0.88); }
.hero__points { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.hero__points li { display: flex; gap: var(--sp-3); align-items: flex-start; font-weight: 600; }
.hero__points svg { flex-shrink: 0; color: #6fe0b0; margin-top: 2px; }
.hero__actions { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: rgba(255,255,255,0.06); aspect-ratio: 4 / 3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* --- Benefit grid (kodėl verta) --- */
.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
.benefit { min-width: 0; background: #fff; border: 1px solid var(--outline); border-radius: var(--radius-lg); padding: var(--sp-5); text-align: center; }
.benefit h3, .benefit p { overflow-wrap: anywhere; }
.benefit--wide { grid-column: 1 / -1; background: linear-gradient(135deg, var(--navy), var(--navy-2)); border: none;
  color: #fff; text-align: left; display: flex; align-items: center; gap: var(--sp-5); padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow); position: relative; overflow: hidden; }
.benefit--wide::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.benefit--wide .benefit__icon { margin: 0; flex-shrink: 0; width: 60px; height: 60px; background: var(--red); color: #fff; }
.benefit--wide h3 { color: #fff !important; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.01em; }
.benefit--wide p { color: #ffffff !important; font-size: 1.15rem; line-height: 1.5; font-weight: 600; margin-top: var(--sp-3); }
.benefit__icon { width: 52px; height: 52px; margin: 0 auto var(--sp-3); border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center; background: rgba(11, 80, 192, 0.1); color: var(--navy); }
.benefit h3 { font-size: 1rem; font-weight: 700; }
.benefit p { margin-top: var(--sp-2); font-size: 0.9rem; color: var(--text-light); }

/* --- Before / after --- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.ba__item { border-radius: var(--radius-lg); overflow: hidden; position: relative; border: 1px solid var(--outline); background: var(--surface); }
.ba__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba__tag { position: absolute; top: var(--sp-3); left: var(--sp-3); padding: 0.25rem 0.7rem; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.ba__tag--before { background: rgba(17,22,31,0.7); color: #fff; }
.ba__tag--after { background: var(--success); color: #fff; }

/* --- Steps (kaip vyksta) --- */
.steps { display: grid; gap: var(--sp-5); }
.step { display: flex; gap: var(--sp-4); align-items: flex-start; min-width: 0; }
.step > div { min-width: 0; }
.step p, .step h3 { overflow-wrap: anywhere; }
.step__num { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.step h3 { font-size: 1.0625rem; font-weight: 700; }
.step p { margin-top: var(--sp-1); color: var(--text-light); font-size: 0.95rem; }
/* steps with images */
.stepimg-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
.step-card { background: #fff; border: 1px solid var(--outline); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.step-card__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.step-card__body { padding: var(--sp-5) var(--sp-4) var(--sp-4); position: relative; }
.step-card__num { position: absolute; top: -20px; left: var(--sp-4); width: 40px; height: 40px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: var(--shadow-sm); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; }
.step-card p { margin-top: var(--sp-2); color: var(--text-light); font-size: 0.92rem; }
@media (min-width: 700px) { .stepimg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .stepimg-grid { grid-template-columns: repeat(4, 1fr); } }

.duration { margin-top: var(--sp-6); display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(11,80,192,0.08); color: var(--navy); padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full); font-weight: 700; font-size: 0.9rem; }

/* --- Callouts (rekomenduojama / svarbu) --- */
.callouts { display: grid; gap: var(--sp-4); }
.callout { border-radius: var(--radius-lg); padding: var(--sp-5); border: 1px solid var(--outline); background: #fff; }
.callout__title { display: flex; align-items: center; gap: var(--sp-2); font-weight: 800; margin-bottom: var(--sp-3); }
.callout--ok .callout__title { color: var(--success); }
.callout--warn { background: var(--warn-bg); border-color: rgba(208,16,16,0.25); }
.callout--warn .callout__title { color: var(--red); }
.callout li { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-2); font-size: 0.92rem; color: var(--text-light); }
.callout li svg { flex-shrink: 0; margin-top: 3px; }

/* --- Cross-sell --- */
.crosssell { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5);
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff;
  border-radius: var(--radius-xl); padding: var(--sp-6) var(--sp-6); }
.crosssell__img { flex-shrink: 0; width: 96px; height: 96px; border-radius: var(--radius-lg); object-fit: cover; }
.crosssell__body { flex: 1; min-width: 220px; }
.crosssell h3 { font-size: 1.2rem; font-weight: 800; }
.crosssell p { margin-top: var(--sp-2); color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* --- Map --- */
.mapwrap { position: relative; z-index: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--outline); }
.leaflet-container { z-index: 0; }
#map { width: 100%; height: 340px; background: var(--surface-2); }
.map-fallback { width: 100%; height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-3); background: var(--surface-2); color: var(--text-light); text-align: center; padding: var(--sp-6); }
.map-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); justify-content: center; }
.address-card { text-align: center; margin-bottom: var(--sp-6); }
.address-card b { font-size: 1.05rem; }
.leaflet-tooltip.adc-maptag { background: var(--navy); color: #fff; border: none; font-weight: 800;
  font-size: 0.78rem; padding: 3px 9px; border-radius: var(--radius-full); box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.leaflet-tooltip.adc-maptag::before { border-top-color: var(--navy); }
.adc-maptag__sub { font-size: 0.72em; font-weight: 600; opacity: 0.7; margin-left: 3px; }
.leaflet-tooltip.adc-maptag--blue { background: var(--navy-3); white-space: normal; max-width: 160px; text-align: center;
  line-height: 1.25; font-size: 0.72rem; border-radius: 12px; padding: 6px 10px; }
.leaflet-tooltip.adc-maptag--blue::before { border-top-color: var(--navy-3); }
.route-badge-wrap { background: none; border: none; }
.route-badge {
  display: inline-flex; align-items: center; gap: 3px; white-space: nowrap;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; font-weight: 800; font-size: 0.48rem;
  padding: 3px 7px; border-radius: var(--radius-full);
  box-shadow: 0 2px 7px rgba(0,26,77,.35);
}
.route-badge svg { flex: 0 0 auto; opacity: .9; }

/* --- FAQ --- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--outline); border-radius: var(--radius-lg); margin-bottom: var(--sp-3); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: var(--sp-4) var(--sp-5); min-height: 54px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); font-weight: 700; font-size: 0.98rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--navy-3); font-size: 1.4rem; font-weight: 700; line-height: 1; flex-shrink: 0; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { padding: 0 var(--sp-5) var(--sp-4); color: var(--text-light); font-size: 0.95rem; }

/* --- Final CTA band --- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; text-align: center; }
.cta-band h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.01em; }
.cta-band p { margin-top: var(--sp-3); color: rgba(255,255,255,0.85); }
.cta-band .btn { margin-top: var(--sp-6); }

/* --- Sticky mobile CTA --- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-top: 1px solid var(--outline);
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: var(--sp-3);
  transform: translateY(110%); transition: transform 0.35s var(--ease-drawer); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__info { flex: 1; min-width: 0; }
.sticky-cta__info b { display: block; font-size: 0.95rem; color: var(--navy); }
.sticky-cta__info span { font-size: 0.78rem; color: var(--text-muted); }
.sticky-cta .btn { flex-shrink: 0; min-height: 48px; padding: 0.7rem 1.4rem; }

/* --- Footer --- */
.footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: var(--sp-12) 0 var(--sp-8); }
.footer__grid { display: grid; gap: var(--sp-8); }
.footer__brand .logo { color: #fff; }
.footer__brand .logo__tld { color: rgba(255,255,255,0.6); }
.footer__brand p { margin-top: var(--sp-3); font-size: 0.9rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; margin-bottom: var(--sp-3); }
.footer__links a, .footer__contact a, .footer__contact span { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.footer__links a { display: block; padding: var(--sp-1) 0; }
.footer__contact div { display: flex; gap: var(--sp-2); align-items: flex-start; padding: var(--sp-1) 0; }
.footer__contact svg { flex-shrink: 0; opacity: 0.7; margin-top: 3px; }
.footer__legal { margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem; color: rgba(255,255,255,0.6); display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6); justify-content: space-between; }

/* --- ADCParking section --- */
.adcp__intro { text-align: center; max-width: 680px; margin: 0 auto var(--sp-8); }
.adcp__intro .eyebrow { color: var(--red); }
.adcp__cta-row { text-align: center; margin-top: var(--sp-8); }
.adcp-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-3); margin-top: var(--sp-8); }
.adcp-stat { min-width: 0; display: flex; align-items: center; gap: var(--sp-3); background: #fff; border: 1px solid var(--outline);
  border-radius: var(--radius-lg); padding: var(--sp-3) var(--sp-4); box-shadow: var(--shadow-sm); }
.adcp-stat > div { min-width: 0; }
.adcp-stat svg { flex-shrink: 0; color: var(--navy); }
.adcp-stat b { display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.adcp-stat span { font-size: 0.8rem; color: var(--text-muted); }
@media (min-width: 760px) { .adcp-stats { grid-template-columns: repeat(4, 1fr); } }
.slim-footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: var(--sp-6) 0; }
.slim-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-3); font-size: 0.85rem; }
.slim-footer a { color: rgba(255,255,255,0.85); }
.slim-footer .logo img { height: 26px; }

/* --- Scroll reveal --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring); }
.reveal.is-in { opacity: 1; transform: none; }

/* --- Chooser (index) --- */
.chooser { display: grid; gap: var(--sp-6); }
.choice { display: block; background: #fff; border: 1px solid var(--outline); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease; }
.choice:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.choice img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.choice__body { padding: var(--sp-6); }
.choice__body h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.choice__body p { margin-top: var(--sp-2); color: var(--text-light); }
.choice__price { display: inline-block; margin-top: var(--sp-3); font-weight: 800; color: var(--red); font-size: 1.1rem; }

/* legal/article page */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.25rem; font-weight: 800; margin-top: var(--sp-8); }
.prose p, .prose li { color: var(--text-light); margin-top: var(--sp-3); }
.prose ul { padding-left: var(--sp-5); list-style: disc; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 700px) {
  .hero h1 { font-size: 2.6rem; }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .ba { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .chooser { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1.5fr; }
  .section-title { font-size: 2rem; }
}

@media (min-width: 940px) {
  .header__nav, .header__cta { display: inline-flex; }
  .header__burger { display: none; }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; padding: var(--sp-16) 0; }
  .hero h1 { font-size: 3rem; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .sticky-cta { display: none !important; }
}

@media (max-width: 939px) {
  /* sticky CTA only on mobile/tablet */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
