/* ============================================================================
   Wash Pilot — marketing site
   One stylesheet. Tokens first, then base, primitives, and components.
   Mobile-first: base styles target ~375px; @media (min-width:768px) scales up.
   Palette captured from https://mobitapp.webflow.io/ (2026-09-18).
   ========================================================================== */

:root {
  /* Ink & neutrals */
  --ink:        #161525;   /* headings, near-black indigo */
  --ink-soft:   #3A3A46;   /* body text on light */
  --muted:      #7C7C88;   /* captions, eyebrows, meta */
  --ground:     #FFFFFF;   /* page background */
  --cream:      #F3EFE7;   /* warm alt sheet */
  --cream-2:    #F7F6F4;   /* second warm tint */
  --panel:      #F2F1FF;   /* pale accent-tint panel for cards */
  --white:      #FFFFFF;
  --border:     rgba(22, 21, 37, .10);
  --border-2:   rgba(22, 21, 37, .06);

  /* Accent — mobitapp indigo */
  --accent:     #5A45FE;
  --accent-hi:  #4763FF;   /* hover / gradient partner */
  --accent-ink: #FFFFFF;   /* text on accent */
  --accent-tint:#EEEBFF;

  /* Type — Figtree everywhere */
  --ff-base: 'Figtree', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Shape */
  --radius-btn:   999px;
  --radius-card:  20px;
  --radius-sheet: 28px;
  --transition:   .18s ease;
  --container:    1200px;

  --shadow-sm: 0 1px 2px rgba(22,21,37,.05);
  --shadow-md: 0 12px 34px rgba(22,21,37,.08);
  --shadow-lg: 0 24px 60px rgba(22,21,37,.12);
}

/* ---- Reset & base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-base);
  color: var(--ink-soft);
  background: var(--ground);
  font-size: 1rem;              /* 16px — keeps iOS from zooming form fields */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;            /* never allow horizontal scroll */
}
body.no-scroll { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---- Type scale (mobile-first clamp) ---- */
h1, h2, h3, h4 { color: var(--ink); font-weight: 600; overflow-wrap: break-word; }
h1 { font-size: clamp(2rem, 8vw, 4rem);       letter-spacing: -.045em; line-height: 1.04; }
h2 { font-size: clamp(1.6rem, 5vw, 2.75rem);  letter-spacing: -.03em;  line-height: 1.08; }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.4rem);letter-spacing: -.02em;  line-height: 1.25; }
h4 { font-size: 1.05rem; letter-spacing: -.01em; }
p  { max-width: 62ch; }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--accent);
}
.lead { font-size: 1.08rem; color: var(--ink-soft); }

/* ---- Layout primitives — the three moves ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: 56px 0; position: relative; scroll-margin-top: 72px; }
.section--alt  { background: var(--cream);  border-radius: var(--radius-sheet); margin: 10px; }
.section--tint { background: var(--cream-2); border-radius: var(--radius-sheet); margin: 10px; }
.section--dark {
  background: linear-gradient(150deg, var(--accent-hi), var(--accent));
  color: rgba(255,255,255,.86); border-radius: var(--radius-sheet); margin: 10px;
  overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--accent-ink); }
.section--dark .eyebrow { color: rgba(255,255,255,.8); }

.section-head { max-width: 640px; margin: 0 auto 34px; text-align: center; }
.section-head p { margin: 12px auto 0; color: var(--ink-soft); }
.section--dark .section-head p { color: rgba(255,255,255,.82); }

/* ---- Buttons — pill, context-aware ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 14px 26px; border-radius: var(--radius-btn);
  font: 600 1rem/1 var(--ff-base); cursor: pointer;
  border: 1px solid transparent; transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-hi); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ink   { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-1px); }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { min-height: 54px; padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
/* On the accent section the primary button flips to solid white. */
.section--dark .btn--primary { background: #fff; color: var(--accent); }
.section--dark .btn--primary:hover { background: rgba(255,255,255,.9); }
.section--dark .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Image placeholder (until real screenshots) ---- */
.img-ph {
  background: repeating-linear-gradient(45deg, #EFEBE3, #EFEBE3 12px, #E7E2D8 12px, #E7E2D8 24px);
  border: 1px solid var(--border); border-radius: var(--radius-card);
  display: grid; place-items: center; min-height: 220px; color: var(--muted); font-size: .8rem;
  text-align: center; padding: 16px;
}
.img-ph::after { content: attr(data-label); }
.img-ph--phone { aspect-ratio: 9/19; max-width: 260px; margin-inline: auto; border-radius: 34px; }

/* ---- Header + drawer nav ---- */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border-2); backdrop-filter: none;
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); font-size: 1.12rem; letter-spacing: -.02em; }
.brand__mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(150deg, var(--accent-hi), var(--accent)); display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.brand__mark svg { width: 18px; height: 18px; }

.nav { display: none; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { padding: 8px 14px; border-radius: 999px; color: var(--ink); font-weight: 500; font-size: .95rem; transition: background var(--transition); }
.nav__links a:hover { background: var(--cream); }
.header__cta { display: none; align-items: center; gap: 10px; }

.hamburger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); cursor: pointer; flex: 0 0 auto; }
.hamburger span { width: 20px; height: 2px; background: var(--ink); margin: 0 auto; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 60px 0 0 0; z-index: 49; background: var(--ground);
  padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
  transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer a.drawer__link { display: block; padding: 15px 6px; font-size: 1.15rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border-2); }
.drawer__group-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 20px 6px 4px; }
.drawer .btn { margin-top: 20px; }
@media (prefers-reduced-motion: reduce) { .drawer { transition: none; } }

/* ---- Hero (centered, cream sheet, device + decor) ---- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 30px 0 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 46%, var(--cream) 100%);
  border-radius: 0 0 var(--radius-sheet) var(--radius-sheet);
}
.hero__inner { position: relative; z-index: 3; max-width: 840px; margin: 0 auto; }
.hero h1 { margin-bottom: 16px; }
.hero p.lead { margin: 0 auto 24px; max-width: 42ch; }
.hero .btn-row { justify-content: center; margin-bottom: 16px; }
.hero__note { font-size: .85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; justify-content: center; }
.hero__note b { color: var(--ink); font-weight: 600; }

/* trust pill */
.trust { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 6px 15px 6px 6px; font-size: .82rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.trust__ava { display: inline-flex; }
.trust__ava i { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff; margin-left: -9px; display: inline-block; background-size: cover; }
.trust__ava i:first-child { margin-left: 0; }
.trust__ava i:nth-child(1){ background: linear-gradient(135deg,#7C6CFF,#5A45FE); }
.trust__ava i:nth-child(2){ background: linear-gradient(135deg,#37C2A2,#1E9E63); }
.trust__ava i:nth-child(3){ background: linear-gradient(135deg,#FFB36B,#F0862B); }

/* decorative orbs + arc */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; pointer-events: none; }
.orb--1 { width: 460px; height: 460px; left: 50%; top: 130px; transform: translateX(-50%); background: radial-gradient(circle, rgba(90,69,254,.20), transparent 68%); }
.orb--2 { width: 260px; height: 260px; right: -60px; top: 40px; background: radial-gradient(circle, rgba(71,99,255,.16), transparent 70%); }
.hero__arc { position: absolute; z-index: 1; left: 50%; top: 250px; transform: translateX(-50%); width: 640px; max-width: 150%; opacity: .6; pointer-events: none; }

/* hero image art (mobitapp phone placeholder + pattern) */
.hero__art { position: relative; z-index: 3; width: min(440px, 94vw); margin: 22px auto 0; }
.hero__pattern { position: absolute; z-index: 1; left: 50%; top: 42%; transform: translate(-50%, -50%); width: min(760px, 176%); max-width: none; opacity: .85; pointer-events: none; }
.hero__phone { position: relative; z-index: 2; display: block; width: 100%; height: auto; margin-bottom: -3px; filter: drop-shadow(0 24px 44px rgba(22,21,37,.22)); }

/* device / phone mockup (used in feature rows) */
.hero__device { position: relative; z-index: 3; width: min(272px, 76vw); margin: 34px auto 0; }
.device { position: relative; border-radius: 42px; background: #0C0C15; padding: 9px; box-shadow: 0 34px 70px rgba(22,21,37,.30), 0 8px 20px rgba(22,21,37,.14); }
.device::before { content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 110px; height: 20px; background: #0C0C15; border-radius: 0 0 14px 14px; z-index: 4; }
.device__screen { border-radius: 34px; overflow: hidden; background: #F4F1EB; }

/* app screen: Lane queue */
.scr { text-align: left; height: 468px; display: flex; flex-direction: column; font-size: 14px; }
.scr__top { padding: 30px 16px 12px; background: #fff; border-bottom: 1px solid var(--border-2); display: flex; align-items: center; justify-content: space-between; }
.scr__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: .92rem; }
.scr__brand .d { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(90,69,254,.16); }
.scr__tag { font-size: .68rem; font-weight: 600; color: var(--muted); background: var(--cream); padding: 5px 10px; border-radius: 999px; }
.scr__list { padding: 12px; display: grid; gap: 9px; overflow: hidden; flex: 1; align-content: start; }
.qrow { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border-2); border-radius: 14px; padding: 10px; box-shadow: 0 1px 2px rgba(22,21,37,.04); }
.plate { font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; font-weight: 700; font-size: .66rem; letter-spacing: .04em; background: var(--ink); color: #fff; padding: 6px 7px; border-radius: 6px; white-space: nowrap; }
.qrow__info { flex: 1; min-width: 0; }
.qrow__info b { display: block; font-size: .78rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qrow__info span { font-size: .66rem; color: var(--muted); }
.spill { font-size: .6rem; font-weight: 700; padding: 4px 8px; border-radius: 999px; white-space: nowrap; letter-spacing: .02em; }
.spill--wash { background: var(--accent-tint); color: var(--accent); }
.spill--ready { background: #E3F7EC; color: #17925A; }
.spill--queued { background: #F0F0F4; color: #7C7C88; }
.scr__cta { margin: 4px 12px 14px; background: var(--accent); color: #fff; text-align: center; padding: 13px; border-radius: 14px; font-weight: 600; font-size: .85rem; }

/* app screen: SMS */
.scr--sms { background: #ECEAF4; }
.sms { padding: 46px 14px 14px; display: grid; gap: 12px; }
.sms__b { max-width: 82%; padding: 11px 13px; border-radius: 16px; font-size: .8rem; line-height: 1.45; }
.sms__b--in { background: #fff; color: var(--ink); border-bottom-left-radius: 5px; box-shadow: 0 1px 2px rgba(22,21,37,.06); }
.sms__b--out { background: var(--accent); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.sms__meta { font-size: .62rem; color: var(--muted); text-align: center; }

/* report card mockup (feature row) */
.report { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 18px; box-shadow: var(--shadow-md); text-align: left; max-width: 340px; margin: 0 auto; }
.report__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.report__kpi { background: var(--cream-2); border-radius: 12px; padding: 10px; }
.report__kpi b { display: block; font-size: 1.05rem; color: var(--ink); letter-spacing: -.02em; }
.report__kpi span { font-size: .62rem; color: var(--muted); }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding-top: 6px; }
.bars i { flex: 1; background: linear-gradient(180deg, var(--accent-hi), var(--accent)); border-radius: 6px 6px 3px 3px; display: block; opacity: .9; }
.bars i:nth-child(6){ background: var(--ink); }
.report__x { display: flex; gap: 8px; margin-top: 8px; }
.report__x span { flex: 1; text-align: center; font-size: .58rem; color: var(--muted); }

/* floating chips */
.chip { position: absolute; z-index: 5; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 9px 12px; font-size: .74rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.chip__ic { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; flex: 0 0 auto; }
.chip__ic svg { width: 15px; height: 15px; }
.chip__ic--g { background: #E3F7EC; color: #17925A; }
.chip__ic--v { background: var(--accent-tint); color: var(--accent); }
.chip__ic--a { background: #FFF0E0; color: #F0862B; }
.chip--a { top: 54px; right: -14px; }
.chip--b { bottom: 92px; left: -16px; }
.chip small { display: block; font-size: .62rem; color: var(--muted); font-weight: 500; }
@media (max-width: 380px) { .chip--a { right: -8px; } .chip--b { left: -8px; } .chip { font-size: .68rem; padding: 8px 10px; } }

/* feature-row art wrapper: give the phone a soft glow panel */
.frow__art { position: relative; }
.frow__art .device { width: min(250px, 66vw); margin: 0 auto; }
.frow__art .orb { filter: blur(58px); }

/* ---- active nav + pricing calculator ---- */
.nav__links a[aria-current="page"] { background: var(--cream); color: var(--ink); }
.calc { max-width: 460px; margin: 26px auto 8px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-sm); }
.calc__stepper { display: inline-flex; align-items: center; gap: 12px; }
.calc__btn { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border); background: var(--white); font-size: 1.35rem; line-height: 1; cursor: pointer; color: var(--ink); display: grid; place-items: center; }
.calc__btn:hover { border-color: var(--ink); }
.calc__n { font-weight: 700; font-size: 1.15rem; min-width: 22px; text-align: center; color: var(--ink); }
.calc__total b { font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.calc__total span { color: var(--muted); font-size: .9rem; }

/* ---- Trusted clients logo band ---- */
.clients { padding: 34px 0 28px; background: var(--ground); }
.clients__label { text-align: center; font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.clients__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 28px; }
.clientlogo { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); opacity: .68; }
.clientlogo svg { width: 25px; height: 25px; flex: 0 0 auto; }
.clientlogo span { font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; white-space: nowrap; }
@media (min-width: 768px) { .clients__row { gap: 22px 46px; } .clients { padding: 44px 0 34px; } }

/* ---- Trust / value strip ---- */
.strip { padding: 22px 0; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.strip__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 12px; text-align: center; }
.strip__item b { display: block; color: var(--ink); font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }
.strip__item span { font-size: .82rem; color: var(--muted); }

/* ---- Feature card grid ---- */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: 1fr; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 22px; min-width: 0; transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--panel); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 7px; }
.card p { font-size: .95rem; color: var(--ink-soft); }
.card a.card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--accent); font-weight: 600; font-size: .9rem; }

/* ---- How it works ---- */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px; }
.step__num { counter-increment: step; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700; }
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }
.step p { font-size: .95rem; }

/* ---- Feature rows (alternating phone mockups) ---- */
.frow { display: grid; gap: 24px; align-items: center; padding: 20px 0; }
.frow__body .eyebrow { margin-bottom: 10px; }
.frow__body h2 { margin-bottom: 12px; }
.frow__list { margin-top: 16px; display: grid; gap: 10px; }
.frow__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; }
.frow__list svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }

/* ---- Stats band ---- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 12px; text-align: center; }
.stat b { display: block; font-size: clamp(1.9rem, 7vw, 2.8rem); font-weight: 700; letter-spacing: -.03em; color: #fff; }
.stat span { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ---- Pricing ---- */
.price-card { max-width: 460px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sheet); padding: 28px; box-shadow: var(--shadow-md); }
.price-card__amt { display: flex; align-items: baseline; gap: 6px; margin: 6px 0 4px; }
.price-card__amt b { font-size: 3rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink); }
.price-card__amt span { color: var(--muted); font-weight: 500; }
.price-list { margin: 18px 0; display: grid; gap: 11px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; }
.price-list svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
.price-card .btn { margin-top: 6px; }
.price-fine { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---- FAQ accordion ---- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: transform var(--transition); }
.faq__q[aria-expanded="true"]::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__a p { padding: 0 0 20px; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---- Final CTA ---- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin: 0 auto 22px; max-width: 46ch; }
.cta-band .btn-row { justify-content: center; }

/* ---- Footer ---- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 48px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px; }
.footer__brandcol { grid-column: 1 / -1; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer__brandcol p { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; padding: 6px 0; font-size: .92rem; color: rgba(255,255,255,.7); }
.footer__col a:hover { color: #fff; }
.footer__base { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer__base a { color: rgba(255,255,255,.55); }

/* ---- Cookie banner ---- */
.cookie { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; background: var(--ink); color: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-lg); display: none; }
.cookie.show { display: block; }
.cookie p { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 12px; max-width: none; }
.cookie a { color: #fff; text-decoration: underline; }
.cookie__row { display: flex; gap: 10px; }
.cookie .btn { min-height: 42px; padding: 10px 18px; font-size: .9rem; flex: 1; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---- Form ---- */
.form { max-width: 520px; }
.form label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.form .field { margin-bottom: 16px; }
.form input, .form textarea, .form select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px; transition: border-color var(--transition);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); }
.form.shake { animation: shake .4s; }
@keyframes shake { 25%{transform:translateX(-6px)} 50%{transform:translateX(6px)} 75%{transform:translateX(-4px)} }
@media (prefers-reduced-motion: reduce) { .form.shake { animation: none; } }
.form__ok { background: var(--accent-tint); color: var(--accent); border-radius: 12px; padding: 14px; font-weight: 600; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ============================================================================
   Tablet / desktop enhancements
   ========================================================================== */
@media (min-width: 768px) {
  .container { padding: 0 28px; }
  .section { padding: 96px 0; }
  .section--alt, .section--tint, .section--dark { margin: 12px; }

  .nav { display: block; }
  .header__cta { display: flex; }
  .hamburger, .drawer { display: none; }

  .hero { padding: 52px 0 0; }
  .hero p.lead { max-width: 52ch; font-size: 1.2rem; }
  .hero__art { width: 540px; margin-top: 30px; }
  .hero__device { width: 300px; margin-top: 44px; }
  .chip--a { top: 90px; right: -60px; }
  .chip--b { bottom: 120px; left: -70px; }
  .frow__art .device { width: 280px; }

  .strip__row { grid-template-columns: repeat(4, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }

  .frow { grid-template-columns: 1fr 1fr; gap: 48px; }
  .frow--flip .frow__art { order: 2; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer__brandcol { grid-column: auto; }

  .cookie { max-width: 420px; left: auto; right: 20px; bottom: 20px; }
}

@media (min-width: 1024px) {
  .section { padding: 110px 0; }
  .hero h1 { font-size: clamp(2.6rem, 4.4vw, 4rem); }
}
