/* ==========================================================================
   Kandam — site.css  (v2: clean & modern)
   Design source of truth: docs/DESIGN-DNA.md
   1 fonts · 2 tokens · 3 base · 4 layout · 5 components · 6 header · 7 footer
   8 home sections · 9 subpages · 10 quote form · 11 motion · 12 print
   ========================================================================== */

/* 1 · Fonts ------------------------------------------------------------------ */
@font-face {
  font-family: 'Geist';
  src: url('../fonts/geist-var.woff2') format('woff2');
  font-weight: 100 900; font-display: swap;
  unicode-range: U+0020-007E, U+00A0-00FF, U+2013-2014, U+2018-201E, U+2022, U+2026, U+20AC, U+2192, U+2212;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/geist-var-ext.woff2') format('woff2');
  font-weight: 100 900; font-display: swap;
  unicode-range: U+0160-0161, U+017D-017E;
}
@font-face { font-family: 'Geist Fallback'; src: local('Arial'); size-adjust: 102%; ascent-override: 92%; descent-override: 24%; }

/* 2 · Tokens ----------------------------------------------------------------- */
:root {
  --bg: #FFFFFF;
  --soft: #F4F7F5;
  --soft-2: #EAF0EC;
  --mint: #E6F2EC;
  --mint-2: #CFE6DA;
  --line: #E2E8E4;
  --line-2: #CAD4CE;
  --ink: #0D1A14;
  --ink-2: #44524B;
  --muted: #5F6C66;
  --brand: #0E6B4A;
  --brand-600: #0B5A3E;
  --brand-700: #08462F;
  --dark: #0B2A1F;
  --on-dark-2: #A7C4B6;
  --danger: #B42318;
  --danger-bg: #FEF3F2;
  --focus: #0E6B4A;

  --font: 'Geist', 'Geist Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.6rem, 1.5rem + 4.6vw, 5rem);
  --fs-h1: clamp(2.2rem, 1.5rem + 3vw, 3.9rem);
  --fs-h2: clamp(1.85rem, 1.3rem + 2vw, 3rem);
  --fs-h3: clamp(1.1rem, 1.02rem + .35vw, 1.3rem);
  --fs-lead: clamp(1.08rem, 1rem + .35vw, 1.28rem);
  --fs-body: 1.0625rem;
  --fs-small: .9375rem;
  --fs-xs: .8125rem;

  --wrap: 1200px;
  --gutter: clamp(20px, 4.5vw, 48px);
  --section: clamp(72px, 9vw, 120px);
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 72px;
  --shadow-xs: 0 1px 2px rgba(13, 26, 20, .06);
  --shadow-sm: 0 1px 2px rgba(13, 26, 20, .05), 0 4px 12px -2px rgba(13, 26, 20, .06);
  --shadow: 0 2px 4px rgba(13, 26, 20, .04), 0 18px 40px -12px rgba(13, 26, 20, .18);
  --shadow-lg: 0 4px 8px rgba(13, 26, 20, .04), 0 32px 64px -20px rgba(13, 26, 20, .28);
}

/* 3 · Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 20px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: var(--fs-body); line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-weight: 650; letter-spacing: -.035em; line-height: 1.05; text-wrap: balance; overflow-wrap: break-word; }
h3, .h3 { font-size: var(--fs-h3); letter-spacing: -.015em; line-height: 1.25; font-weight: 600; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
[role="list"], .cards, .steps, .features, .factor-grid, .chips { list-style: none; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--focus); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--mint-2); color: var(--ink); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 16px; border-radius: var(--r-sm); font-weight: 600; }
.skip:focus { top: 12px; }
[hidden] { display: none !important; }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-l { margin-top: clamp(36px, 5vw, 56px); }
.placeholder { color: var(--danger); background: var(--danger-bg); border-radius: 4px; padding: 0 4px; font-size: .92em; }
.site-footer .placeholder { color: #FFB4A8; background: rgba(255, 180, 168, .1); }
code { font-size: .88em; background: var(--soft-2); padding: 1px 6px; border-radius: 5px; }

/* 4 · Layout ----------------------------------------------------------------- */
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); position: relative; }
.section--soft { background: var(--soft); }
.section--line { border-top: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: var(--fs-h2); margin-top: 16px; }
.section-head p:not(.eyebrow) { color: var(--ink-2); font-size: var(--fs-lead); margin-top: 16px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { margin-inline: auto; }
@media (min-width: 900px) {
  .section-head--row { max-width: none; display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: end; }
  .section-head--row p:not(.eyebrow) { margin-top: 0; }
}
.section-head--row .link-arrow { margin-top: 16px; }

/* Split: heading column + content */
.split, .ledger { display: grid; gap: 40px 64px; }
@media (min-width: 1000px) {
  .split, .ledger { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .split-head, .ledger-head { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
}
.split-head h2, .ledger-head h2 { font-size: var(--fs-h2); margin-top: 16px; }
.split-head > p:not(.eyebrow), .ledger-head > p:not(.eyebrow) { color: var(--ink-2); margin-top: 16px; font-size: 1.075rem; max-width: 42ch; }
.split-head .btn-row, .split-head .link-arrow, .ledger-head .link-arrow { margin-top: 24px; }

/* 5 · Components ------------------------------------------------------------- */
.ic { width: 1.25em; height: 1.25em; flex: none; }

/* Eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin: 0;
  padding: 6px 12px; border-radius: 999px; background: var(--mint); color: var(--brand-700);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .01em; line-height: 1.2;
}
.eyebrow .ic { width: 15px; height: 15px; }
.eyebrow--muted { background: var(--soft-2); color: var(--ink-2); }
.dark-panel .eyebrow { background: rgba(255,255,255,.1); color: #D5E7DD; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(14,107,74,.18); }

/* Buttons */
.btn {
  --b-bg: var(--ink); --b-fg: #fff; --b-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: var(--r-sm); border: 1.5px solid var(--b-bd);
  background: var(--b-bg); color: var(--b-fg); font-weight: 600; font-size: 1rem; line-height: 1.1;
  text-decoration: none; text-align: center; white-space: nowrap; letter-spacing: -.005em;
  transition: background-color .18s var(--ease), color .18s, border-color .18s, box-shadow .18s, transform .12s;
  -webkit-tap-highlight-color: transparent;
}
.btn .ic { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover .ic:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--primary { --b-bg: var(--brand); box-shadow: 0 1px 2px rgba(8,70,47,.2), inset 0 1px 0 rgba(255,255,255,.12); }
.btn--primary:hover { --b-bg: var(--brand-600); box-shadow: 0 8px 20px -6px rgba(14,107,74,.5); }
.btn--ghost { --b-bg: #fff; --b-fg: var(--ink); --b-bd: var(--line-2); }
.btn--ghost:hover { --b-bd: var(--ink); }
.btn--ghost:hover .ic:first-child { transform: none; }
.btn--white { --b-bg: #fff; --b-fg: var(--brand-700); }
.btn--white:hover { --b-bg: var(--mint); }
.btn--ghost-light { --b-bg: transparent; --b-fg: #fff; --b-bd: rgba(255,255,255,.35); }
.btn--ghost-light:hover { --b-bd: #fff; --b-bg: rgba(255,255,255,.08); }
.btn--sm { min-height: 44px; padding: 0 16px; font-size: .95rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.is-loading .ic { opacity: 0; }
.btn.is-loading::after { content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand); text-decoration: none; min-height: 32px; }
.link-arrow .ic { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--brand-600); }
.link-arrow:hover .ic { transform: translateX(4px); }
.text-link, .prose a:not(.btn) { color: var(--brand); font-weight: 600; text-decoration: underline; text-decoration-color: var(--mint-2); text-decoration-thickness: 2px; }
.text-link:hover, .prose a:not(.btn):hover { text-decoration-color: var(--brand); }

/* Icon tile */
.tile { display: inline-grid; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--mint); color: var(--brand); }
.tile .ic { width: 24px; height: 24px; }
.tile--sm { width: 40px; height: 40px; border-radius: 11px; }
.tile--sm .ic { width: 20px; height: 20px; }
.tile--dark { background: rgba(255,255,255,.08); color: #9BE2BF; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.tile--xl { width: 112px; height: 112px; border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.tile--xl .ic { width: 52px; height: 52px; stroke-width: 1.5; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span, .chips li { font-size: var(--fs-xs); font-weight: 500; color: var(--ink-2); background: var(--soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; line-height: 1.4; }
.chips--lg li { font-size: .875rem; padding: 6px 14px; background: #fff; }

/* Service cards (bento) */
.cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cards--bento .card--feature { grid-column: span 2; }
  .cards--bento .card--span2 { grid-column: span 2; }
  .cards--bento .card--wide { grid-column: 1 / -1; }
}
@media (min-width: 680px) and (max-width: 999px) { .cards--bento .card--feature { grid-column: 1 / -1; } }
.card { position: relative; }
.card-link {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; overflow: hidden;
  transition: border-color .2s, box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card-link:hover { border-color: var(--mint-2); box-shadow: var(--shadow); transform: translateY(-3px); }
.card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-link:hover .card-media img { transform: scale(1.05); }
.card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,26,20,.28), transparent 45%); pointer-events: none; }
.card-tile { position: absolute; left: 18px; bottom: -22px; z-index: 2; width: 48px; height: 48px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.card-link .card-tile { bottom: 16px; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 20px clamp(20px, 2.4vw, 26px) 24px; }
.card-num { font-size: var(--fs-xs); font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.card-title { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.4rem); letter-spacing: -.02em; }
.card-text { color: var(--ink-2); font-size: var(--fs-small); margin-top: 8px; margin-bottom: 18px; max-width: 52ch; }
.card .chips { margin-top: auto; }
.card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: var(--fs-small); color: var(--brand); }
.card-more .ic { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card-link:hover .card-more .ic { transform: translateX(4px); }
@media (min-width: 1000px) {
  .card--feature .card-link { display: grid; grid-template-columns: 1.15fr 1fr; }
  .card--feature .card-media { aspect-ratio: auto; height: 100%; min-height: 360px; }
  .card--feature .card-body { padding: 32px; justify-content: center; }
  .card--feature .card-title { font-size: 2rem; }
  .card--feature .card-text { font-size: 1.05rem; }
  .card--wide .card-link { display: grid; grid-template-columns: 1fr 2fr; }
  .card--wide .card-media { aspect-ratio: auto; height: 100%; min-height: 220px; }
  .card--wide .card-body { padding: 28px 32px; justify-content: center; }
  .card--wide .chips { margin-top: 4px; }
}

/* Process steps */
.steps { display: grid; gap: 16px; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); gap: 14px; } .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-xs); }
.section--soft .step-card { border-color: transparent; }
.step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.step-no { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .875rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.step-card:last-child .step-no { background: var(--brand); }
@media (min-width: 1100px) {
  .step-card:not(:last-child)::after { content: ''; position: absolute; top: 38px; right: -15px; width: 16px; height: 2px; background: var(--line-2); z-index: 1; }
}
.step-card h3 { font-size: 1.1rem; }
.roles { margin: 14px 0 0; display: grid; gap: 12px; }
.roles div { display: grid; gap: 2px; }
.roles dt { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.roles div:last-child dt { color: var(--brand); }
.roles dd { margin: 0; color: var(--ink-2); font-size: var(--fs-small); line-height: 1.5; }
.step-desc { margin-top: 10px; color: var(--ink-2); font-size: var(--fs-small); line-height: 1.5; }

/* Features (dark panel) */
.features { display: grid; gap: 28px; position: relative; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.feature h3 { margin: 18px 0 8px; color: #fff; }
.feature p { color: var(--on-dark-2); font-size: var(--fs-small); }

/* Factors */
.factor-grid { display: grid; gap: 12px; }
@media (min-width: 640px) { .factor-grid { grid-template-columns: repeat(2, 1fr); } }
.factor-grid--1 { grid-template-columns: 1fr !important; }
.factor { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.section--soft .factor { border-color: transparent; }
.factor h3 { font-size: 1.05rem; margin-bottom: 4px; }
.factor p { color: var(--ink-2); font-size: var(--fs-small); line-height: 1.5; }
.note-card { display: flex; gap: 14px; align-items: flex-start; margin-top: 28px; padding: 18px; border-radius: var(--r); background: var(--mint); }
.note-card strong { display: block; font-weight: 600; }
.note-card p { color: var(--ink-2); font-size: var(--fs-small); margin-top: 2px; }
.note-card .tile { background: #fff; }
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; font-weight: 500; }
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: 0; }
.price-table th small { display: block; color: var(--muted); font-weight: 400; }
.price-table td { text-align: right; font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* FAQ */
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, box-shadow .2s; }
.section--soft .faq-item { border-color: transparent; }
.faq-item[open] { border-color: var(--mint-2); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font-weight: 600; font-size: 1.04rem; line-height: 1.35; border-radius: var(--r); min-height: 60px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
.faq-icon { flex: none; position: relative; width: 30px; height: 30px; border-radius: 50%; background: var(--soft); color: var(--ink); transition: background-color .2s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s var(--ease); }
.faq-item[open] .faq-icon { background: var(--mint); color: var(--brand); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { padding: 0 20px 20px; color: var(--ink-2); max-width: 68ch; }

/* Crumbs */
.crumbs { font-size: var(--fs-xs); color: var(--muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; }
.crumbs li { display: flex; align-items: center; }
.crumbs span[aria-current] { padding-block: 6px; color: var(--muted); }
.crumbs li + li::before { content: '/'; margin-right: 8px; color: var(--line-2); }
.crumbs a { text-decoration: none; color: var(--ink-2); display: inline-block; padding-block: 6px; }
.crumbs a:hover { color: var(--brand); }

/* Forms */
.field { display: grid; gap: 8px; min-width: 0; }
.field > label, .field-label, .field > legend { font-weight: 600; font-size: .95rem; padding: 0; }
.req { color: var(--danger); }
.opt { font-weight: 400; color: var(--muted); font-size: var(--fs-small); }
.input, .select, .textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  font-size: 1rem; box-shadow: var(--shadow-xs); transition: border-color .15s, box-shadow .15s;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.input::placeholder, .textarea::placeholder { color: #8A948F; }
.input:hover, .textarea:hover { border-color: #A9B5AE; }
.input:focus, .textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14,107,74,.14); }
.field.has-error .input, .field.has-error .textarea { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(180,35,24,.1); }
.field-error { display: none; align-items: center; gap: 6px; color: var(--danger); font-weight: 500; font-size: var(--fs-small); margin: 0; }
.field-error::before { content: '!'; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--danger); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.field.has-error .field-error { display: flex; }
fieldset.field { border: 0; margin: 0; padding: 0; }

.choices { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr)); border: 0; padding: 0; margin: 0; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice > span {
  display: flex; align-items: center; gap: 12px; min-height: 56px; height: 100%; padding: 12px 14px; background: #fff;
  border: 1px solid var(--line-2); border-radius: var(--r-sm); font-weight: 500; line-height: 1.3; box-shadow: var(--shadow-xs);
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.choice > span::before { content: ''; flex: none; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-2); background: #fff; transition: all .15s; }
.choice input[type="checkbox"] + span::before { border-radius: 6px; }
.choice input:hover + span { border-color: #A9B5AE; }
.choice input:checked + span { border-color: var(--brand); background: #F3FAF6; box-shadow: 0 0 0 1px var(--brand); }
.choice input[type="radio"]:checked + span::before { border-color: var(--brand); box-shadow: inset 0 0 0 5px var(--brand); }
.choice input[type="checkbox"]:checked + span::before { border-color: var(--brand); background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3L15 6.5' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }
.choice input:focus-visible + span { outline: 2.5px solid var(--focus); outline-offset: 2px; }
.choice small { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; }
.check-inline { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; cursor: pointer; font-size: var(--fs-small); }
.check-inline input { width: 20px; height: 20px; accent-color: var(--brand); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Segmented control */
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--r-sm); }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.segmented span { display: grid; place-items: center; min-height: 40px; border-radius: 9px; font-size: .92rem; font-weight: 500; color: var(--ink-2); transition: all .15s; }
.segmented input:hover + span { color: var(--ink); }
.segmented input:checked + span { background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--shadow-sm); }
.segmented input:focus-visible + span { outline: 2.5px solid var(--focus); outline-offset: 1px; }

/* Demo placeholder block */
.demo-slot { border: 1.5px dashed var(--line-2); border-radius: var(--r); padding: clamp(22px, 4vw, 36px); background: var(--soft); }
.demo-slot h2, .demo-slot h3 { margin: 14px 0 8px; font-size: var(--fs-h3); letter-spacing: -.015em; }
.demo-slot p:not(.eyebrow) { color: var(--ink-2); max-width: 62ch; }

/* 6 · Header ----------------------------------------------------------------- */
.demo-bar { background: var(--ink); color: #D6DED9; font-size: .8rem; text-align: center; padding: 8px var(--gutter); line-height: 1.4; }
.demo-bar a { color: #9BE2BF; }
@media (max-width: 599px) { .demo-bar .long { display: none; } }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.86); -webkit-backdrop-filter: saturate(1.6) blur(14px); backdrop-filter: saturate(1.6) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(13,26,20,.25); }
.header-inner { display: flex; align-items: center; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; min-height: 44px; }
.logo-mark { width: 34px; height: 34px; flex: none; }
.brand-word { font-weight: 700; font-size: 1.28rem; letter-spacing: -.04em; line-height: 1; }
.brand--light { color: #fff; }
.nav { display: none; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 12px; border-radius: 10px; text-decoration: none; font-weight: 500; font-size: .96rem; color: var(--ink-2); transition: background-color .15s, color .15s; }
.nav-list > li > a:hover { background: var(--soft); color: var(--ink); }
.nav-list > li > a[aria-current="page"], .nav-list > li > a.is-section { color: var(--brand); background: var(--mint); }
.has-sub { display: flex; align-items: center; }
.has-sub > a { padding-right: 4px !important; }
.sub-toggle { width: 28px; height: 40px; border: 0; background: none; display: grid; place-items: center; padding: 0; color: var(--ink-2); border-radius: 8px; }
.sub-toggle .ic { width: 16px; height: 16px; transition: transform .2s; }
.has-sub.is-open .sub-toggle .ic { transform: rotate(180deg); }
.subnav {
  position: absolute; top: calc(100% + 10px); left: -8px; width: 540px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 10px; visibility: hidden; opacity: 0; transform: translateY(-6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility 0s .16s;
}
.subnav::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-sub:hover .subnav, .has-sub.is-open .subnav { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
.subnav ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.subnav ul a { display: flex; gap: 12px; align-items: flex-start; padding: 10px; text-decoration: none; border-radius: var(--r-sm); }
.subnav ul a:hover, .subnav ul a:focus-visible { background: var(--soft); }
.subnav strong { display: block; font-weight: 600; font-size: .95rem; line-height: 1.3; }
.subnav small { display: block; color: var(--muted); font-size: .82rem; line-height: 1.35; margin-top: 2px; }
.subnav-all { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; padding: 12px; border-radius: var(--r-sm); background: var(--soft); text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--brand); }
.subnav-all .ic { width: 16px; height: 16px; }
.subnav-all:hover { background: var(--mint); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-phone { display: none; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: .96rem; font-variant-numeric: tabular-nums; min-height: 44px; padding: 0 10px; border-radius: 10px; white-space: nowrap; }
.header-phone .ic { width: 18px; height: 18px; color: var(--brand); }
.header-phone:hover { background: var(--soft); }
.header-cta { display: none; }
.icon-btn { display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: #fff; color: var(--ink); text-decoration: none; }
.icon-btn .ic { width: 20px; height: 20px; }
.icon-btn:hover { border-color: var(--ink); }
.menu-toggle { background: var(--ink); color: #fff; border-color: var(--ink); }
.menu-toggle:hover { background: #1F2E27; }
@media (min-width: 600px) { .header-cta { display: inline-flex; } }
@media (min-width: 1100px) {
  :root { --header-h: 80px; }
  .nav { display: block; }
  .menu-toggle, .header-call { display: none; }
  .header-phone { display: inline-flex; }
}
@media (max-width: 380px) { .brand-word { font-size: 1.12rem; } .header-inner { gap: 10px; } }

/* Mobile menu */
.mobile-menu { margin: 0; width: 100%; max-width: none; height: 100%; max-height: none; border: 0; padding: 0; background: #fff; color: var(--ink); inset: 0; }
.mobile-menu::backdrop { background: rgba(13,26,20,.35); }
.mobile-menu[open] { display: flex; flex-direction: column; animation: sheet-in .25s var(--ease); }
@keyframes sheet-in { from { opacity: 0; transform: translateY(-10px); } }
.mm-head { display: flex; align-items: center; justify-content: space-between; height: 72px; padding-inline: var(--gutter); border-bottom: 1px solid var(--line); flex: none; }
.mm-body { overflow-y: auto; padding: 20px var(--gutter) 28px; flex: 1; }
.mm-label { font-size: var(--fs-xs); font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.mm-services { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mm-services a { display: flex; flex-direction: column; gap: 10px; padding: 14px; border-radius: var(--r-sm); background: var(--soft); text-decoration: none; font-weight: 600; font-size: .95rem; line-height: 1.25; height: 100%; }
.mm-services .tile { background: #fff; }
.mm-list { list-style: none; margin-top: 16px; }
.mm-list a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; }
.mm-foot { padding: 16px var(--gutter) calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: grid; gap: 10px; flex: none; }

/* Mobile bottom bar */
.mobile-bar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 30; display: grid; grid-template-columns: 1fr 1.5fr; gap: 8px;
  padding: 8px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg);
  transform: translateY(calc(100% + 40px)); transition: transform .3s var(--ease);
}
.mobile-bar.is-visible { transform: none; }
.mobile-bar .btn { min-height: 48px; padding: 0 12px; }
@media (min-width: 1100px) { .mobile-bar { display: none; } }
@media (max-width: 1099px) { body.has-mobile-bar { padding-bottom: calc(84px + env(safe-area-inset-bottom)); } }

/* 7 · Footer ----------------------------------------------------------------- */
.site-footer { background: var(--dark); color: #fff; padding-block: clamp(56px, 7vw, 88px) 28px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: #9BE2BF; }
.footer-grid { display: grid; gap: 40px 32px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-brand p { color: var(--on-dark-2); margin-top: 16px; max-width: 34ch; font-size: var(--fs-small); }
.footer-col h2 { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: grid; gap: 2px; }
.footer-col li a { display: inline-flex; min-height: 36px; align-items: center; font-size: var(--fs-small); color: #E3EDE8; }
.footer-contact p { margin: 0 0 8px; font-size: var(--fs-small); }
.footer-contact .big { font-size: 1.35rem; font-weight: 650; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.hours { color: var(--on-dark-2); font-size: var(--fs-small); margin-top: 6px; }
.business-lines { font-style: normal; color: var(--on-dark-2); font-size: var(--fs-small); display: grid; gap: 4px; margin-top: 18px; }
.footer-legal { margin-top: clamp(40px, 6vw, 64px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: var(--fs-xs); color: var(--on-dark-2); }
.footer-legal a { color: var(--on-dark-2); }

/* 8 · Home sections ---------------------------------------------------------- */
.hero { position: relative; padding: 12px 12px 0; }
.hero-shell { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--soft); min-height: clamp(560px, 78vh, 760px); display: grid; align-items: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 30%, rgba(255,255,255,.55) 52%, rgba(255,255,255,0) 72%), linear-gradient(0deg, rgba(13,26,20,.18), transparent 40%); }
.hero-inner { position: relative; padding-block: clamp(56px, 8vw, 120px) clamp(110px, 12vw, 150px); }
.hero-copy { max-width: 600px; }
.hero-title { font-size: var(--fs-hero); font-weight: 650; letter-spacing: -.045em; line-height: .98; margin-top: 22px; }
.hl { color: var(--brand); position: relative; white-space: nowrap; isolation: isolate; }
.hl::after { content: ''; position: absolute; left: -2%; right: -2%; bottom: .04em; height: .2em; background: var(--mint-2); border-radius: 6px; z-index: -1; }
.hero-lead { font-size: var(--fs-lead); color: var(--ink-2); max-width: 40ch; margin-top: 22px; }
.hero-ctas { margin-top: 32px; }
.hero-ctas .btn { min-height: 56px; padding-inline: 26px; font-size: 1.04rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; font-size: var(--fs-small); color: var(--ink-2); font-weight: 500; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .ic { width: 18px; height: 18px; color: var(--brand); }
.float-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-radius: 16px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.6); }
.float-chip strong { display: block; font-size: .88rem; font-weight: 600; line-height: 1.2; }
.float-chip small { display: block; font-size: .78rem; color: var(--muted); line-height: 1.3; }
.chip-a { top: 16%; right: var(--gutter); }
.chip-b { bottom: 30%; right: 12%; }
@media (max-width: 1099px) { .float-chip { display: none; } }

/* Quote bar (overlaps the hero bottom) */
.quote-bar { position: relative; z-index: 3; margin-top: -76px; background: #fff; border-radius: 22px; padding: 20px; box-shadow: var(--shadow-lg); border: 1px solid rgba(13,26,20,.05); }
.qb-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; padding-inline: 4px; }
.qb-head h2 { font-size: 1.15rem; letter-spacing: -.02em; }
.qc-step { font-size: var(--fs-xs); font-weight: 600; color: var(--brand-700); background: var(--mint); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.qb-fields { display: grid; gap: 10px; }
@media (min-width: 700px) { .qb-fields { grid-template-columns: 1fr 1fr; } .qb-submit { grid-column: 1 / -1; } }
@media (min-width: 1100px) { .qb-fields { grid-template-columns: 1.2fr 1.2fr .9fr 1fr auto; align-items: end; } .qb-submit { grid-column: auto; } }
.qb-field { display: grid; gap: 6px; min-width: 0; }
.qb-field label { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); padding-left: 2px; }
.qb-field label .ic { width: 15px; height: 15px; color: var(--brand); }
.qb-field .input { background: var(--soft); border-color: transparent; box-shadow: none; }
.qb-field .input:hover { border-color: var(--line-2); }
.qb-field .input:focus { background: #fff; }
.select { appearance: none; -webkit-appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2344524B' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.qb-submit { min-height: 50px; padding-inline: 26px; }

@media (max-width: 899px) {
  .hero { padding: 0; }
  .hero-shell { border-radius: 0; min-height: 0; display: block; background: #fff; }
  .hero-media { position: relative; aspect-ratio: 4 / 3; margin: 12px 12px 0; border-radius: var(--r-lg); overflow: hidden; }
  .hero-media::after { background: linear-gradient(0deg, rgba(13,26,20,.12), transparent 50%); }
  .hero-inner { padding-block: 28px 32px; }
  .quote-bar { margin-top: 0; }
}

/* Dark panel */
.dark-panel { position: relative; overflow: hidden; background: var(--dark); color: #fff; border-radius: var(--r-lg); padding: clamp(32px, 5vw, 64px); }
.dark-panel::before { content: ''; position: absolute; width: 520px; height: 520px; right: -160px; top: -220px; background: radial-gradient(closest-side, rgba(52,168,120,.28), transparent); pointer-events: none; }
.dark-panel .section-head { position: relative; }
.dark-panel .section-head p:not(.eyebrow) { color: var(--on-dark-2); }
.dark-foot { position: relative; display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; margin-top: clamp(36px, 5vw, 56px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.dark-foot p { color: var(--on-dark-2); max-width: 52ch; margin: 0; }

/* Area */
.area-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .area-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.area-grid h2 { font-size: var(--fs-h2); margin-top: 16px; }
.lead-sm { color: var(--ink-2); font-size: 1.1rem; margin: 16px 0 24px; max-width: 42ch; }
.area-map { margin: 0; background: #fff; border-radius: var(--r-lg); padding: clamp(16px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.area-map svg { width: 100%; height: auto; overflow: visible; }
.area-map .land { fill: var(--mint); stroke: #8CC3A7; stroke-width: .8; stroke-linejoin: round; }
.area-map .routes path { fill: none; stroke: var(--brand); stroke-width: 1.1; stroke-dasharray: 2 3.5; stroke-linecap: round; opacity: .55; }
.area-map .city circle { fill: var(--ink); }
.area-map .city.hub circle { fill: var(--brand); }
.area-map .city.hub .halo { fill: rgba(14,107,74,.16); }
.area-map .city text { font-family: var(--font); font-weight: 600; font-size: 8px; fill: var(--ink-2); paint-order: stroke; stroke: #fff; stroke-width: 3px; stroke-linejoin: round; }
@media (max-width: 640px) { .area-map .city text { font-size: 11px; } .area-map .city.minor text { display: none; } }

/* Reviews */
.reviews { display: grid; gap: 16px; }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
.review { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--r); }
.review blockquote { margin: 0; font-size: 1.12rem; line-height: 1.5; }
.review figcaption { margin-top: 16px; color: var(--muted); font-size: var(--fs-small); }

/* CTA */
.cta-section { padding-block: 0 var(--section); }
.section--soft + .cta-section { padding-top: var(--section); }
.cta-panel { position: relative; overflow: hidden; display: grid; gap: 32px; align-items: center; padding: clamp(32px, 5vw, 64px); border-radius: var(--r-lg); color: #fff; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%); }
.cta-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 1.4px) 0 0 / 22px 22px; -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000); mask-image: linear-gradient(90deg, transparent 30%, #000); pointer-events: none; }
@media (min-width: 1000px) { .cta-panel { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.cta-copy, .cta-points { position: relative; }
.cta-panel h2 { font-size: var(--fs-h2); color: #fff; }
.cta-panel p { color: #D5EBDF; font-size: var(--fs-lead); margin-top: 16px; max-width: 46ch; }
.cta-panel .btn-row { margin-top: 28px; }
.cta-points { display: grid; gap: 10px; }
.cta-points li { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); font-weight: 500; overflow-wrap: anywhere; }
.cta-points .ic { width: 20px; height: 20px; color: #9BE2BF; }
.cta-points a { color: #fff; }

/* 9 · Subpages --------------------------------------------------------------- */
.page-hero { position: relative; padding-block: clamp(24px, 3.5vw, 40px) clamp(48px, 7vw, 88px); background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.page-hero h1 { font-size: var(--fs-h1); margin-top: 20px; letter-spacing: -.04em; }
.page-hero .eyebrow + h1 { margin-top: 18px; }
.page-hero .lead { font-size: var(--fs-lead); color: var(--ink-2); margin-top: 20px; max-width: 54ch; }
.page-hero .btn-row { margin-top: 30px; }
.page-hero + .section { padding-top: clamp(32px, 4vw, 56px); }
.page-hero-grid { display: grid; gap: 40px; align-items: center; margin-top: 24px; }
@media (min-width: 1000px) { .page-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 64px; } }

.svc-visual { position: relative; padding-bottom: 40px; }
.svc-panel {
  display: grid; justify-items: start; align-content: start; gap: 20px; min-height: 300px; padding: clamp(28px, 4vw, 44px); border-radius: var(--r-lg);
  background: radial-gradient(circle at 1px 1px, rgba(14,107,74,.16) 1px, transparent 1.4px) 0 0 / 22px 22px, linear-gradient(150deg, #DDEFE5, var(--mint) 50%, #F1F8F4);
}
.svc-panel .chips { max-width: 190px; }
@media (max-width: 520px) { .svc-panel .chips { max-width: 100%; } .svc-panel { min-height: 0; padding-bottom: 150px; } }
.svc-panel .chips span { background: #fff; border-color: transparent; }
.mini-card { position: absolute; right: 20px; bottom: 0; width: min(300px, 86%); background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); border: 1px solid rgba(13,26,20,.05); }
.mini-card strong { font-size: .88rem; font-weight: 600; }
.mini-card ul { list-style: none; display: grid; gap: 6px; margin-top: 10px; }
.mini-card li { display: flex; gap: 8px; align-items: flex-start; font-size: .84rem; color: var(--ink-2); line-height: 1.35; }
.mini-card .ic { width: 16px; height: 16px; color: var(--brand); margin-top: 1px; }

.check-list { display: grid; gap: 10px; }
@media (min-width: 700px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); font-weight: 500; line-height: 1.45; }
.check-list .ic { width: 22px; height: 22px; color: var(--brand); margin-top: 1px; }

.for-grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .for-grid { grid-template-columns: repeat(3, 1fr); } }
.for-grid li { padding: 24px; background: #fff; border-radius: var(--r); }
.for-grid h3 { margin: 16px 0 6px; }
.for-grid p { color: var(--ink-2); font-size: var(--fs-small); }

.note-panel { display: grid; gap: 20px; align-items: center; padding: clamp(24px, 4vw, 36px); border-radius: var(--r-lg); background: var(--soft); }
@media (min-width: 900px) { .note-panel { grid-template-columns: auto 1fr auto; gap: 28px; } }
.note-panel .tile { background: #fff; }
.note-panel h2 { margin-bottom: 6px; }
.note-panel p { color: var(--ink-2); max-width: 60ch; }

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.4rem, 1.2rem + .9vw, 1.9rem); margin: 1.8em 0 .6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.2em; margin-bottom: 1em; }

.biz-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.biz-table th, .biz-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.biz-table tr:last-child th, .biz-table tr:last-child td { border-bottom: 0; }
.biz-table th { width: 38%; font-weight: 500; color: var(--muted); background: var(--soft); font-size: var(--fs-small); }
.biz-table a { color: var(--brand); font-weight: 600; }

.checklist { list-style: none; display: grid; gap: 10px; }
.checklist label { display: flex; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r); cursor: pointer; align-items: flex-start; transition: background-color .15s, border-color .15s; }
.checklist label:hover { border-color: var(--mint-2); }
.checklist input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--brand); flex: none; }
.checklist label:has(input:checked) { background: var(--soft); }
.checklist input:checked + span { color: var(--muted); text-decoration: line-through; }

.photos { list-style: none; display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); background: var(--soft); }
.photos figcaption { font-size: var(--fs-small); color: var(--muted); margin-top: 10px; }

.link-cards { list-style: none; display: grid; gap: 10px; }
.link-cards a { display: flex; align-items: center; gap: 14px; padding: 14px 18px 14px 14px; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; font-weight: 600; transition: border-color .15s, box-shadow .2s; }
.link-cards a span:not(.tile) { flex: 1; }
.link-cards a > .ic { width: 18px; height: 18px; color: var(--brand); }
.link-cards a:hover { border-color: var(--mint-2); box-shadow: var(--shadow-sm); }
.nf { min-height: 60vh; display: grid; align-content: center; }

/* Contact */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.channel { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; }
.channel .eyebrow { margin-bottom: 10px; }
.channel a.big { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); font-weight: 650; letter-spacing: -.025em; text-decoration: none; font-variant-numeric: tabular-nums; display: inline-block; }
.channel a.big:hover { color: var(--brand); }
.channel p:not(.eyebrow) { color: var(--ink-2); margin-top: 4px; }
.channel address { font-size: 1.05rem; font-weight: 500; }
.form-card { background: var(--soft); padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg); }
.form-card h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin-bottom: 8px; }
.form-card > p { color: var(--ink-2); }
.form-card form { display: grid; gap: 18px; margin-top: 24px; }

/* 10 · Quote form ------------------------------------------------------------ */
.quote-layout { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1000px) { .quote-layout { grid-template-columns: minmax(0, 7.5fr) minmax(0, 4.5fr); gap: 40px; } }
.quote { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.steps-nav { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 32px; }
.steps-nav li { position: relative; padding-top: 12px; font-size: var(--fs-xs); color: var(--muted); }
.steps-nav li::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 4px; background: var(--soft-2); transition: background-color .25s; }
.steps-nav li.is-current::before, .steps-nav li.is-done::before { background: var(--brand); }
.steps-nav li.is-current { color: var(--ink); font-weight: 600; }
.steps-nav li.is-done { color: var(--ink-2); }
.steps-nav li .n { font-variant-numeric: tabular-nums; margin-right: 4px; }
.steps-nav li button { all: unset; cursor: pointer; display: block; border-radius: 4px; }
.steps-nav li button:disabled { cursor: default; }
.steps-nav li button:focus-visible { outline: 2.5px solid var(--focus); outline-offset: 3px; }
@media (max-width: 479px) { .steps-nav .t { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } .steps-nav li.is-current .t { position: static; width: auto; height: auto; clip: auto; } }
.step { border: 0; padding: 0; margin: 0; min-width: 0; }
.no-js .step + .step { margin-top: 48px; }
.step > legend { font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem); font-weight: 650; letter-spacing: -.03em; line-height: 1.15; padding: 0; margin-bottom: 8px; float: left; width: 100%; }
.step > legend + * { clear: both; }
.step-intro { color: var(--ink-2); margin-bottom: 28px; }
.step-body { display: grid; gap: 24px; }
.two-col { display: grid; gap: 18px; }
@media (min-width: 640px) { .two-col { grid-template-columns: 1fr 1fr; } }
.level-group { border: 1px solid var(--line); background: var(--soft); border-radius: var(--r); padding: 16px 18px 18px; display: grid; gap: 12px; margin: 0; min-width: 0; }
.level-group legend { font-weight: 600; font-size: .9rem; padding: 0 6px; margin-left: -6px; background: var(--soft); border-radius: 6px; }
.level-group .row { display: grid; grid-template-columns: minmax(84px, 110px) 1fr; gap: 12px; align-items: end; }
.level-group .choices { grid-template-columns: 1fr 1fr; gap: 6px; }
.level-group .choice > span { min-height: 50px; }
.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.step-actions .btn:only-child { margin-left: auto; }
@media (max-width: 599px) { .step-actions .btn { flex: 1; } .step-actions .btn--ghost { flex: 0 0 auto; } }
.js .step:not(.is-current) { display: none; }
.no-js .step-actions [data-prev], .no-js .step-actions [data-next], .no-js .steps-nav { display: none; }
.no-js .step-actions { border: 0; padding: 0; margin: 0; }
.form-alert { display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--r-sm); background: var(--danger-bg); color: var(--danger); border: 1px solid #FECDCA; margin-bottom: 20px; font-weight: 500; }
.form-note { font-size: var(--fs-small); color: var(--muted); margin-top: 16px; }
.conditional[data-hidden="true"] { display: none; }

.summary { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 24px; }
@media (min-width: 1000px) { .summary { position: sticky; top: calc(var(--header-h) + 24px); } }
.summary h2 { font-size: 1.3rem; letter-spacing: -.025em; margin: 12px 0 16px; }
.summary dl { margin: 0; display: grid; gap: 2px; }
.summary dl div { display: grid; grid-template-columns: 92px 1fr; gap: 10px; padding: 10px 12px; border-radius: 10px; }
.summary dl div:nth-child(odd) { background: var(--soft); }
.summary dt { font-size: var(--fs-xs); color: var(--muted); font-weight: 500; padding-top: 2px; }
.summary dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; font-size: .95rem; }
.summary dd.empty { color: #8A948F; font-weight: 400; }
.summary .after { margin-top: 18px; font-size: var(--fs-small); color: var(--ink-2); }
.summary .after strong { color: var(--ink); font-weight: 600; }
.summary-phone { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--ink-2); }
.summary-phone a { font-weight: 650; color: var(--brand); font-size: 1.1rem; text-decoration: none; display: inline-block; margin-top: 2px; }
@media (max-width: 999px) { .summary--desktop { display: none; } }
.mobile-summary { margin-bottom: 20px; }
@media (min-width: 1000px) { .mobile-summary { display: none; } }
.mobile-summary > summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; background: var(--mint); border-radius: var(--r); font-weight: 600; font-size: var(--fs-small); color: var(--brand-700); min-height: 52px; }
.mobile-summary > summary::-webkit-details-marker { display: none; }
.mobile-summary .summary { box-shadow: none; margin-top: 8px; }

.success { position: relative; padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.success:focus { outline: none; }
.stamp { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--mint); color: var(--brand-700); font-weight: 600; font-size: var(--fs-small); }
.stamp .ic { width: 18px; height: 18px; }
.success h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); margin: 20px 0 10px; letter-spacing: -.035em; }
.success .ref { color: var(--muted); font-size: var(--fs-small); font-variant-numeric: tabular-nums; }
.next-steps { list-style: none; counter-reset: ns; display: grid; gap: 10px; margin-top: 24px; }
.next-steps li { counter-increment: ns; display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 16px; border-radius: var(--r); background: var(--soft); }
.next-steps li::before { content: counter(ns); display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--brand); font-weight: 650; box-shadow: var(--shadow-xs); }
.next-steps strong { display: block; font-weight: 600; }
.next-steps span { color: var(--ink-2); font-size: var(--fs-small); }

/* 11 · Motion ---------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-copy > * { opacity: 0; animation: rise .7s var(--ease) forwards; }
  .js .hero-copy > :nth-child(2) { animation-delay: .06s; }
  .js .hero-copy > :nth-child(3) { animation-delay: .12s; }
  .js .hero-copy > :nth-child(4) { animation-delay: .18s; }
  .js .hero-copy > :nth-child(5) { animation-delay: .24s; }
  .js .quote-card { opacity: 0; animation: rise .8s var(--ease) .15s forwards; }
  .js .float-chip { opacity: 0; animation: pop .6s var(--ease) .6s forwards; }
  .js .chip-b { animation-delay: .75s; }
  .js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
  .js .step.is-current { animation: rise .35s var(--ease); }
  .pulse-dot { animation: pulse 2.4s ease-in-out infinite; }
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(14,107,74,.06); } }

/* 12 · Print ----------------------------------------------------------------- */
@media print {
  .site-header, .mobile-bar, .demo-bar, .cta-section, .site-footer nav { display: none !important; }
}

/* Consecutive white sections: no double padding */
.section:not(.section--soft):not(.section--line) + .section:not(.section--soft):not(.section--line) { padding-top: 0; }
.hero + .section { padding-top: clamp(24px, 3vw, 40px); }
@media (max-width: 559px) {
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-visual { padding: 14px; }
  .card-top { margin-bottom: 18px; }
  .card--feature .card-link::after { width: 150px; height: 150px; right: -24px; bottom: -28px; opacity: .35; }
}
@media (max-width: 559px) { .page-hero .btn-row .btn, .note-panel .btn-row .btn { flex: 1 1 100%; } }
.biz-table td { overflow-wrap: anywhere; }
@media (max-width: 559px) {
  .biz-table th, .biz-table td { display: block; width: auto; }
  .biz-table th { border-bottom: 0; padding-bottom: 6px; }
  .biz-table td { padding-top: 8px; }
}


/* ===== v3: photos ===== */
.dark-panel--media { display: grid; gap: 40px; align-items: stretch; }
@media (min-width: 1000px) { .dark-panel--media { grid-template-columns: 5fr 7fr; gap: 56px; } }
.dark-media { position: relative; margin: 0; border-radius: 20px; overflow: hidden; min-height: 280px; }
.dark-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dark-media figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 14px; border-radius: 12px; background: rgba(11,42,31,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: var(--fs-xs); color: #D5E7DD; }
.dark-content { position: relative; }
.features--2 { grid-template-columns: 1fr !important; }
@media (min-width: 640px) { .features--2 { grid-template-columns: 1fr 1fr !important; } }

.cta-media { position: relative; border-radius: 20px; overflow: hidden; min-height: 300px; }
.cta-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,70,47,.85), rgba(8,70,47,.1) 60%); }
.cta-media .cta-points { position: absolute; z-index: 1; left: 16px; right: 16px; bottom: 16px; }
.cta-media .cta-points li { background: rgba(255,255,255,.12); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 10px 14px; }
.cta-mail { display: inline-flex !important; align-items: center; gap: 8px; font-size: 1rem !important; margin-top: 20px !important; }
.cta-mail .ic { width: 18px; height: 18px; color: #9BE2BF; }
.cta-mail a { color: #fff; }

.svc-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--soft); box-shadow: var(--shadow); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-photo .card-tile { left: 20px; top: 20px; bottom: auto; }
.svc-visual .mini-card { right: -8px; }
@media (max-width: 599px) { .svc-visual .mini-card { position: relative; right: auto; width: auto; margin: -40px 16px 0; } .svc-visual { padding-bottom: 0; } }
.dark-media img { object-position: 88% 50%; }
.card--feature .card-body .chips { margin-top: 8px; }
.cta-media { min-height: 340px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.4); }
.cta-media::after { background: linear-gradient(0deg, rgba(8,50,34,.75), rgba(8,50,34,0) 55%); }
.cta-media .cta-points { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-media .cta-points li { padding: 8px 12px; font-size: .9rem; border-radius: 999px; }
.cta-media .cta-points .ic { width: 16px; height: 16px; }
