/* ==========================================================
   스스로연구소 · SEUSEURO LAB
   Design tokens from brand board: #0D1B2A / #333333 / #FF6A00
   Type: Pretendard (KOR) · Montserrat (ENG)
   ========================================================== */

:root {
  --navy: #0D1B2A;
  --navy-2: #16283C;
  --ink: #333333;
  --muted: #6B7480;
  --orange: #FF6A00;
  --orange-dark: #E05E00;
  --paper: #FFFFFF;
  --mist: #F5F6F7;
  --mist-2: #ECEFF2;
  --line: #DDE2E7;
  --line-2: #C9D0D8;

  --ok: #1E7B4F;   --ok-bg: #E6F3EC;
  --warn: #FF6A00; --warn-bg: #FFF1E6;
  --stop: #B3261E; --stop-bg: #FBEAE8;

  --font-kr: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  --font-en: 'Montserrat', var(--font-kr);

  --max: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --r: 6px;
  --r-sm: 4px;
  --shadow-focus: 0 0 0 3px rgba(255, 106, 0, .28);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-kr);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding-left: 1.25em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--r-sm); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.en { font-family: var(--font-en); letter-spacing: .12em; font-weight: 500; }

/* ---------- layout ---------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 104px) 0; overflow: hidden; }
.section-tight { padding: clamp(36px, 5vw, 64px) 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy); color: #D8E0E8; }
.section-navy h2, .section-navy h3 { color: #fff; }

.sec-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-navy .sec-head p { color: #AEB9C6; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand svg { width: 42px; height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-kr { font-weight: 700; font-size: 1.22rem; color: var(--navy); letter-spacing: -0.01em; }
.brand-en { font-family: var(--font-en); font-size: .58rem; letter-spacing: .22em; color: var(--navy); margin-top: 3px; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { padding: 8px 12px; border-radius: var(--r-sm); font-size: .95rem; color: var(--ink); }
.nav a:hover { background: var(--mist); color: var(--navy); }
.nav a.is-active { color: var(--navy); font-weight: 600; box-shadow: inset 0 -2px 0 var(--orange); border-radius: 0; }
.nav .nav-sep { width: 1px; height: 18px; background: var(--line-2); margin: 0 8px; }

.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
         flex-direction: column; align-items: stretch; padding: 8px var(--gutter) 16px; gap: 0; display: none; }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--mist-2); border-radius: 0; }
  .nav a.is-active { box-shadow: none; border-left: 3px solid var(--orange); padding-left: 10px; }
  .nav .nav-sep { display: none; }
  .nav .btn { margin-top: 12px; text-align: center; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r); border: 1px solid transparent;
  font-weight: 600; font-size: .98rem; line-height: 1.2; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { border-color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-sm { padding: 8px 14px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 88px) 0 clamp(36px, 5vw, 64px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero { overflow: hidden; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.22; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero-lead { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--ink); max-width: 34em; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-note { font-size: .88rem; color: var(--muted); }

/* the one signature element: blueprint guide lines around the photo */
.blueprint { position: relative; }
.blueprint img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blueprint::before, .blueprint::after {
  content: ""; position: absolute; pointer-events: none;
  border: 0 dashed var(--line-2);
}
.blueprint::before { inset: -16px -44px; border-top-width: 1px; border-bottom-width: 1px; }
.blueprint::after { inset: -44px -16px; border-left-width: 1px; border-right-width: 1px; }
.blueprint .mark { position: absolute; right: 18px; bottom: 18px; width: 22px; height: 26px; background: var(--orange); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { overflow: hidden; }
}

/* page-load moment (single, restrained) */
@media (prefers-reduced-motion: no-preference) {
  .rise > * { opacity: 0; transform: translateY(14px); animation: rise .6s cubic-bezier(.2,.7,.2,1) forwards; }
  .rise > *:nth-child(2) { animation-delay: .08s; }
  .rise > *:nth-child(3) { animation-delay: .16s; }
  .rise > *:nth-child(4) { animation-delay: .24s; }
  .rise > *:nth-child(5) { animation-delay: .32s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- judgement badges ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; font-size: .8rem; font-weight: 600; white-space: nowrap; line-height: 1.5; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge-direct { color: var(--ok); background: var(--ok-bg); }
.badge-assist { color: var(--warn); background: var(--warn-bg); }
.badge-verify { color: var(--stop); background: var(--stop-bg); }

.legend { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--muted); }
.legend strong { color: var(--ink); font-weight: 600; }

/* ---------- mode strip (A/B/C) ---------- */
.modes { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.mode { padding: 28px 26px; border-right: 1px solid var(--line); }
.mode:last-child { border-right: 0; }
.mode-key { font-family: var(--font-en); font-weight: 600; color: var(--orange); font-size: .85rem; letter-spacing: .08em; margin-bottom: 8px; }
.mode h3 { font-size: 1.2rem; margin-bottom: 8px; }
.mode p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.mode .eg { font-size: .9rem; color: var(--ink); }
@media (max-width: 860px) { .modes { grid-template-columns: 1fr; } .mode { border-right: 0; border-bottom: 1px solid var(--line); } .mode:last-child { border-bottom: 0; } }

/* ---------- service cards ---------- */
.svc { display: block; border: 1px solid var(--line); background: #fff; transition: border-color .15s; }
.svc:hover { border-color: var(--navy); }
.svc img { aspect-ratio: 4/3; object-fit: cover; }
.svc-body { padding: 20px 22px 22px; }
.svc-stage { font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.svc h3 { font-size: 1.22rem; margin-bottom: 8px; }
.svc p { font-size: .95rem; color: var(--ink); margin: 0 0 14px; }
.svc-link { font-size: .9rem; font-weight: 600; color: var(--navy); }
.svc-core .svc-stage { color: var(--orange); font-weight: 600; }

/* ---------- steps (sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 18px; border-top: 1px dashed var(--line-2); }
.step { position: relative; padding: 0 20px 0 0; }
.step-n { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--navy); color: var(--navy); font-family: var(--font-en); font-weight: 600; font-size: .9rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; position: relative; }
.step:first-child .step-n { background: var(--orange); border-color: var(--orange); color: #fff; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 20px; } .steps::before { display: none; } .step { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; } .step-n { margin: 0; } }

/* ---------- tables ---------- */
.tbl { border-top: 2px solid var(--navy); font-size: .93rem; }
.tbl th, .tbl td { padding: 12px 12px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.tbl th { font-weight: 600; color: var(--navy); background: var(--mist); font-size: .88rem; white-space: nowrap; }
.tbl td.c, .tbl th.c { text-align: center; }
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.score { font-family: var(--font-en); font-weight: 600; font-size: .82rem; color: var(--navy); }

/* ---------- cards / boxes ---------- */
.box { border: 1px solid var(--line); padding: 24px 26px; background: #fff; }
.box h3 { font-size: 1.1rem; margin-bottom: 8px; }
.box p { font-size: .95rem; color: var(--ink); margin: 0; }
.box-accent { border-left: 4px solid var(--orange); }
.box-navy { border-left: 4px solid var(--navy); background: var(--mist); }
.callout { padding: 22px 26px; background: var(--warn-bg); border-left: 4px solid var(--orange); }
.callout strong { color: var(--navy); }
.callout p { margin: 0; font-size: .95rem; }
.callout-stop { background: var(--stop-bg); border-left-color: var(--stop); }
.callout-ok { background: var(--ok-bg); border-left-color: var(--ok); }

.fact { border-top: 2px solid var(--navy); padding-top: 14px; }
.fact .num { font-family: var(--font-en); font-weight: 600; font-size: 1.9rem; color: var(--navy); line-height: 1.1; }
.fact .num small { font-family: var(--font-kr); font-size: 1rem; font-weight: 600; margin-left: 4px; }
.fact .lbl { font-size: .9rem; color: var(--muted); margin-top: 6px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-size: .86rem; background: #fff; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(36px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .kicker { font-size: .92rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero .lead { font-size: 1.1rem; max-width: 40em; color: var(--ink); margin: 0 0 22px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .page-hero-grid { grid-template-columns: 1fr; } }
.page-hero-grid img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

/* ---------- prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 8px; }
.prose p, .prose li { font-size: 1rem; }
.prose ul { margin-bottom: 1em; }
.prose li + li { margin-top: 6px; }
.prose .small { font-size: .88rem; color: var(--muted); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }
.price { border: 1px solid var(--line); padding: 26px 24px; display: flex; flex-direction: column; background: #fff; }
.price-tier { font-family: var(--font-en); font-weight: 600; letter-spacing: .1em; font-size: .78rem; color: var(--orange); margin-bottom: 8px; }
.price h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price .amt { font-weight: 700; color: var(--navy); font-size: 1.15rem; margin-bottom: 4px; }
.price .amt small { font-weight: 500; color: var(--muted); font-size: .82rem; }
.price .note { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.price ul { list-style: none; padding: 0; margin: 0 0 20px; font-size: .92rem; }
.price li { padding: 6px 0; border-top: 1px solid var(--mist-2); }
.price li:first-child { border-top: 0; }
.price .btn { margin-top: auto; }
.price-featured { border-color: var(--navy); box-shadow: inset 0 3px 0 var(--orange); }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 6px; }
.field label .req { color: var(--orange); margin-left: 2px; }
.field input[type=text], .field input[type=tel], .field input[type=email], .field input[type=number], .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: #fff; font-size: 1rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.check input { margin-top: 5px; width: 16px; height: 16px; accent-color: var(--orange); }
.form-msg { padding: 16px 18px; font-size: .95rem; border-left: 4px solid var(--navy); background: var(--mist); display: none; }
.form-msg.is-ok { display: block; border-left-color: var(--ok); background: var(--ok-bg); }
.form-msg.is-err { display: block; border-left-color: var(--stop); background: var(--stop-bg); }
.form-msg.is-info { display: block; }
.hp { position: absolute; left: -9999px; }

/* ---------- diagnosis wizard ---------- */
.wiz { max-width: 820px; margin-inline: auto; }
.wiz-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; font-size: .88rem; color: var(--muted); }
.wiz-bar { flex: 1; height: 4px; background: var(--mist-2); position: relative; }
.wiz-bar > i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--orange); transition: width .25s; }
.wiz-step { display: none; }
.wiz-step.is-active { display: block; }
.wiz-q { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 6px; }
.wiz-help { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.opts { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.opts-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .opts, .opts-3 { grid-template-columns: 1fr; } }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; }
.opt label, .opt .opt-box { display: block; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: var(--r-sm); cursor: pointer; background: #fff; font-size: .98rem; transition: border-color .12s, background .12s; }
.opt label strong { display: block; color: var(--navy); font-weight: 600; }
.opt label span { display: block; font-size: .85rem; color: var(--muted); margin-top: 2px; }
.opt input:checked + label { border-color: var(--orange); background: var(--warn-bg); box-shadow: inset 0 0 0 1px var(--orange); }
.opt input:focus-visible + label { box-shadow: var(--shadow-focus); }
.wiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.wiz-err { color: var(--stop); font-size: .88rem; margin-top: 10px; display: none; }
.wiz-err.is-show { display: block; }

/* result */
.res-head { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 32px; }
@media (max-width: 640px) { .res-head { grid-template-columns: 1fr; } }
.res-stat { padding: 20px 22px; border: 1px solid var(--line); }
.res-stat .n { font-family: var(--font-en); font-weight: 600; font-size: 2.2rem; line-height: 1; }
.res-stat .l { font-size: .9rem; margin-top: 8px; color: var(--muted); }
.res-stat.direct .n { color: var(--ok); } .res-stat.assist .n { color: var(--warn); } .res-stat.verify .n { color: var(--stop); }
.res-block { margin-bottom: 36px; }
.res-block h3 { font-size: 1.2rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--navy); }
.seq { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.seq li { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); font-size: .95rem; }
.seq .ph { font-family: var(--font-en); font-weight: 600; color: var(--muted); font-size: .8rem; }
.seq .nm { font-weight: 600; color: var(--navy); }
.seq .nm small { display: block; font-weight: 400; color: var(--muted); font-size: .82rem; }
.chk { list-style: none; padding: 0; margin: 0; }
.chk li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--mist-2); font-size: .95rem; }
.chk li::before { content: ""; position: absolute; left: 0; top: 14px; width: 16px; height: 16px; border: 2px solid var(--navy); border-radius: 3px; }
.potential { display: inline-block; padding: 6px 14px; border-radius: 999px; font-weight: 700; }
.potential.high { background: var(--ok-bg); color: var(--ok); }
.potential.mid { background: var(--warn-bg); color: var(--warn); }
.potential.low { background: var(--mist-2); color: var(--muted); }

/* guide filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }
.filters input[type=search] { padding: 10px 14px; border: 1px solid var(--line-2); border-radius: var(--r-sm); min-width: 240px; font-size: .95rem; }
.chip { padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: #fff; font-size: .88rem; font-weight: 500; }
.chip.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }
.guide-list { display: grid; gap: 10px; }
.g-item { border: 1px solid var(--line); background: #fff; }
.g-head { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 14px 18px; cursor: pointer; width: 100%; text-align: left; background: none; border: 0; }
.g-head .nm { font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.g-head .cat { font-size: .82rem; color: var(--muted); margin-left: 8px; font-weight: 400; }
.g-head .arrow { width: 10px; height: 10px; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg); transition: transform .15s; }
.g-item.is-open .g-head .arrow { transform: rotate(225deg); }
.g-body { display: none; padding: 0 18px 18px; border-top: 1px solid var(--mist-2); }
.g-item.is-open .g-body { display: block; }
.axes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 14px 0; }
@media (max-width: 640px) { .axes { grid-template-columns: repeat(5, 1fr); gap: 4px; } }
.axis { text-align: center; padding: 10px 6px; background: var(--mist); }
.axis .k { font-family: var(--font-en); font-size: .68rem; letter-spacing: .1em; color: var(--muted); }
.axis .v { font-family: var(--font-en); font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.axis .t { font-size: .7rem; color: var(--muted); }
.g-body p { font-size: .95rem; margin: 8px 0; }
.g-body .law { font-size: .86rem; color: var(--muted); }
@media (max-width: 640px) { .g-head { grid-template-columns: 1fr auto; } .g-head .badge { grid-column: 1; justify-self: start; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; padding: clamp(48px, 7vw, 80px) 0; }
.cta-band .inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-band p { color: #AEB9C6; margin: 0; }
@media (max-width: 760px) { .cta-band .inner { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--mist); border-top: 1px solid var(--line); padding: 48px 0 32px; font-size: .9rem; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: .9rem; color: var(--navy); margin-bottom: 10px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-grid a:hover { color: var(--navy); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 36em; margin-bottom: 8px; }
.footer-legal { border-top: 1px solid var(--line); padding-top: 20px; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.footer-legal .links a { margin-right: 14px; }

/* ---------- misc ---------- */
.kv { display: grid; grid-template-columns: 140px 1fr; gap: 8px 16px; font-size: .95rem; }
.kv dt { font-weight: 600; color: var(--navy); }
.kv dd { margin: 0; }
@media (max-width: 520px) { .kv { grid-template-columns: 1fr; gap: 2px 0; } .kv dd { margin-bottom: 10px; } }
.divider-dashed { border: 0; border-top: 1px dashed var(--line-2); margin: 40px 0; }
.text-muted { color: var(--muted); }
.text-small { font-size: .88rem; }
.mt-0 { margin-top: 0 !important; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 16px 0; cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-en); color: var(--orange); font-size: 1.2rem; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 18px; color: var(--ink); font-size: .95rem; max-width: 720px; }

.notfound { text-align: center; padding: 100px 0; }
.notfound h1 { font-family: var(--font-en); font-size: 5rem; color: var(--orange); line-height: 1; }
