/* ───────────────────────────────────────────────────────────────────────
   Get Fixed — website design system
   Mirrors the section architecture of the FreeFlo reference, rebuilt in the
   locked Get Fixed brand. Tokens first, then components in source order.
   ─────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* brand */
  --ink:      #292828;
  --ink-2:    #1c1b1b;
  --orange:   #F75801;
  --orange-d: #d44a00;
  --white:    #ffffff;
  --paper:    #F4F3F1;   /* off-white section ground */
  --paper-2:  #ECEAE6;
  --line:     #e2dfda;
  --line-d:   #3a3938;   /* hairline on dark */
  --muted:    #6b6764;

  /* type */
  --display: 'Archivo Black', system-ui, sans-serif;
  --body:    'Archivo', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* scale / rhythm */
  --container: 1200px;
  --gutter: 24px;
  --section-y: 100px;
  --radius: 4px;       /* the brand is squared-off; keep radii tight */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

/* ── shared type ──────────────────────────────────────────────────────── */
.kicker {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 28px; height: 3px; background: var(--orange); }
.h1 { font-family: var(--display); text-transform: uppercase; line-height: 0.96;
  font-size: clamp(40px, 6vw, 78px); letter-spacing: -0.01em; margin: 0; }
.h2 { font-family: var(--display); text-transform: uppercase; line-height: 1.0;
  font-size: clamp(30px, 4vw, 50px); letter-spacing: -0.005em; margin: 0; }
.h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.05;
  font-size: 22px; margin: 0; }
.lead { font-size: 19px; color: var(--muted); max-width: 56ch; }
.orange { color: var(--orange); }

/* ── buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 15px 26px; border: 2px solid transparent; border-radius: var(--radius);
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-d); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; border-color: currentColor; }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-link { font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--orange); padding-bottom: 3px; }

/* ── logo lockup (text-built, matches the approved mark) ──────────────── */
.lockup { display: inline-flex; flex-direction: column; line-height: 1; }
.lockup .wordmark { font-family: var(--display); text-transform: uppercase;
  display: flex; align-items: baseline; letter-spacing: -0.005em; }
.lockup .wordmark .get { color: var(--ink); }
.lockup .wordmark .fixed { color: var(--orange); margin-left: 0.28em; }
.lockup .wordmark .ca { color: var(--orange); font-size: 0.32em; margin-left: 2px; align-self: flex-end; position: relative; bottom: 0.12em; }
.lockup.on-dark .wordmark .get { color: #fff; }
.lockup .sub { font-family: var(--display); text-transform: uppercase; color: var(--ink);
  letter-spacing: 0.34em; margin-top: 6px; }
.lockup.on-dark .sub { color: #fff; }

/* FX badge */
.fx { display: inline-flex; align-items: center; justify-content: center; position: relative;
  background: var(--ink); color: #fff; font-family: var(--display); }
.fx .x { color: var(--orange); }
.fx::after { content: ""; position: absolute; left: 26%; right: 26%; bottom: 18%; height: 3px; background: var(--orange); }

/* ── top utility bar ──────────────────────────────────────────────────── */
.topbar { background: var(--ink-2); color: #cfcdca; font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; gap: 24px; height: 42px; }
.topbar a:hover { color: #fff; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: #36c46a; box-shadow: 0 0 0 3px rgba(54,196,106,.18); }
.topbar .push { margin-left: auto; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-sep { width: 1px; height: 16px; background: #3a3938; }

/* ── header / nav ─────────────────────────────────────────────────────── */
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; gap: 28px; height: 84px; }
.nav { display: flex; align-items: center; gap: 24px; margin-left: 12px; }
.nav a { font-weight: 600; font-size: 15.5px; display: inline-flex; align-items: center; gap: 6px; }
.nav a:hover { color: var(--orange); }
.nav .caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-bottom: 3px; opacity: .55; }
.header .head-cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header .phone { font-family: var(--display); font-size: 19px; color: var(--ink); }

/* ── hero ─────────────────────────────────────────────────────────────── */
.hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  padding-top: 78px; padding-bottom: 78px; align-items: center; }
.hero .h1 { color: #fff; }
.hero .rot { color: var(--orange); display: inline-block; }
.hero .lead { color: #b9b6b2; }
.hero .cta-row { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line-d); }
.hero-stats .n { font-family: var(--display); font-size: 30px; color: #fff; }
.hero-stats .l { font-size: 13px; color: #8f8c89; text-transform: uppercase; letter-spacing: .08em; }

/* quote form card */
.quote-card { background: #fff; color: var(--ink); border-radius: 6px; padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.quote-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 22px; margin: 0 0 4px; }
.quote-card p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.field .ctrl { height: 46px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper);
  display: flex; align-items: center; padding: 0 14px; color: #9a9794; font-size: 14.5px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .chip { font-size: 13px; font-weight: 600; padding: 8px 12px; border: 1.5px solid var(--line); border-radius: 999px; color: var(--muted); cursor: pointer; }
.chips .chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── trust strip ──────────────────────────────────────────────────────── */
.trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust .wrap { display: flex; align-items: center; gap: 40px; height: 92px; flex-wrap: wrap; }
.trust .tlabel { font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.trust .badges { display: flex; align-items: center; gap: 30px; margin-left: auto; flex-wrap: wrap; }
.trust .badge { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 700; }
.trust .stars { color: var(--orange); letter-spacing: 2px; }

/* ── builder-backed differentiator band ───────────────────────────────── */
.bbacked { background: #fff; color: var(--ink); border-bottom: 1px solid var(--line); }
.bbacked .wrap { position: relative; display: flex; align-items: center; gap: 54px;
  padding-block: 64px; flex-wrap: wrap; }
.bb-seal { flex: none; width: 168px; height: 168px; border-radius: 50%;
  border: 2px solid var(--orange); background: rgba(247,88,1,.06);
  display: grid; place-items: center; text-align: center; gap: 0; position: relative; }
.bb-seal::after { content: ""; position: absolute; inset: 11px; border-radius: 50%;
  border: 1px dashed rgba(247,88,1,.5); }
.bb-seal .lic { font-family: var(--mono); font-size: 10.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--orange); }
.bb-seal .lic.top { align-self: end; margin-bottom: 6px; }
.bb-seal .lic.bot { align-self: start; margin-top: 6px; }
.bb-seal .core { font-family: var(--display); text-transform: uppercase; line-height: .92;
  font-size: 26px; letter-spacing: -.01em; color: var(--ink); }
.bb-copy { flex: 1; min-width: 320px; }
.bb-copy .bb-h { font-family: var(--display); text-transform: uppercase; line-height: 1.02;
  font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.01em; margin: 16px 0 0; max-width: 22ch; }
.bb-copy p { color: var(--muted); font-size: 17px; margin: 18px 0 0; max-width: 62ch; }

/* ── interior page header ─────────────────────────────────────────────── */
.page-head { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(120% 120% at 80% 0%, #000, transparent 70%); }
.page-head .wrap { position: relative; padding-block: 72px; }
.page-head .h1 { color: #fff; font-size: clamp(38px, 5vw, 64px); }
.page-head .lead { color: #b9b6b2; margin-top: 20px; }

/* ── section scaffolding ──────────────────────────────────────────────── */
.section { padding-block: var(--section-y); }
.section.paper { background: var(--paper); }
.section.dark { background: var(--ink); color: #fff; }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head .h2 { margin-top: 16px; }
.section.dark .section-head .h2 { color: #fff; }

/* ── about / why ──────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid .media { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; }
.about-grid image-slot { width: 100%; height: 100%; }
.about-points { display: grid; gap: 14px; margin: 24px 0 30px; }
.about-points li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.about-points .tick { flex: none; width: 22px; height: 22px; background: var(--orange); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 13px; margin-top: 2px; }

/* ── services grid ────────────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px;
  display: flex; flex-direction: column; gap: 14px; transition: border-color .15s, transform .15s, box-shadow .15s; cursor: pointer; }
.svc-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(41,40,40,.08); }
.svc-grid-25 { grid-template-columns: repeat(5, 1fr); gap: 12px; }
.svc-card-sm { padding: 18px 14px; gap: 10px; text-align: center; }
.svc-card-sm .svc-ico { width: 32px; height: 32px; margin: 0 auto; }
.svc-card-sm h3 { font-size: 13px; line-height: 1.3; }
.svc-card-sm .more { font-size: 11px; }
@media (max-width: 1200px) { .svc-grid-25 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px) { .svc-grid-25 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .svc-grid-25 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .svc-grid-25 { grid-template-columns: 1fr; } }
.svc-ico { width: 52px; height: 52px; border-radius: var(--radius); background: var(--ink); color: #fff; display: grid; place-items: center; }
.svc-card:hover .svc-ico { background: var(--orange); }
.svc-ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
.svc-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 17px; margin: 0; }
.svc-card p { font-size: 14.5px; color: var(--muted); margin: 0; flex: 1; }
.svc-card .more { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--orange); display: inline-flex; gap: 6px; }

/* ── process ──────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 28px; border-radius: 6px; background: rgba(255,255,255,.04); border: 1px solid var(--line-d); position: relative; }
.section.dark .step h3 { color: #fff; }
.step .num { font-family: var(--display); font-size: 40px; color: var(--orange); line-height: 1; }
.step h3 { font-family: var(--display); text-transform: uppercase; font-size: 18px; margin: 14px 0 8px; }
.step p { color: #a8a5a2; font-size: 14.5px; margin: 0; }

/* ── testimonials ─────────────────────────────────────────────────────── */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.tcard .stars { color: var(--orange); letter-spacing: 2px; }
.tcard p { font-size: 15px; margin: 0; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .ava { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; font-family: var(--display); color: var(--muted); font-size: 16px; }
.tcard .who .nm { font-weight: 700; font-size: 14.5px; }
.tcard .who .src { font-size: 12.5px; color: var(--muted); }

/* ── values ───────────────────────────────────────────────────────────── */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.val-card { border-radius: 6px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.val-card .media { aspect-ratio: 16/10; }
.val-card image-slot { width: 100%; height: 100%; }
.val-card .body { padding: 24px; }
.val-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 19px; margin: 0 0 8px; }
.val-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ── team ─────────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.member .media { aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; }
.member image-slot { width: 100%; height: 100%; }
.member .nm { font-family: var(--display); text-transform: uppercase; font-size: 18px; margin: 16px 0 2px; }
.member .role { color: var(--orange); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }

/* ── faq ──────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; max-width: 860px; }
.qa { border: 1px solid var(--line); border-radius: 6px; background: #fff; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--display); text-transform: uppercase; font-size: 16px; }
.qa summary::-webkit-details-marker { display: none; }
.qa .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; color: var(--orange); font-size: 18px; transition: transform .2s; }
.qa[open] .plus { transform: rotate(45deg); background: var(--orange); color: #fff; }
.qa .ans { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ── service areas ────────────────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.area-cols { columns: 2; column-gap: 30px; margin: 22px 0; }
.area-cols a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-weight: 600; break-inside: avoid; border-bottom: 1px solid var(--line); }
.area-cols a::before { content: ""; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.map { aspect-ratio: 4/3; border-radius: 6px; background:
  repeating-linear-gradient(45deg, #ececec 0 12px, #f4f4f4 12px 24px); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); position: relative; }
.map .pin { width: 18px; height: 18px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: rotate(-45deg); box-shadow: 0 6px 14px rgba(247,88,1,.4); }

/* ── cta band ─────────────────────────────────────────────────────────── */
.cta-band { background: var(--orange); color: #fff; }
.cta-band .wrap { display: flex; align-items: center; gap: 40px; padding-block: 64px; flex-wrap: wrap; }
.cta-band .h2 { color: #fff; }
.cta-band .push { margin-left: auto; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── footer ───────────────────────────────────────────────────────────── */
.footer { background: var(--ink-2); color: #b6b3b0; padding-top: 72px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer h4 { font-family: var(--display); text-transform: uppercase; color: #fff; font-size: 14px; letter-spacing: .08em; margin: 0 0 18px; }
.footer a { display: block; padding: 6px 0; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer .legal { border-top: 1px solid var(--line-d); padding-block: 24px; display: flex; gap: 18px; align-items: center; font-size: 13px; color: #807d7a; }
.footer .legal .push { margin-left: auto; display: flex; gap: 20px; }

/* ───────────────────────────────────────────────────────────────────────
   DESIGN-GUIDE ANNOTATION LAYER
   Toggled via body.guide. Each annotated block carries data-comp / data-note.
   ─────────────────────────────────────────────────────────────────────── */
[data-comp] { position: relative; }
.anno { display: none; }
body.guide [data-comp] { outline: 1.5px dashed rgba(247,88,1,.55); outline-offset: -1.5px; }
body.guide [data-comp]::before {
  content: attr(data-comp); position: absolute; top: 0; left: 0; z-index: 40;
  background: var(--orange); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .04em; padding: 4px 9px; border-bottom-right-radius: 5px; pointer-events: none; white-space: nowrap;
}
/* note box reveals on hover so it never permanently covers a CTA */
body.guide [data-note]::after {
  content: attr(data-note); position: absolute; top: 0; right: 0; z-index: 41; max-width: 280px;
  background: rgba(28,27,27,.97); color: #e9e7e4; font-family: var(--mono); font-size: 10.5px; line-height: 1.5;
  letter-spacing: .01em; padding: 7px 10px; border-left: 2px solid var(--orange); border-bottom-left-radius: 5px;
  pointer-events: none; text-align: left; opacity: 0; transform: translateY(-4px); transition: opacity .12s, transform .12s; }
body.guide [data-comp]:hover::after { opacity: 1; transform: none; }
body.guide [data-comp]:hover { outline-color: var(--orange); }

.guide-toggle { position: fixed; right: 18px; bottom: 18px; z-index: 100;
  background: var(--ink); color: #fff; border: 2px solid var(--orange); border-radius: 999px;
  padding: 12px 18px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.guide-toggle .sw { width: 30px; height: 16px; border-radius: 999px; background: #4a4948; position: relative; transition: background .15s; }
.guide-toggle .sw::after { content: ""; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; border-radius: 50%; background: #fff; transition: transform .15s; }
body.guide .guide-toggle .sw { background: var(--orange); }
body.guide .guide-toggle .sw::after { transform: translateX(14px); }

/* guide intro + token sheet (always visible, top & bottom of doc) */
.guide-intro { background: var(--ink); color: #fff; border-bottom: 4px solid var(--orange); }
.guide-intro .wrap { padding-block: 30px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.guide-intro .bdg { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.guide-intro h1 { font-family: var(--display); text-transform: uppercase; font-size: 26px; margin: 6px 0 0; }
.guide-intro p { color: #b9b6b2; font-size: 14.5px; margin: 4px 0 0; max-width: 60ch; }
.guide-intro .push { margin-left: auto; }

.tokens { background: var(--paper); border-top: 1px solid var(--line); }
.tokens .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-block: var(--section-y); }
.tokens h4 { font-family: var(--display); text-transform: uppercase; font-size: 15px; margin: 0 0 16px; }
.sw-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.sw-row .ch { width: 30px; height: 30px; border-radius: var(--radius); border: 1px solid var(--line); }
.tokens .comp-tree { font-family: var(--mono); font-size: 12.5px; line-height: 1.9; color: var(--ink); white-space: pre; }
.tokens .comp-tree .c { color: var(--orange); }
.type-spec div { margin-bottom: 10px; }
.type-spec .lbl { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ── responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1120px) {
  .header .phone { display: none; }
  .topbar .tb-item:nth-child(5), .topbar .tb-sep:nth-child(4) { display: none; }
}
@media (max-width: 1040px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .tcards, .val-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .tokens .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --section-y: 64px; }
  .nav, .topbar, .header .phone { display: none; }
  .about-grid, .area-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid, .steps, .tcards, .val-grid, .team-grid, .footer .cols, .tokens .grid { grid-template-columns: 1fr; }
  body.guide [data-note]::after { display: none; }
}
