/* ==========================================================================
   Seamless Moves – design system
   Palette: petrol teal (trust, logistics) · warm sand (calm, home) · amber (action)
   Type: Manrope for display, Inter for body when self-hosted (see README),
         otherwise a tuned system stack.
   ========================================================================== */

:root {
  --ink: #0f2326;
  --ink-2: #1a3338;
  --text: #1c2b2e;
  --muted: #5a6b6e;
  --line: #dfd9cc;

  --teal-900: #083a44;
  --teal-700: #0e5a66;
  --teal-600: #12707e;
  --teal-500: #15808f;
  --teal-100: #d7ecee;
  --teal-50: #edf6f7;

  --sand-50: #f8f5ef;
  --sand-100: #f1ece1;
  --sand-200: #e4dccb;

  --amber-400: #f2b84b;
  --amber-500: #e9a52a;
  --amber-600: #c98a12;
  --amber-50: #fdf4e0;

  --wa: #25d366;
  --wa-dark: #0b3d1f;
  --danger: #b42318;
  --white: #fff;

  --font-display: "Manrope", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 35, 38, 0.06), 0 2px 8px rgba(15, 35, 38, 0.05);
  --shadow-md: 0 6px 20px rgba(15, 35, 38, 0.1);
  --shadow-lg: 0 18px 50px rgba(15, 35, 38, 0.16);

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --header-h: 76px;
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--teal-900); }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.h4, h4 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-700); }

.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }

.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: var(--radius-sm); z-index: 200; }
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------- type */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin: 0 0 0.9rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 1.5rem; height: 2px; background: var(--amber-500); border-radius: 2px; }
.section-head.is-center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section-head { max-width: 760px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.6rem; }
.prose > p { max-width: 68ch; }
.prose h2 { margin-top: 2rem; font-size: 1.5rem; }
.callout {
  background: var(--amber-50); border-left: 4px solid var(--amber-500); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink);
}
.callout .icon { color: var(--amber-600); margin-top: 0.2em; }

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.1em; height: 1.1em; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--teal-900); color: #fff; box-shadow: var(--shadow-md); }
.btn-amber { background: var(--amber-400); color: var(--ink); }
.btn-amber:hover { background: var(--amber-500); color: var(--ink); box-shadow: 0 8px 24px rgba(233, 165, 42, 0.35); }
.btn-whatsapp { background: var(--wa); color: var(--wa-dark); }
.btn-whatsapp:hover { background: #1fc25c; color: var(--wa-dark); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-ghost { background: transparent; color: var(--teal-700); border-color: var(--teal-100); }
.btn-ghost:hover { border-color: var(--teal-700); background: var(--teal-50); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: #fff; }

/* -------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* No backdrop-filter here: it would become the containing block for the
     position:fixed mobile drawer and clip it to the header's height. */
  background: rgba(248, 245, 239, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(15, 35, 38, 0.06); }
.header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1; font-size: 1.05rem; }
.brand-text span:last-child { color: var(--teal-700); }

.nav { margin-left: auto; }
.nav-list { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: inline-block; padding: 0.55rem 0.85rem; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem;
}
.nav-link:hover, .nav-link[aria-current] { background: var(--teal-50); color: var(--teal-900); }
.nav-toggle {
  background: none; border: 0; padding: 0.35rem; margin-left: -0.5rem; border-radius: 999px; color: var(--muted);
  display: inline-flex; transition: transform 0.2s;
}
.nav-toggle .icon { width: 1.05em; height: 1.05em; }
.nav-toggle:hover { background: var(--teal-50); color: var(--teal-900); }
.has-mega.is-open .nav-toggle { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 0.75rem); left: 50%; transform: translate(-50%, 6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.5rem; width: min(860px, calc(100vw - 2 * var(--gutter)));
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.mega-small { width: 300px; padding: 0.9rem; }
.has-mega.is-open .mega, .has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mega-title { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 0 0.6rem 0.5rem; }
.mega ul { list-style: none; }
.mega li a {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0.6rem; border-radius: var(--radius-sm);
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem;
}
.mega li a:hover, .mega li a[aria-current] { background: var(--teal-50); color: var(--teal-900); }
.mega li a .icon { color: var(--teal-600); }
.mega-all { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-weight: 700; text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.header-phone .icon { color: var(--teal-600); }
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.65rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
}
.lang-switch:hover { border-color: var(--teal-700); color: var(--teal-900); }
.burger { display: none; background: none; border: 0; padding: 0.5rem; border-radius: var(--radius-sm); color: var(--ink); }
.burger .icon { width: 1.6rem; height: 1.6rem; }
.burger-close { display: none; }
.nav-mobile-extra { display: none; }
.nav-backdrop { position: fixed; inset: var(--header-h) 0 0; background: rgba(15, 35, 38, 0.45); z-index: 90; }

@media (max-width: 1100px) {
  .header-phone span { display: none; }
}
@media (max-width: 1023px) {
  .header-cta, .header-phone { display: none; }
  .burger { display: inline-flex; }
  body.nav-open .burger-open { display: none; }
  body.nav-open .burger-close { display: inline-flex; }
  body.nav-open { overflow: hidden; }
  .nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; width: min(420px, 100%);
    background: #fff; z-index: 95; margin: 0; padding: 1rem var(--gutter) 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.25s ease; box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { flex-wrap: wrap; border-bottom: 1px solid var(--sand-200); }
  .nav-link { flex: 1; padding: 0.95rem 0.25rem; font-size: 1.1rem; border-radius: 0; }
  .nav-link:hover, .nav-link[aria-current] { background: none; }
  .nav-toggle { margin: 0; padding: 0.6rem; }
  .mega {
    position: static; transform: none; width: 100%; box-shadow: none; border: 0; padding: 0 0 0.75rem; border-radius: 0;
    opacity: 1; visibility: visible; pointer-events: auto; display: none; background: transparent;
  }
  /* Higher specificity than the desktop hover/open rules above */
  .nav .has-mega:hover .mega, .nav .has-mega:focus-within .mega { display: none; transform: none; }
  .nav .has-mega.is-open .mega { display: block; transform: none; }
  .mega-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .mega-small { width: 100%; }
  .nav-mobile-extra { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.25rem; }
  .nav-mobile-extra .btn { justify-content: flex-start; }
  .nav-mobile-extra .lang-switch { align-self: flex-start; padding: 0.6rem 0.9rem; font-size: 0.95rem; letter-spacing: 0; }
  .header-actions .lang-switch { display: none; }
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(242, 184, 75, 0.18), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(14, 90, 102, 0.1), transparent 60%),
    var(--sand-50);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--teal-700); display: block; }
.hero .lead { margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-actions.center { justify-content: center; }
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; color: var(--ink-2); font-size: 0.95rem; font-weight: 500; }
.hero-chips li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-chips .icon { color: var(--teal-600); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-card {
  position: absolute; left: -1rem; bottom: -1.25rem;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem 1.25rem;
  border: 1px solid var(--line); max-width: 260px;
}
.hero-card-title { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--ink); }
.hero-card ol { list-style: none; counter-reset: s; display: grid; gap: 0.35rem; }
.hero-card li { counter-increment: s; display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 500; }
.hero-card li::before {
  content: counter(s); width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--teal-50); color: var(--teal-700);
  display: inline-grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 0.75rem; flex: 0 0 auto;
}
.hero-card li:last-child::before { background: var(--amber-400); color: var(--ink); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1rem; }
  .hero-card { position: static; margin: -2.5rem auto 0; max-width: 100%; }
}

/* --------------------------------------------------------------- stats */
.stats { background: var(--teal-700); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.5rem 1rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.2rem; border-left: 1px solid rgba(255, 255, 255, 0.15); }
.stat:first-child { border-left: 0; }
.stat-value { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--amber-400); }
.stat-label { font-size: 0.9rem; opacity: 0.9; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.15); }
}

/* ------------------------------------------------------------ sections */
.section { padding: var(--section) 0; }
.section-alt { background: var(--sand-100); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, 0.86); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: rgba(255, 255, 255, 0.72); }
.section-dark .eyebrow { color: var(--amber-400); }

.page-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  background: radial-gradient(50% 80% at 100% 0%, rgba(14, 90, 102, 0.08), transparent 60%), var(--sand-50);
  border-bottom: 1px solid var(--line);
}
.page-hero .section-head { margin-bottom: 0; }
.page-hero h1 { margin-bottom: 0.5rem; }

.breadcrumbs { margin-bottom: 1.25rem; font-size: 0.88rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.35rem; opacity: 0.5; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal-900); text-decoration: underline; }

/* --------------------------------------------------------------- cards */
.card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  text-decoration: none; color: inherit; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-grid.is-large { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.service-card { display: flex; flex-direction: column; gap: 0.9rem; padding: 1.5rem; }
.service-card.is-large { padding: 1.9rem; }
.service-icon {
  width: 3rem; height: 3rem; border-radius: 12px; background: var(--teal-50); color: var(--teal-700);
  display: grid; place-items: center; transition: background-color 0.2s, color 0.2s;
}
.service-icon .icon { width: 1.5rem; height: 1.5rem; }
.service-card:hover .service-icon { background: var(--teal-700); color: #fff; }
.service-body { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.service-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.01em; }
.service-short { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.service-more { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--teal-700); font-size: 0.92rem; margin-top: auto; }
.service-more .icon { transition: transform 0.2s; }
.card:hover .service-more .icon { transform: translateX(3px); }
.service-card.is-cta { grid-column: span 2; background: var(--teal-700); border-color: var(--teal-700); color: #fff; justify-content: center; }
.service-card.is-cta .service-name, .service-card.is-cta .service-more { color: #fff; }
.service-card.is-cta .service-short { color: rgba(255, 255, 255, 0.78); }
.service-card.is-cta:hover { border-color: var(--teal-900); background: var(--teal-900); }
@media (max-width: 960px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } .service-card.is-cta { grid-column: auto; } }

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.teaser { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.teaser h3 { margin: 0; }
.teaser p { color: var(--muted); flex: 1; }
@media (max-width: 800px) { .teaser-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- process */
.process { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; counter-reset: p; }
.process::before { content: ""; position: absolute; top: 1.5rem; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--teal-100), var(--amber-400)); z-index: 0; }
.process-step { position: relative; z-index: 1; }
.process-num {
  width: 3rem; height: 3rem; border-radius: 50%; background: #fff; border: 2px solid var(--teal-700); color: var(--teal-700);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; margin-bottom: 1rem; box-shadow: 0 0 0 6px var(--sand-100);
}
.section:not(.section-alt) .process-num { box-shadow: 0 0 0 6px var(--sand-50); }
.process-step:last-child .process-num { background: var(--amber-400); border-color: var(--amber-400); color: var(--ink); }
.process-step h3 { margin-bottom: 0.35rem; }
.process-step p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- calculator */
.calc { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2rem; align-items: start; }
.calc-controls { display: grid; gap: 1.75rem; }
.calc-group legend, .field-group > .field-label, .field-label {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.6rem;
}
.field-label small { font-weight: 500; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr)); gap: 0.75rem; }
/* Grid/flex children default to min-width:auto, which lets long labels push a
   column wider than the viewport on phones. Opt every layout child out of it. */
.calc > *, .calc-controls > *, .form-step > *, .quote-grid > *, .two-col > *, .area-grid > *,
.faq-layout > *, .hero-grid > *, .reviews > *, .field-row > *, .calc-row > *, .check-label, .choice-box { min-width: 0; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-box {
  display: flex; flex-direction: column; gap: 0.15rem; padding: 0.9rem 1rem; border-radius: var(--radius); background: #fff;
  border: 2px solid var(--line); cursor: pointer; height: 100%; transition: border-color 0.15s, box-shadow 0.15s;
}
.choice:hover .choice-box { border-color: var(--teal-500); }
.choice input:checked + .choice-box { border-color: var(--teal-700); box-shadow: 0 0 0 4px var(--teal-50); }
.choice input:focus-visible + .choice-box { outline: 3px solid var(--amber-500); outline-offset: 2px; }
.choice-name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.choice-hint { font-size: 0.82rem; color: var(--muted); }
.choice-price { font-family: var(--font-display); font-weight: 800; color: var(--teal-700); margin-top: 0.3rem; }

.calc-row, .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"], .field input[type="date"],
.field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm); border: 2px solid var(--line); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; min-height: 3rem;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 1.1rem; padding-right: 2.6rem; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 4px var(--teal-50); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea, .check.is-invalid .check-box { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 0.85rem; margin-top: 0.35rem; display: block; }
.field-hint { font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; }
.req { color: var(--danger); }

.range-wrap { display: flex; align-items: center; gap: 1rem; }
.range-wrap input[type="range"] { flex: 1; accent-color: var(--teal-700); height: 2rem; }
.range-wrap output { font-family: var(--font-display); font-weight: 800; min-width: 5ch; text-align: right; color: var(--ink); }

.check-list { display: grid; gap: 0.5rem; }
.check { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; padding: 0.55rem 0.25rem; border-radius: var(--radius-sm); position: relative; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check-box {
  width: 1.35rem; height: 1.35rem; border-radius: 6px; border: 2px solid var(--line); background: #fff; flex: 0 0 auto; margin-top: 0.15rem;
  display: grid; place-items: center; transition: background-color 0.15s, border-color 0.15s;
}
.check-box::after { content: ""; width: 0.45rem; height: 0.75rem; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg) translateY(-1px); opacity: 0; }
.check input:checked + .check-box { background: var(--teal-700); border-color: var(--teal-700); }
.check input:checked + .check-box::after { opacity: 1; }
.check input:focus-visible + .check-box { outline: 3px solid var(--amber-500); outline-offset: 2px; }
.check-label { flex: 1; line-height: 1.4; }
.check-label small { color: var(--muted); }
.check-price { font-family: var(--font-display); font-weight: 700; color: var(--teal-700); white-space: nowrap; }
.check input:checked ~ .check-label { font-weight: 600; }

.calc-result {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--ink); color: rgba(255, 255, 255, 0.85); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-lg);
}
.calc-result-label { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-400); font-weight: 700; margin-bottom: 0.4rem; }
.calc-total { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
.calc-nonbinding { font-size: 0.85rem; opacity: 0.7; margin: 0.25rem 0 1.25rem; }
.calc-breakdown { margin: 0 0 1.25rem; display: grid; gap: 0.45rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.calc-breakdown div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; }
.calc-breakdown dt { opacity: 0.8; }
.calc-breakdown dd { margin: 0; font-weight: 700; color: #fff; }
.calc-note { font-size: 0.85rem; opacity: 0.7; margin-bottom: 1.25rem; }
.calc-cta-hint { font-size: 0.82rem; opacity: 0.65; margin-top: 0.6rem; text-align: center; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } .calc-result { position: static; } }

/* -------------------------------------------------------------- why us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-item { padding: 1.75rem; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.why-icon { width: 3rem; height: 3rem; border-radius: 12px; background: rgba(242, 184, 75, 0.15); color: var(--amber-400); display: grid; place-items: center; margin-bottom: 1rem; }
.why-icon .icon { width: 1.5rem; height: 1.5rem; }
.why-item h3 { margin-bottom: 0.4rem; }
.why-item p { font-size: 0.97rem; opacity: 0.85; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- area */
.area-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.area-nationwide { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 500; color: var(--ink-2); }
.area-nationwide .icon { color: var(--teal-600); margin-top: 0.2em; }
.area-label { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 1.25rem 0 0.6rem; }
.area-label:first-child { margin-top: 0; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips li { padding: 0.4rem 0.85rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 0.9rem; font-weight: 500; }
@media (max-width: 800px) { .area-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ------------------------------------------------------------- reviews */
.reviews { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center; }
.reviews-badge {
  width: 180px; aspect-ratio: 1; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; font-family: var(--font-display); font-weight: 800; color: var(--ink);
}
.stars { display: flex; gap: 0.1rem; color: var(--amber-500); }
.stars .icon { width: 1.3rem; height: 1.3rem; }
.reviews-copy .section-head { margin-bottom: 1.25rem; }
@media (max-width: 700px) { .reviews { grid-template-columns: 1fr; } .reviews-badge { width: 140px; } }

/* ----------------------------------------------------------- accordion */
.accordion { display: grid; gap: 0.6rem; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc-heading { margin: 0; font-size: 1rem; }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left;
  padding: 1.05rem 1.25rem; background: none; border: 0; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.acc-trigger .icon { color: var(--teal-600); transition: transform 0.2s; }
.acc-trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }
.acc-trigger:hover { background: var(--teal-50); }
.acc-body { padding: 0 1.25rem 1.2rem; color: var(--ink-2); }
.acc-body p { max-width: 70ch; }

/* ------------------------------------------------------------ cta band */
.cta-band { background: linear-gradient(120deg, var(--teal-900), var(--teal-600)); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { opacity: 0.85; max-width: 56ch; margin: 0; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.78); padding: 4rem 0 2rem; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand-text span:last-child { color: var(--amber-400); }
.footer-brand p { margin-top: 1rem; max-width: 34ch; }
.footer-area { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.88rem; opacity: 0.8; }
.footer-area .icon { margin-top: 0.2em; color: var(--amber-400); }
.footer-title { font-family: var(--font-display); color: #fff; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 0.8rem; }
.footer-links + .footer-title { margin-top: 1.5rem; }
.footer-links, .footer-contact { list-style: none; display: grid; gap: 0.4rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--amber-400); }
.footer-contact li > * { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-contact .icon { color: var(--amber-400); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-nocookie { opacity: 0.6; }
.footer-legal { list-style: none; display: flex; gap: 1.25rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- sticky bar */
.sticky-bar { display: none; }
@media (max-width: 1023px) {
  body:not(.page-quote) { padding-bottom: 4.25rem; }
  .sticky-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 1px;
    background: var(--line); border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sticky-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
    background: #fff; color: var(--ink); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; padding: 0.55rem 0.25rem;
  }
  .sticky-bar a .icon { color: var(--teal-700); width: 1.3rem; height: 1.3rem; }
  .sticky-bar a.is-primary { background: var(--amber-400); }
  .sticky-bar a.is-primary .icon { color: var(--ink); }
  body.nav-open .sticky-bar { display: none; }
}

/* -------------------------------------------------------- two columns */
.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 1rem); }
.aside-card h3 { margin-bottom: 0.4rem; }
.aside-card > p { color: var(--muted); font-size: 0.97rem; }
.aside-actions { display: grid; gap: 0.6rem; margin: 1.25rem 0 1rem; }
.aside-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--muted); }
.aside-note .icon { color: var(--teal-600); }
@media (max-width: 900px) { .aside-card { position: static; } }

/* --------------------------------------------------------- service page */
.service-hero-grid { display: grid; grid-template-columns: 1.6fr auto; gap: 2.5rem; align-items: center; }
.service-hero .lead { margin-bottom: 1.5rem; }
.price-badge {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 1.5rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 220px;
}
.price-badge-icon { width: 3.25rem; height: 3.25rem; border-radius: 14px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 0.75rem; }
.price-badge-icon .icon { width: 1.75rem; height: 1.75rem; }
.price-badge-from { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.price-badge-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--teal-700); letter-spacing: -0.02em; line-height: 1.1; }
.price-badge-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }
@media (max-width: 800px) { .service-hero-grid { grid-template-columns: 1fr; } .price-badge { align-self: start; flex-direction: row; gap: 1rem; text-align: left; align-items: center; flex-wrap: wrap; } .price-badge-icon { margin: 0; } }

.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.included-item { display: flex; gap: 0.9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; }
.included-item > .icon { color: var(--teal-600); width: 1.5rem; height: 1.5rem; flex: 0 0 auto; margin-top: 0.1rem; }
.included-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.included-item p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .included-grid { grid-template-columns: 1fr; } }

.price-box { margin-top: 2.5rem; background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
.price-box-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--teal-700); margin: 0; }
.price-box-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--ink); margin: 0; white-space: nowrap; }
.price-box-value small { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.price-box-note { margin: 0; color: var(--ink-2); }
@media (max-width: 700px) { .price-box { grid-template-columns: 1fr; gap: 0.75rem; } }

/* --------------------------------------------------------------- quote */
.quote-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.quote-aside { display: grid; gap: 1.25rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.quote-aside .aside-card { position: static; }
.aside-points { list-style: none; display: grid; gap: 0.5rem; padding: 0 0.5rem; font-size: 0.95rem; }
.aside-points li { display: flex; gap: 0.5rem; align-items: flex-start; }
.aside-points .icon { color: var(--teal-600); margin-top: 0.2em; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } .quote-aside { position: static; } }

.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 2rem; }
.steps li { display: flex; align-items: center; gap: 0.6rem; padding-bottom: 0.75rem; border-bottom: 3px solid var(--line); color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.steps-num { width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--sand-100); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 0.8rem; }
.steps li[aria-current] { border-color: var(--teal-700); color: var(--ink); }
.steps li[aria-current] .steps-num { background: var(--teal-700); color: #fff; }
.steps li.is-done { border-color: var(--teal-500); }
.steps li.is-done .steps-num { background: var(--teal-100); color: var(--teal-900); }
.steps-mobile { display: none; font-family: var(--font-display); font-weight: 700; color: var(--teal-700); margin-bottom: 1.25rem; }
@media (max-width: 640px) { .steps { display: none; } .steps-mobile { display: block; } }

.form-step { display: grid; gap: 1.25rem; }
.form-step legend { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.01em; }
.field-group { display: block; }
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill span { display: inline-block; padding: 0.55rem 1rem; border-radius: 999px; border: 2px solid var(--line); background: #fff; font-weight: 600; font-size: 0.93rem; cursor: pointer; transition: border-color 0.15s, background-color 0.15s, color 0.15s; }
.pill:hover span { border-color: var(--teal-500); }
.pill input:checked + span { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.pill input:focus-visible + span { outline: 3px solid var(--amber-500); outline-offset: 2px; }
.check-privacy { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem; }
.check-privacy .check-label { font-size: 0.92rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { color: var(--danger); font-weight: 600; background: #fdf0ee; border-radius: var(--radius-sm); padding: 0.75rem 1rem; margin: 1rem 0 0; }
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-nav [data-next], .form-nav [data-submit] { margin-left: auto; }
.form-nav [data-prev] .icon { transform: rotate(180deg); }
.estimate-note { background: var(--amber-50); border-radius: var(--radius-sm); padding: 0.75rem 1rem; font-size: 0.92rem; }
@media (max-width: 560px) { .field-row, .calc-row { grid-template-columns: 1fr; } }

.quote-success { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem); text-align: center; box-shadow: var(--shadow-sm); }
.success-icon { width: 4rem; height: 4rem; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; margin: 0 auto 1rem; }
.success-icon .icon { width: 2.2rem; height: 2.2rem; }
.success-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0; }
.summary { text-align: left; }
.summary summary { cursor: pointer; font-weight: 700; color: var(--teal-700); }
.summary pre { white-space: pre-wrap; font-family: var(--font-body); font-size: 0.9rem; background: var(--sand-50); padding: 1rem; border-radius: var(--radius-sm); margin-top: 0.75rem; }

/* --------------------------------------------------------------- about */
.facts { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; }
.facts-list { margin: 0; display: grid; gap: 0.9rem; }
.facts-list div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; font-size: 0.95rem; }
.facts-list dt { color: var(--muted); font-weight: 600; }
.facts-list dd { margin: 0; color: var(--ink); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-item, .factor { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.value-num { font-family: var(--font-display); font-weight: 800; color: var(--amber-500); font-size: 0.9rem; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem; }
.value-item p, .factor p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
.team-card { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.25rem; display: grid; gap: 0.5rem; justify-items: center; }
.team-avatar { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--sand-100); color: var(--muted); display: grid; place-items: center; }
.team-line { display: block; height: 0.6rem; width: 70%; border-radius: 4px; background: var(--sand-100); }
.team-line.short { width: 45%; }
.partners-block { background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--radius-lg); padding: 1.75rem; }

/* -------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-card { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.contact-card > .icon { width: 2rem; height: 2rem; color: var(--teal-700); margin-bottom: 0.5rem; }
.contact-card h2 { font-size: 1.15rem; margin: 0; }
.contact-value { font-weight: 700; color: var(--ink); margin: 0; }
.contact-card p:last-child { color: var(--muted); font-size: 0.93rem; margin-top: 0.3rem; }
.contact-card.is-cta { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.contact-card.is-cta > .icon, .contact-card.is-cta h2 { color: #fff; }
.contact-card.is-cta p { color: rgba(255, 255, 255, 0.8); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ checklist */
.checklist-bar { position: sticky; top: calc(var(--header-h) + 0.5rem); z-index: 5; background: var(--sand-50); padding: 0.75rem 0 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1.5rem; align-items: center; }
.progress { grid-column: 1 / -1; height: 0.6rem; background: var(--sand-200); border-radius: 999px; overflow: hidden; }
.progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--teal-700), var(--amber-400)); transition: width 0.3s ease; }
.checklist-bar p { margin: 0; font-weight: 700; font-family: var(--font-display); }
.checklist-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
@media (max-width: 480px) { .checklist-bar { grid-template-columns: 1fr; } }
.phase { margin-bottom: 2rem; }
.phase h2 { font-size: 1.35rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--teal-100); margin-bottom: 0.75rem; }
.phase-list { list-style: none; display: grid; gap: 0.1rem; }
.phase-list .check { padding: 0.6rem 0.5rem; }
.phase-list .check:hover { background: #fff; }
.phase-list input:checked ~ .check-label { text-decoration: line-through; color: var(--muted); font-weight: 400; }

/* ---------------------------------------------------------------- costs */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 560px; }
.price-table th, .price-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--teal-700); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; }
.price-table tbody th { font-weight: 700; color: var(--ink); }
.price-table tbody tr:last-child td, .price-table tbody tr:last-child th { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--sand-50); }
.table-note { font-size: 0.88rem; color: var(--muted); margin-top: 0.9rem; }
.factors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 1000px) { .factors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .factors-grid { grid-template-columns: 1fr; } }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.compare-card:last-child { border-color: var(--teal-700); box-shadow: 0 0 0 4px var(--teal-50); }
.compare-pro, .compare-con { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.96rem; }
.compare-pro .icon { color: #1a7f37; margin-top: 0.2em; }
.compare-con .icon { color: var(--amber-600); margin-top: 0.2em; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }
.tips-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; counter-reset: tip; }
.tip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.25rem 1.25rem 4rem; position: relative; counter-increment: tip; }
.tip::before { content: counter(tip, decimal-leading-zero); position: absolute; left: 1.25rem; top: 1.2rem; font-family: var(--font-display); font-weight: 800; color: var(--amber-500); font-size: 1.1rem; }
.tip h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.tip p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 700px) { .tips-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ faq */
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.faq-toc { position: sticky; top: calc(var(--header-h) + 1rem); }
.faq-toc ul { list-style: none; display: grid; gap: 0.25rem; }
.faq-toc a { display: block; padding: 0.55rem 0.85rem; border-radius: var(--radius-sm); text-decoration: none; color: var(--ink-2); font-weight: 600; font-size: 0.95rem; }
.faq-toc a:hover { background: var(--teal-50); color: var(--teal-900); }
.faq-group { margin-bottom: 2.5rem; }
.faq-group h2 { font-size: 1.4rem; margin-bottom: 1rem; }
@media (max-width: 800px) { .faq-layout { grid-template-columns: 1fr; gap: 1.5rem; } .faq-toc { position: static; } .faq-toc ul { display: flex; flex-wrap: wrap; } }

/* ---------------------------------------------------------------- legal */
.legal h2 { font-size: 1.2rem; margin-top: 2rem; }
.legal p { font-size: 0.97rem; }

/* ------------------------------------------------------------------ 404 */
.notfound { padding: clamp(4rem, 10vw, 8rem) 0; }
.notfound-code { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 9rem); font-weight: 800; color: var(--teal-100); line-height: 1; margin: 0; letter-spacing: -0.04em; }

/* --------------------------------------------------------------- motion */
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- print */
@media print {
  .site-header, .site-footer, .sticky-bar, .cta-band, .checklist-actions, .breadcrumbs, .hero-actions, .nav-backdrop { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .page-hero { border: 0; background: none; padding: 0 0 1rem; }
  .section { padding: 0.5rem 0; }
  .checklist-bar { position: static; }
  .check-box { border-color: #000; }
  a { color: inherit; text-decoration: none; }
}
