/* Sprint 01.2 — claim-safe visual system.
   Three reusable components: .vmap (value map), .flow (method), .cflow (Business Check).
   Pure HTML + CSS. All meaningful content is real text; every line, node and
   arrow is a pseudo-element or an aria-hidden span, so assistive technology
   ignores it. No metrics, no charts. Uses only existing tokens. */

.vmap, .flow, .cflow {
  --vz-ink: var(--cream); --vz-muted: var(--muted); --vz-soft: var(--soft-2);
  --vz-line: var(--line); --vz-card: var(--bg-2); --vz-node: var(--bg);
}
.section--cream .vmap, .section--cream .flow, .section--cream .cflow {
  --vz-line: var(--warm-line); --vz-card: var(--warm-2); --vz-node: var(--warm);
}
.vmap ul, .vmap ol, .flow, .cflow { list-style: none; margin: 0; padding: 0; }

/* ── VISUAL 1 — value map ─────────────────────────────────────── */
.vmap { margin-top: 72px; }
.vmap__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 36px; }
.vmap__grid::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--vz-line);
  transform-origin: left; transform: scaleX(0); transition: transform 1.1s ease .2s; }
.in .vmap__grid::before { transform: scaleX(1); }
.vmap__card { position: relative; min-width: 0; background: var(--vz-card); border: 1px solid var(--vz-line); border-radius: var(--r, 2px);
  padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.vmap__card::before { content: ""; position: absolute; left: 50%; top: -37px; width: 1px; height: 36px; background: var(--vz-line); }
.vmap__card::after { content: ""; position: absolute; left: calc(50% - 3px); top: -40px; width: 7px; height: 7px; border-radius: 50%; background: var(--vz-node); border: 1px solid var(--vz-muted); }
.vmap__area { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--vz-muted); }
.vmap__chain { display: flex; flex-direction: column; gap: 10px; }
.vmap__chain li { display: flex; align-items: baseline; gap: 10px; font-size: 16px; line-height: 24px; font-weight: 300; color: var(--vz-ink); }
.vmap__chain li:first-child { font-weight: 400; }
.vmap__arrow { flex: none; width: 14px; font-size: 14px; color: var(--vz-muted); }
.vmap__note { margin-top: 36px; font-size: 16px; line-height: 26px; color: var(--vz-muted); max-width: 540px; }
@media (max-width: 1024px) { .vmap__grid { grid-template-columns: 1fr 1fr; row-gap: 48px; } .vmap__card:nth-child(n+3)::before { height: 36px; } }
@media (max-width: 600px) {
  .vmap__grid { grid-template-columns: 1fr; gap: 24px; padding-top: 0; padding-left: 28px; }
  .vmap__grid::before { right: auto; bottom: 0; width: 1px; height: auto; transform-origin: top; transform: scaleY(0); }
  .in .vmap__grid::before { transform: scaleY(1); }
  .vmap__card::before { left: -28px; top: 36px; width: 28px; height: 1px; }
  .vmap__card::after { left: -31px; top: 33px; }
}

/* ── VISUAL 2 — method flow ───────────────────────────────────── */
.flow { position: relative; margin-top: 64px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; }
.flow::before { content: ""; position: absolute; left: 0; right: 0; top: 14px; height: 1px; background: var(--vz-line);
  transform-origin: left; transform: scaleX(0); transition: transform 1.4s ease .2s; }
.in .flow::before, .flow.in::before { transform: scaleX(1); }
.flow__step { position: relative; min-width: 0; display: flex; flex-direction: column; gap: 10px; padding-top: 40px; }
.flow__step::before { content: ""; position: absolute; top: 9px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--vz-node); border: 1px solid var(--vz-muted); }
.flow__n { font-size: 11px; letter-spacing: 1.5px; color: var(--vz-muted); font-variant-numeric: tabular-nums; }
.flow__name { display: block; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--vz-ink); }
.flow__text { margin: 0; font-size: 15px; line-height: 23px; color: var(--vz-muted); }
.flow__close { margin-top: 48px; font-size: 18px; line-height: 28px; color: var(--vz-ink, var(--cream)); max-width: 560px; }
@media (max-width: 1200px) {
  .flow { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .flow::before { display: none; }
  .flow__step::after { content: ""; position: absolute; top: 14px; left: 16px; right: -32px; height: 1px; background: var(--vz-line); }
  .flow__step:nth-child(3n)::after { right: 0; }
}
@media (max-width: 700px) {
  .flow { grid-template-columns: 1fr; gap: 32px; padding-left: 28px; }
  .flow::before { display: block; right: auto; top: 0; bottom: 0; width: 1px; height: auto; left: 5px; transform-origin: top; transform: scaleY(0); }
  .in .flow::before, .flow.in::before { transform: scaleY(1); }
  .flow__step { padding-top: 0; }
  .flow__step::before { left: -28px; top: 3px; }
  .flow__step::after { display: none; }
}

/* ── VISUAL 3 — Business Check flow ───────────────────────────── */
.cflow { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 56px; }
.cflow__stage { position: relative; min-width: 0; padding: 24px 0 8px; border-top: 1px solid var(--vz-line); display: flex; flex-direction: column; gap: 10px; }
.cflow__label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--vz-ink); }
.cflow__items { margin: 0; font-size: 15px; line-height: 24px; color: var(--vz-muted); }
.cflow__arrow { position: absolute; right: -38px; top: 20px; font-size: 18px; line-height: 1; color: var(--vz-muted); }
.cflow__stage:last-child .cflow__arrow { display: none; }
.cflow__scope { margin-top: 40px; padding: 4px 0 4px 24px; border-left: 2px solid var(--vz-line); font-size: 15px; line-height: 26px; color: var(--vz-soft); max-width: 480px; }
.cflow__scope b { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--vz-muted); }
.cflow--compact, .cflow--compact .cflow__stage { margin-top: 0; }
.cflow--compact { display: flex; flex-direction: column; gap: 0; }
.cflow--compact .cflow__stage { padding: 18px 0 20px; border-top: 1px solid var(--vz-line); }
.cflow--compact .cflow__arrow { position: static; display: block; margin-top: 4px; transform: rotate(90deg); width: 18px; }
.cflow--compact .cflow__items { font-size: 14px; line-height: 22px; }
.cflow--compact .cflow__scope { margin-top: 20px; font-size: 14px; line-height: 24px; }
@media (max-width: 1024px) {
  .cflow:not(.cflow--compact) { display: flex; flex-direction: column; }
  .cflow:not(.cflow--compact) .cflow__stage { padding: 20px 0 24px; }
  .cflow:not(.cflow--compact) .cflow__arrow { position: static; display: block; margin-top: 4px; transform: rotate(90deg); width: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .vmap__grid::before, .flow::before { transform: none !important; transition: none !important; }
}

/* ── Sprint 01.3 — conversion copy components ─────────────────── */

/* hero supporting line */
.chapter__line { margin-top: 18px; font-size: 13px; letter-spacing: .4px; color: var(--muted); }

/* owner-recognition list */
.owner { margin: 64px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; }
.owner li { padding: 22px 0; border-top: 1px solid var(--warm-line); font-size: 19px; line-height: 29px; font-weight: 300; color: var(--cream); }
.owner__close { margin-top: 56px; max-width: 640px; display: flex; flex-direction: column; gap: 12px; }
.owner__lead { font-size: 22px; line-height: 32px; color: var(--cream); }
.owner__p { font-size: 17px; line-height: 27px; color: var(--muted); }
@media (max-width: 860px) { .owner { grid-template-columns: 1fr; margin-top: 48px; } .owner li { font-size: 17px; line-height: 27px; padding: 18px 0; } }

/* three service cards — opt out of the 6-row subgrid used by the old layout */
.offers--three { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
.offers--three .offer { display: flex; flex-direction: column; gap: 26px; grid-row: auto; grid-template-rows: none; }
.offers--three .offer > * { margin-bottom: 0; }
.offers--three .offer__foot { margin-top: auto; }
.offer__hook { font-size: 18px; line-height: 27px; font-weight: 400; color: var(--cream); }
@media (max-width: 1100px) { .offers--three { grid-template-columns: 1fr; } }

/* five-step flow */
.flow--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .flow--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .flow--5 { grid-template-columns: 1fr; } }

/* final CTA */
.final__list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.final__list li { font-size: 17px; line-height: 27px; color: var(--muted); }
.final__small { font-size: 14px; line-height: 22px; color: var(--muted); max-width: 560px; }

/* the AI-positioning statement is a differentiator, not a footnote */
.claim { margin-top: 56px; max-width: 720px; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.22;
  font-weight: 300; letter-spacing: -.5px; color: var(--cream); }

/* ── Sprint 01.4 — conversion polish ──────────────────────────── */

/* single hero CTA in the first scene */
.hero__cta--single { margin-top: 22px; }
.hero__cta--single .btn--hero { gap: 10px; }

/* service card: clear price → scope → button → disclaimer hierarchy */
.offers--three .offer__price { gap: 14px; }
.offers--three .offer__price div { flex-direction: column; align-items: flex-start; gap: 6px; }
.offers--three .offer__price small { line-height: 20px; }
.offers--three .offer__foot { gap: 20px; }
.offers--three .offer--primary .offer__cta {
  align-self: flex-start; padding: 15px 28px; border-radius: var(--r-sm, 5px);
  background: var(--cream); color: var(--bg-nav);
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.offers--three .offer--primary .offer__cta:hover { background: var(--cream-2); }
.offers--three .offer--primary .offer__cta i { font-weight: 400; }
.offers--three .offer__foot small { opacity: .78; }

/* LOKLU R&D figures — replaces the status card on the homepage */
.rndfig { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r, 2px);
  padding: 32px; display: flex; flex-direction: column; gap: 26px; }
.rndfig__row { display: flex; flex-direction: column; gap: 6px; padding-top: 22px; border-top: 1px solid var(--line); }
.rndfig__row b { font-size: clamp(30px, 3vw, 40px); font-weight: 300; line-height: 1; color: var(--cream); }
.rndfig__row span { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; color: var(--muted); }
.rndfig small { font-size: 12px; line-height: 19px; color: var(--muted); }

/* ── Sprint 01.5 ──────────────────────────────────────────────── */

/* One persistent hero CTA. It lives in the stage, not in a scene, so it stays
   clickable through the whole five-scene sequence. It sits in the band below
   the scene text (scenes start at clamp(56px,12vh,110px) from the bottom) and
   clears the replay control, which is bottom-right. */
.hero-act { position: absolute; z-index: 6; left: clamp(24px, 5vw, 80px); bottom: 26px; }
.hero-act .btn--hero { gap: 10px; background: rgba(10,10,10,.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero-act .btn--hero:hover { background: var(--cream); color: var(--bg-nav); }
@media (max-width: 960px) { .hero-act { left: 22px; bottom: 18px; } }
@media (max-width: 420px) { .hero-act .btn--hero { padding: 12px 20px; font-size: 13px; } }

/* enquiry topic banner */
.topic { margin: 0 0 8px; padding: 14px 18px; border: 1px solid var(--line-2); border-radius: var(--r-sm, 5px);
  background: rgba(242,237,229,.04); font-size: 14px; line-height: 22px; color: var(--cream); }
.topic[hidden] { display: none !important; }
.leistung__note { margin-top: 48px; max-width: 720px; font-size: 15px; line-height: 24px; color: var(--muted); }
.leistung__note a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════ Sprint 02 — offer & conversion architecture ══════════════ */

/* four problem entry points */
.entry { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 72px; }
.entry__card { min-width: 0; background: var(--warm-2); border: 1px solid var(--warm-line); border-radius: var(--r, 2px);
  padding: 36px; display: flex; flex-direction: column; gap: 22px; }
.section--dark .entry__card { background: var(--bg-2); border-color: var(--line); }
.entry__tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.entry__title { margin: 0; font-size: clamp(21px, 1.8vw, 26px); line-height: 1.24; font-weight: 300; color: var(--cream); }
.entry__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.entry__list li { display: flex; gap: 12px; font-size: 15px; line-height: 23px; color: var(--soft-2); }
.entry__list li::before { content: ""; width: 5px; height: 5px; margin-top: 9px; background: var(--warm-line); flex: none; }
.section--dark .entry__list li::before { background: var(--line-2); }
.entry__note { font-size: 15px; line-height: 24px; color: var(--muted); }
.entry__foot { margin-top: auto; }
.entry__cta { display: inline-flex; gap: 8px; align-items: center; padding-top: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); }
.entry__cta i { font-style: normal; font-weight: 400; transition: transform .3s; }
.entry__cta:hover i { transform: translateX(4px); }
@media (max-width: 900px) { .entry { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; } .entry__card { padding: 28px; } }

/* "you think X — it may be Y" */
.swap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 64px; }
.swap__pair { display: grid; grid-template-columns: subgrid; grid-column: span 2; padding: 26px 0; border-top: 1px solid var(--line); }
.swap__side { min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.swap__label { font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.swap__think { font-size: 18px; line-height: 27px; color: var(--muted); }
.swap__real { font-size: 18px; line-height: 27px; color: var(--cream); }
@supports not (grid-template-columns: subgrid) { .swap__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; } }
@media (max-width: 860px) {
  .swap { grid-template-columns: 1fr; gap: 0; margin-top: 48px; }
  .swap__pair { grid-template-columns: 1fr; grid-column: 1; gap: 16px; padding: 22px 0; }
  .swap__think, .swap__real { font-size: 16px; line-height: 25px; }
}

/* worked examples */
.wex { margin-top: 64px; display: flex; flex-direction: column; gap: 72px; }
.wex__item { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.wex__badge { display: inline-block; align-self: flex-start; padding: 6px 12px; border: 1px solid var(--line-2); border-radius: var(--r-sm, 5px);
  font-size: 10px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.wex__title { margin: 18px 0 0; font-size: clamp(22px, 2vw, 30px); line-height: 1.22; font-weight: 300; color: var(--cream); }
.wex__q { margin-top: 26px; font-size: 18px; line-height: 27px; font-weight: 400; color: var(--cream); }
.wex__p { margin-top: 14px; font-size: 16px; line-height: 26px; color: var(--muted); }
.wex__list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.wex__list li { display: flex; gap: 12px; font-size: 15px; line-height: 23px; color: var(--soft-2); }
.wex__list li::before { content: ""; width: 5px; height: 5px; margin-top: 9px; background: var(--line-2); flex: none; }
.wex__note { margin-top: 22px; font-size: 13px; line-height: 20px; color: var(--muted); }

/* funnel + comparison figures, all real text */
.funnel { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r, 2px); padding: 32px; }
.section--cream .funnel { background: var(--warm-2); border-color: var(--warm-line); }
.funnel__row { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.funnel__row:last-of-type { border-bottom: 0; }
.funnel__n { font-size: clamp(26px, 2.6vw, 34px); font-weight: 300; line-height: 1; color: var(--cream); min-width: 3.2ch; font-variant-numeric: tabular-nums; }
.funnel__lbl { font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.funnel__drop { font-size: 13px; color: var(--muted); margin-left: auto; }
.pairfig { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pairfig__box { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r, 2px); padding: 26px; display: flex; flex-direction: column; gap: 8px; }
.section--cream .pairfig__box { background: var(--warm-2); border-color: var(--warm-line); }
.pairfig__box b { font-size: clamp(24px, 2.2vw, 30px); font-weight: 300; color: var(--cream); }
.pairfig__box span { font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.pairfig__box small { font-size: 14px; line-height: 21px; color: var(--soft-2); }
.deps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.deps li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 24px; color: var(--soft-2); }
.deps li:last-child { border-bottom: 0; }
@media (max-width: 1000px) { .wex__item { grid-template-columns: 1fr; gap: 32px; } .wex { gap: 56px; } }
@media (max-width: 480px) { .pairfig { grid-template-columns: 1fr; } }

/* sample deliverable */
.brief { background: var(--warm-2); border: 1px solid var(--warm-line); border-radius: var(--r, 2px); overflow: hidden; margin-top: 56px; }
.section--dark .brief { background: var(--bg-2); border-color: var(--line); }
.brief__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 18px 32px; border-bottom: 1px solid var(--line); background: rgba(242,237,229,.03); }
.brief__bar b { font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); }
.brief__stamp { font-size: 10px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: #d4a843;
  border: 1px solid rgba(212,168,67,.5); border-radius: var(--r-sm, 5px); padding: 4px 10px; }
.brief__body { padding: 8px 32px 32px; }
.brief__item { padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 18px; }
.brief__item:last-child { border-bottom: 0; }
.brief__no { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--muted); padding-top: 4px; font-variant-numeric: tabular-nums; }
.brief__h { margin: 0 0 8px; font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); }
.brief__t { margin: 0; font-size: 16px; line-height: 25px; color: var(--soft-2); }
.brief__t em { font-style: italic; color: var(--muted); }
@media (max-width: 620px) { .brief__bar, .brief__body { padding-left: 20px; padding-right: 20px; } .brief__item { grid-template-columns: 1fr; gap: 6px; } }

/* fit / not-fit */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.fit__col { min-width: 0; background: var(--warm-2); border: 1px solid var(--warm-line); border-radius: var(--r, 2px); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.section--dark .fit__col { background: var(--bg-2); border-color: var(--line); }
.fit__h { font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); }
.fit__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fit__list li { display: flex; gap: 12px; font-size: 15px; line-height: 24px; color: var(--soft-2); }
.fit__list li::before { content: ""; width: 5px; height: 5px; margin-top: 9px; flex: none; background: var(--line-2); }
@media (max-width: 800px) { .fit { grid-template-columns: 1fr; gap: 20px; } }

/* FAQ */
.faq { margin-top: 56px; max-width: 860px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 22px 40px 22px 0; position: relative; color: var(--cream);
  font: 400 18px/26px var(--font); }
.faq__q::after { content: "+"; position: absolute; right: 8px; top: 20px; font-size: 22px; font-weight: 300; color: var(--muted); transition: transform .3s; }
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 24px; margin: 0; font-size: 16px; line-height: 26px; color: var(--muted); max-width: 68ch; }
.faq__a[hidden] { display: none !important; }
.faq__a p { margin: 0 0 12px; }
.faq__a p:last-child { margin: 0; }

/* what I would check first */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.checks__item { min-width: 0; display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); }
.section--cream .checks__item { border-top-color: var(--warm-line); }
.checks__item b { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); }
.checks__item p { margin: 0; font-size: 15px; line-height: 23px; color: var(--muted); }
.checks__note { margin-top: 40px; font-size: 16px; line-height: 26px; color: var(--muted); max-width: 620px; }
@media (max-width: 900px) { .checks { grid-template-columns: 1fr; gap: 22px; } }

/* not/is differentiation */
.notis { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; }
.notis__col { min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.notis__h { font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.notis__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.notis__list li { font-size: 16px; line-height: 25px; color: var(--soft-2); }
.notis__eq { display: flex; flex-direction: column; gap: 10px; }
.notis__eq b { font-size: clamp(18px, 1.7vw, 22px); font-weight: 400; color: var(--cream); }
.notis__eq span { font-size: 18px; color: var(--muted); }
@media (max-width: 800px) { .notis { grid-template-columns: 1fr; gap: 32px; } }

/* enquiry section wrapper on the service page */
.formwrap { max-width: 860px; margin-top: 48px; }

/* ══════════════ Sprint 02.1 — buying friction ══════════════ */

/* the five delivery steps */
.steps { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.steps__item { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.section--cream .steps__item { border-top-color: var(--warm-line); }
.steps__n { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--muted); padding-top: 5px; font-variant-numeric: tabular-nums; }
.steps__h { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); margin-bottom: 8px; }
.steps__t { margin: 0; font-size: 16px; line-height: 25px; color: var(--muted); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 0; margin-top: 40px; } }

/* mid-page conversion prompts */
.midcta { margin-top: 64px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.midcta__note { font-size: 14px; line-height: 21px; color: var(--muted); max-width: 46ch; }

/* delivery window and fit gate */
.terms { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.terms__box { min-width: 0; background: var(--warm-2); border: 1px solid var(--warm-line); border-radius: var(--r, 2px); padding: 30px; }
.section--dark .terms__box { background: var(--bg-2); border-color: var(--line); }
.terms__h { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.terms__t { margin: 0; font-size: 17px; line-height: 27px; color: var(--cream); }
.terms__n { margin: 12px 0 0; font-size: 14px; line-height: 22px; color: var(--muted); }
@media (max-width: 800px) { .terms { grid-template-columns: 1fr; gap: 20px; } }

/* adaptive intake blocks */
.catblock { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 56px; }
.catblock[hidden] { display: none !important; }
.catblock__legend { padding: 0; margin-bottom: 8px; font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 30px); font-weight: 400; line-height: 1.2; color: var(--cream); }
#generic-extra[hidden] { display: none !important; }
#cat-blocks:has(fieldset:not([hidden])) { display: block; }
.chk { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.chk label { display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  font: 400 15px/22px var(--font); color: var(--soft-2); transition: color .25s; }
.chk label:hover { color: var(--cream); }
.chk input { appearance: none; -webkit-appearance: none; margin: 0; width: 18px; height: 18px; flex: none;
  border: 1.5px solid #858078; background: none; transition: border-color .25s, background .25s, box-shadow .25s; }
.chk input[type="radio"] { border-radius: 50%; }
.chk input[type="checkbox"] { border-radius: 5px; }
.chk input:checked { border-color: var(--cream); background: var(--cream); box-shadow: inset 0 0 0 3.5px var(--bg-nav); }
.chk input:focus-visible { outline: 2px solid #d4a843; outline-offset: 3px; }

/* mobile sticky conversion bar — service page only, phones only */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(19, 19, 18, .94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2); transition: opacity .28s ease; }
.stickybar[hidden] { display: none !important; }
.stickybar__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.stickybar__txt b { font-size: 12px; font-weight: 500; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stickybar__txt span { font-size: 11px; color: var(--muted); }
.stickybar__cta { flex: none; display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: var(--r-sm, 5px); background: var(--cream); color: var(--bg-nav);
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; }
.stickybar__cta:focus-visible { outline: 2px solid #d4a843; outline-offset: 3px; }
@media (max-width: 767px) {
  .stickybar:not([hidden]) { display: flex; }
  body.has-stickybar { padding-bottom: 78px; }
}
@media (prefers-reduced-motion: reduce) { .stickybar { transition: none; } }
#f-locations-field[hidden] { display: none !important; }

/* Regression fix from Sprint 02: the form wrapper lost .intake__main's flex rhythm when the
   service page stopped being a two-column layout, so every block after the problem field
   collapsed against its neighbour. */
#formwrap { display: flex; flex-direction: column; gap: 56px; }
@media (max-width: 640px) { #formwrap { gap: 44px; } }

/* sticky bar label must not truncate on a 390px phone */
.stickybar__txt b { font-size: 11px; line-height: 15px; white-space: normal; overflow: visible; text-overflow: clip; }
.stickybar__txt span { font-size: 10px; }
