/* ==========================================================================
   Ready Set Websites - design system
   Palette derived from RSW_logo.png: deep ink + "ready-set-GO" green.
   ========================================================================== */
:root{
  --ink:#0f1a18;            /* deep green-black from logo */
  --ink-soft:#22312d;
  --muted:#454f4a;         /* darkened for AA contrast on the muted background */
  --bg:#c0cbb2;             /* muted sage, easy on the eyes */
  --card:#ffffff;
  --line:#e2e9df;
  --go:#48c728;             /* logo green - highlights & "go" moments */
  --go-ink:#1f7a12;         /* darker green, safe for text on light bg */
  --go-soft:#e9f8e1;
  --go-glow:rgba(72,199,40,.28);
  --danger:#c2452d;

  --font-display:"Bricolage Grotesque",system-ui,sans-serif;
  --font-body:"Figtree",system-ui,-apple-system,"Segoe UI",sans-serif;

  --radius:20px;
  --radius-sm:12px;
  --shadow:0 1px 2px rgba(15,26,24,.04),0 8px 24px rgba(15,26,24,.07);
  --shadow-lift:0 2px 6px rgba(15,26,24,.05),0 24px 50px rgba(15,26,24,.16);
  --space-section:clamp(4.5rem,9vw,7.5rem);
  --wrap:1120px;
  --ease:cubic-bezier(.22,.7,.3,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:var(--font-body);font-size:1.0625rem;line-height:1.65;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img{max-width:100%;display:block}

/* subtle film grain for depth - fixed + non-interactive, GPU-cheap */
body::before{content:"";position:fixed;inset:0;z-index:2;pointer-events:none;opacity:.028;mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")}
a{color:var(--go-ink)}
h1,h2,h3,h4{font-family:var(--font-display);line-height:1.08;margin:0 0 .6em;letter-spacing:-.01em;text-wrap:balance}
h1{font-size:clamp(2.7rem,7.4vw,4.7rem);font-weight:800}
h2{font-size:clamp(1.9rem,4.4vw,2.9rem);font-weight:800}
h3{font-size:1.3rem;font-weight:700}
p{margin:0 0 1em;text-wrap:pretty}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 clamp(1.1rem,4vw,2rem)}
.section{padding:var(--space-section) 0}
.section-tint{background:var(--card)}
.section-dark{background:var(--ink);color:#eef4ec}
.section-dark h2,.section-dark h3{color:#fff}
.section-dark p{color:#c3cfc8}
.lede{font-size:clamp(1.1rem,2.4vw,1.3rem);color:var(--muted);max-width:44ch}
.center{text-align:center}
.center .lede{margin-inline:auto}

/* skip link + focus */
.skip{position:absolute;left:-999px;top:0;background:var(--ink);color:#fff;padding:.7rem 1.2rem;border-radius:0 0 12px 0;z-index:200}
.skip:focus{left:0}
:focus-visible{outline:3px solid var(--go);outline-offset:3px;border-radius:6px}

/* --- ready·set·go eyebrow (signature motif) ------------------------------ */
.eyebrow{display:flex;align-items:center;gap:.55rem;font-weight:700;font-size:.82rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--go-ink);margin-bottom:1rem}
.eyebrow .dots{display:inline-flex;gap:5px}
.eyebrow .dots i{width:9px;height:9px;border-radius:50%;background:#c8d4c6}
.eyebrow .dots i:first-child{background:#e5322d}   /* ready - red */
.eyebrow .dots i:nth-child(2){background:#f5a623}  /* set - orange */
.eyebrow .dots i:last-child{background:var(--go);box-shadow:0 0 0 0 var(--go-glow);animation:go-pulse 2.6s infinite}  /* go - green */
.section-dark .eyebrow{color:var(--go)}
.center .eyebrow{justify-content:center}
@keyframes go-pulse{0%{box-shadow:0 0 0 0 var(--go-glow)}70%{box-shadow:0 0 0 9px rgba(72,199,40,0)}100%{box-shadow:0 0 0 0 rgba(72,199,40,0)}}

/* --- buttons -------------------------------------------------------------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-display);font-weight:700;font-size:1.02rem;text-decoration:none;
  border-radius:999px;padding:.85rem 1.7rem;border:2px solid transparent;cursor:pointer;
  transition:transform .2s var(--ease),box-shadow .2s var(--ease),background .2s}
.btn-go{background:linear-gradient(180deg,#5ad63a,#3fb821);color:var(--ink);
  box-shadow:0 6px 20px var(--go-glow),inset 0 1px 0 rgba(255,255,255,.35)}
.btn-go:hover{transform:translateY(-2px);box-shadow:0 12px 26px var(--go-glow),inset 0 1px 0 rgba(255,255,255,.35)}
.btn-ink{background:var(--ink);color:#fff}
.btn-ink:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift)}
.btn-ghost{background:transparent;border-color:var(--ink);color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:#fff}
.section-dark .btn-ghost{border-color:#e6efe3;color:#fff}
.section-dark .btn-ghost:hover{background:#fff;color:var(--ink)}
.btn:active{transform:translateY(0) scale(.98)}
.btn[disabled]{opacity:.55;cursor:wait;transform:none}

/* --- header ---------------------------------------------------------------- */
.site-header{position:sticky;top:0;z-index:100;background:rgba(192,203,178,.86);
  backdrop-filter:blur(12px);border-bottom:1px solid transparent;transition:border-color .25s,box-shadow .25s}
.site-header.scrolled{border-color:var(--line);box-shadow:0 6px 24px rgba(15,26,24,.06)}
.nav{display:flex;align-items:center;gap:1.2rem;padding:.7rem 0}
.brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;color:var(--ink);margin-right:auto}
.brand img{width:44px;height:44px;transition:transform .25s var(--ease)}
.site-header.scrolled .brand img{transform:scale(.82)}
.brand b{font-family:var(--font-display);font-weight:800;font-size:1.12rem;letter-spacing:-.01em;white-space:nowrap}
.nav-links{display:flex;align-items:center;gap:1.35rem;list-style:none;margin:0;padding:0}
.nav-links a{color:var(--ink-soft);text-decoration:none;font-weight:600;font-size:.98rem}
.nav-links a:hover{color:var(--go-ink)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:.5rem;margin-left:auto}
.nav-toggle span{display:block;width:24px;height:2.5px;background:var(--ink);margin:5px 0;border-radius:2px;transition:transform .25s var(--ease),opacity .2s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

/* --- hero ------------------------------------------------------------------ */
.hero{position:relative;padding:clamp(4rem,9vw,7rem) 0 clamp(3rem,7vw,5.5rem);overflow:hidden;
  background:radial-gradient(120% 95% at 88% -12%,rgba(72,199,40,.11),transparent 58%)}
.hero h1 .line{display:block;opacity:0;transform:translateY(26px);animation:rise .8s var(--ease) forwards}
.hero h1 .line:nth-child(2){animation-delay:.14s}
.hero h1 .go-word{color:var(--go-ink);position:relative;white-space:nowrap}
.hero h1 .go-word::after{content:"";position:absolute;left:0;bottom:.06em;height:.16em;width:100%;
  background:var(--go);border-radius:99px;transform:scaleX(0);transform-origin:left;animation:draw .7s .75s var(--ease) forwards;z-index:-1}
.hero .lede,.hero .hero-cta,.hero .trust{opacity:0;transform:translateY(18px);animation:rise .8s var(--ease) forwards}
.hero .lede{animation-delay:.3s}
.hero .hero-cta{animation-delay:.44s;display:flex;flex-wrap:wrap;gap:.9rem;margin:1.8rem 0 1.2rem}
.hero .trust{animation-delay:.58s;color:var(--muted);font-size:.95rem;display:flex;align-items:center;gap:.5rem}
@keyframes rise{to{opacity:1;transform:none}}
@keyframes draw{to{transform:scaleX(1)}}
.blob{position:absolute;border-radius:50%;filter:blur(60px);z-index:-1;animation:float 14s ease-in-out infinite}
.blob-1{width:420px;height:420px;background:rgba(72,199,40,.16);top:-120px;right:-100px}
.blob-2{width:320px;height:320px;background:rgba(15,26,24,.07);bottom:-140px;left:-80px;animation-delay:-6s}
@keyframes float{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-24px,26px) scale(1.06)}}

/* --- marquee ---------------------------------------------------------------- */
.marquee{border-block:1px solid var(--line);background:var(--card);overflow:hidden;padding:.85rem 0}
.marquee .track{display:flex;gap:2.6rem;width:max-content;animation:marquee 26s linear infinite;
  font-family:var(--font-display);font-weight:700;color:var(--ink-soft);white-space:nowrap}
.marquee .track span::after{content:"";display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--go);margin-left:2.6rem;vertical-align:middle}
@keyframes marquee{to{transform:translateX(-50%)}}

/* --- reveal on scroll ------------------------------------------------------- */
.reveal{opacity:0;transform:translateY(26px);filter:blur(6px);transition:opacity .7s var(--ease),transform .7s var(--ease),filter .7s var(--ease)}
.reveal.in{opacity:1;transform:none;filter:none}
.stagger>*{opacity:0;transform:translateY(24px);filter:blur(5px);transition:opacity .6s var(--ease),transform .6s var(--ease),filter .6s var(--ease)}
.stagger.in>*{opacity:1;transform:none;filter:none}
.stagger.in>*:nth-child(2){transition-delay:.09s}
.stagger.in>*:nth-child(3){transition-delay:.18s}
.stagger.in>*:nth-child(4){transition-delay:.27s}
.stagger.in>*:nth-child(5){transition-delay:.36s}
.stagger.in>*:nth-child(6){transition-delay:.45s}

/* --- cards + grids ----------------------------------------------------------- */
.grid{display:grid;gap:1.4rem}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{background:linear-gradient(180deg,#ffffff,#f8fbf6);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.7rem;box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.9);transition:transform .25s var(--ease),box-shadow .25s var(--ease)}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift),inset 0 1px 0 rgba(255,255,255,.9)}
.card h3{margin-top:.2rem}
.tag{display:inline-block;background:var(--go-soft);color:var(--go-ink);font-weight:700;
  font-size:.8rem;border-radius:999px;padding:.28rem .8rem;margin-bottom:.8rem}
.ticks{list-style:none;margin:0 0 1.2rem;padding:0}
.ticks li{padding-left:1.6rem;position:relative;margin:.45rem 0;color:var(--ink-soft)}
.ticks li::before{content:"";position:absolute;left:0;top:.48em;width:.95em;height:.95em;border-radius:50%;
  background:var(--go-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%231f7a12" d="M6.4 12 2.7 8.3l1.4-1.4 2.3 2.3 5.5-5.5 1.4 1.4z"/></svg>') center/70% no-repeat}
.section-dark .ticks li{color:#c3cfc8}   /* light text on dark cards, was near-black --ink-soft */
.note{color:var(--muted);font-size:.95rem}

/* package cards */
.pkg{display:flex;flex-direction:column}
.pkg .btn{margin-top:auto}
.pkg-feature{border:2px solid var(--go);position:relative;
  box-shadow:0 0 0 6px rgba(72,199,40,.09),var(--shadow-lift),inset 0 1px 0 rgba(255,255,255,.9)}
.pkg-feature::before{content:"Most popular";position:absolute;top:-13px;left:1.4rem;background:var(--go);
  color:var(--ink);font-weight:700;font-size:.78rem;padding:.2rem .8rem;border-radius:999px}

/* --- stats strip -------------------------------------------------------------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.stats b{display:block;font-family:var(--font-display);font-size:clamp(1.9rem,4vw,2.6rem);font-weight:800;color:var(--go);font-variant-numeric:tabular-nums}
.stats span{color:#b9c6bf;font-size:.92rem}

/* --- how it works: the GO line ------------------------------------------------- */
.steps{position:relative;max-width:760px;margin:0 auto}
.steps::before{content:"";position:absolute;left:23px;top:10px;bottom:10px;width:4px;background:var(--line);border-radius:99px}
.steps .go-line{position:absolute;left:23px;top:10px;width:4px;height:0;background:var(--go);border-radius:99px;transition:height .15s linear}
.step{position:relative;padding:0 0 2.4rem 4.4rem}
.step:last-child{padding-bottom:0}
.step .n{position:absolute;left:0;top:0;width:50px;height:50px;border-radius:50%;background:var(--card);
  border:3px solid var(--line);display:grid;place-items:center;font-family:var(--font-display);
  font-weight:800;color:var(--muted);transition:border-color .3s,color .3s,background .3s;z-index:1}
.step.lit .n{border-color:var(--go);color:var(--go-ink);background:var(--go-soft)}
.step h3{margin-bottom:.25rem}
.step p{color:var(--muted);max-width:52ch}

/* --- forms ----------------------------------------------------------------------- */
.form-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:clamp(1.4rem,4vw,2.4rem);box-shadow:var(--shadow);max-width:820px;margin:0 auto}
.field{margin-bottom:1.1rem}
.field label{display:block;font-weight:700;margin-bottom:.35rem;font-size:.98rem}
.field .hint{font-weight:400;color:var(--muted);font-size:.86rem}
input[type=text],input[type=email],input[type=tel],input[type=url],input[type=number],select,textarea{
  width:100%;font:inherit;color:var(--ink);background:var(--bg);border:1.5px solid var(--line);
  border-radius:var(--radius-sm);padding:.75rem .95rem;transition:border-color .2s,box-shadow .2s}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--go);box-shadow:0 0 0 4px var(--go-glow)}
textarea{min-height:120px;resize:vertical}
.choices{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:.5rem}
.choice{display:flex;align-items:flex-start;gap:.55rem;background:var(--bg);border:1.5px solid var(--line);
  border-radius:var(--radius-sm);padding:.6rem .8rem;cursor:pointer;font-weight:600;font-size:.95rem;transition:border-color .2s,background .2s}
.choice:hover{border-color:var(--go)}
.choice input{margin-top:.22rem;accent-color:var(--go-ink)}
.choice:has(input:checked){border-color:var(--go);background:var(--go-soft)}
.consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.95rem;color:var(--ink-soft)}
.consent input{margin-top:.3rem;accent-color:var(--go-ink)}
.field-error{color:var(--danger);font-size:.86rem;margin-top:.3rem;display:none}
.field.invalid input,.field.invalid select,.field.invalid textarea{border-color:var(--danger)}
.field.invalid .field-error{display:block}
.form-status{display:none;margin-top:1rem;border-radius:var(--radius-sm);padding:1rem 1.2rem;font-weight:600}
.form-status.ok{display:block;background:var(--go-soft);color:var(--go-ink)}
.form-status.err{display:block;background:#fbeae6;color:var(--danger)}
.form-status a{color:inherit}
/* honeypot: hidden from humans, present for bots */
.hp-wrap{position:absolute !important;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

/* star rating */
.stars{display:inline-flex;flex-direction:row-reverse;gap:.15rem;font-size:1.9rem;line-height:1}
.stars input{position:absolute;opacity:0;width:1px;height:1px}
.stars label{cursor:pointer;color:#cfd9cc;transition:color .15s,transform .15s}
.stars label:hover,.stars label:hover~label,
.stars input:checked~label{color:var(--go)}
.stars label:hover{transform:scale(1.15)}
.stars input:focus-visible~label{outline:3px solid var(--go);border-radius:4px}

/* --- example mockups (pure CSS, honestly-labelled concepts) --------------------- */
.mock{border-radius:var(--radius-sm);overflow:hidden;border:1px solid var(--line);margin-bottom:1rem;background:#fff}
.mock .bar{display:flex;gap:5px;padding:.5rem .7rem;background:#eef2ea;border-bottom:1px solid var(--line)}
.mock .bar i{width:9px;height:9px;border-radius:50%;background:#cfd9cc}
.mock .bar i:first-child{background:var(--go)}
.mock .body{height:140px;padding:.8rem;display:flex;flex-direction:column;gap:.5rem}
.mock .b{border-radius:6px;background:#e8eee4}
.mock .b.go{background:var(--go-soft)}
.mock .b.ink{background:var(--ink)}
.mock-hero .body .b:nth-child(1){height:52%;background:linear-gradient(120deg,var(--go-soft),#dff0d5)}
.mock-hero .body .b:nth-child(2){height:14%;width:70%}
.mock-hero .body .b:nth-child(3){height:14%;width:40%;background:var(--go)}
.mock-menu .body{flex-direction:row;flex-wrap:wrap}
.mock-menu .body .b{flex:1 1 40%;height:44%}
.mock-split .body{flex-direction:row}
.mock-split .body .b{flex:1;height:100%}
.mock-gallery .body{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:1fr 1fr}
.mock-gallery .body .b{height:auto}
.mock-band .body .b:nth-child(1){height:30%;background:var(--ink)}
.mock-band .body .b:nth-child(2){height:40%}
.mock-band .body .b:nth-child(3){height:20%;width:55%;background:var(--go)}
.mock-list .body .b{height:22%}
.mock-list .body .b:nth-child(odd){width:85%}
.demo-badge{font-size:.75rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.mock-shot{display:block;width:100%;height:150px;object-fit:cover;transition:transform .5s var(--ease)}
.card:hover .mock-shot{transform:scale(1.05)}
/* example cards: push the "View Example" button to the bottom so they align across a row */
#examples .card{display:flex;flex-direction:column}
#examples .card .btn{margin-top:auto;align-self:flex-start}

/* --- reviews ------------------------------------------------------------------ */
.quote{font-family:var(--font-display);font-size:1.22rem;font-weight:600;line-height:1.4}
.quote-who{color:var(--muted);font-size:.9rem;margin-top:.8rem}

/* --- FAQ ------------------------------------------------------------------------ */
.faq{max-width:780px;margin:0 auto}
.faq details{background:var(--card);border:1px solid var(--line);border-radius:var(--radius-sm);
  margin-bottom:.7rem;overflow:hidden}
.faq summary{cursor:pointer;font-weight:700;font-family:var(--font-display);font-size:1.05rem;
  padding:1.05rem 3rem 1.05rem 1.25rem;list-style:none;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:1.2rem;top:50%;translate:0 -50%;
  font-size:1.5rem;color:var(--go-ink);transition:rotate .25s var(--ease)}
.faq details[open] summary::after{rotate:45deg}
.faq .a{padding:0 1.25rem 1.15rem;color:var(--ink-soft)}

/* --- whatsapp bubble -------------------------------------------------------------- */
.wa-bubble{position:fixed;right:18px;bottom:18px;z-index:90;width:58px;height:58px;border-radius:50%;
  background:#25d366;display:grid;place-items:center;box-shadow:0 10px 26px rgba(18,140,60,.4);
  transition:transform .2s var(--ease)}
.wa-bubble:hover{transform:scale(1.08)}
.wa-bubble svg{width:30px;height:30px;fill:#fff}

/* --- footer -------------------------------------------------------------------------- */
.site-footer{background:var(--ink);color:#c3cfc8;padding:3.5rem 0 2rem}
.site-footer .cols{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.site-footer h4{color:#fff;font-family:var(--font-display);margin:0 0 .8rem}
.site-footer a{color:#c3cfc8;text-decoration:none}
.site-footer a:hover{color:var(--go)}
.site-footer ul{list-style:none;margin:0;padding:0}
.site-footer li{margin:.45rem 0}
.site-footer .fineprint{border-top:1px solid rgba(255,255,255,.12);padding-top:1.3rem;font-size:.86rem;
  display:flex;flex-wrap:wrap;gap:.8rem;justify-content:space-between;color:#8fa098}
.site-footer .logo-full{width:min(260px,80%);height:auto;border-radius:var(--radius-sm);margin-bottom:1rem}

/* --- onboarding wizard --------------------------------------------------------------- */
.wizard-progress{display:flex;align-items:center;gap:.4rem;margin-bottom:1.6rem}
.wizard-progress .p-dot{flex:1;height:7px;border-radius:99px;background:var(--line);transition:background .3s}
.wizard-progress .p-dot.done{background:var(--go)}
.wiz-step{display:none;animation:rise .45s var(--ease)}
.wiz-step.active{display:block}
.wiz-nav{display:flex;justify-content:space-between;gap:1rem;margin-top:1.6rem}
.step-count{font-weight:700;color:var(--muted);font-size:.9rem;margin-bottom:.4rem}

/* --- misc ------------------------------------------------------------------------------ */
.banner-go{background:linear-gradient(120deg,var(--go-soft),#f3fbee);border:1px solid #d6eec9;
  border-radius:var(--radius);padding:1.6rem;display:flex;flex-wrap:wrap;align-items:center;gap:1.2rem;justify-content:space-between}
.price-line{font-family:var(--font-display);font-weight:800;font-size:1.4rem;color:var(--go-ink);font-variant-numeric:tabular-nums}
.modal[hidden]{display:none}
.modal{position:fixed;inset:0;z-index:150;display:grid;place-items:center;padding:1rem;background:rgba(15,26,24,.55)}
.modal .modal-card{background:var(--card);border-radius:var(--radius);max-width:440px;padding:2rem;text-align:center;box-shadow:var(--shadow-lift)}

/* --- print-only signature block (service agreement) ------------------------------------- */
.print-block{display:none}

/* --- responsive ------------------------------------------------------------------------- */
@media (max-width:960px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .stats{grid-template-columns:repeat(2,1fr);row-gap:1.6rem}
  .site-footer .cols{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:var(--card);
    border-bottom:1px solid var(--line);flex-direction:column;align-items:flex-start;
    padding:1rem clamp(1.1rem,4vw,2rem) 1.4rem;gap:1rem;box-shadow:var(--shadow)}
  .nav-links.open{display:flex}
  .nav-toggle{display:block}
  .nav>.btn{display:none}
  .site-footer .cols{grid-template-columns:1fr}
  .brand b{font-size:1rem}
}

/* --- reduced motion ------------------------------------------------------------------------ */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001s !important;animation-iteration-count:1 !important;transition-duration:.001s !important}
  .hero h1 .line,.hero .lede,.hero .hero-cta,.hero .trust{opacity:1;transform:none}
  .reveal,.stagger>*{opacity:1;transform:none;filter:none}
  .marquee .track{animation:none}
}

/* --- print (policies/agreement) -------------------------------------------------------------- */
@media print{
  .site-header,.site-footer,.wa-bubble,.btn,.no-print{display:none !important}
  body{background:#fff;color:#000}
  .print-block{display:block;page-break-inside:avoid;margin-top:2.5rem}
  .sig-row{display:flex;gap:3rem;margin-top:2rem}
  .sig-row>div{flex:1}
  .sig-line{border-bottom:1.5px solid #000;height:2.2rem;margin-bottom:.3rem}
}
