/* =========================================================
   SOINTO AI集客サポートサービス — Design System
   Palette: Navy base + Gold (brand) + Blue (trust/CTA)
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.8; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }

/* ---------- Tokens ---------- */
:root{
  /* Navy */
  --navy-900:#0A1626;
  --navy-850:#0C1B30;
  --navy-800:#10233C;
  --navy-700:#173250;
  --navy-600:#213F60;

  /* Gold (brand) */
  --gold-700:#9C7A34;
  --gold-600:#B8934A;
  --gold-500:#C9A65C;
  --gold-400:#DEC17F;
  --gold-100:#F3E9D2;
  --gold-grad:linear-gradient(135deg,#B8863B 0%,#E4C77E 45%,#B8863B 100%);

  /* Blue (trust / CTA) */
  --blue-700:#1749B0;
  --blue-600:#1B5FD9;
  --blue-500:#2670EA;
  --blue-400:#5B93F2;
  --blue-50:#EAF1FE;
  --cyan-500:#12A9D6;

  /* Ink / neutrals */
  --ink-900:#111C2B;
  --ink-700:#2C3A4C;
  --muted:#5C6B7E;
  --muted-2:#8494A5;
  --line:#E3E9F1;
  --line-2:#EEF2F7;
  --bg:#FFFFFF;
  --bg-soft:#F5F8FC;
  --bg-soft-2:#EDF3F9;

  /* State */
  --ok:#12855A;
  --warn:#B9791B;
  --danger:#C0392B;

  /* Sizing */
  --container:1120px;
  --container-narrow:820px;
  --radius:14px;
  --radius-lg:22px;
  --radius-pill:999px;

  /* Shadow */
  --shadow-sm:0 2px 8px rgba(16,35,60,.06);
  --shadow:0 10px 30px rgba(16,35,60,.10);
  --shadow-lg:0 24px 60px rgba(10,22,38,.18);
  --shadow-gold:0 12px 34px rgba(184,134,59,.28);

  /* Type */
  --font-sans:"Helvetica Neue","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic","Yu Gothic","YuGothic","Meiryo",sans-serif;
  --font-serif:"Times New Roman","Hiragino Mincho ProN","Yu Mincho","YuMincho","Noto Serif JP",serif;

  --header-h:72px;
}

html{ scroll-padding-top: calc(var(--header-h) + 12px); }
body{
  font-family:var(--font-sans);
  color:var(--ink-900);
  background:var(--bg);
  font-size:16px;
  letter-spacing:.01em;
}

/* ---------- Layout ---------- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:22px; }
.container.narrow{ max-width:var(--container-narrow); }
.section{ padding:88px 0; position:relative; }
.section.tight{ padding:64px 0; }
.section--soft{ background:var(--bg-soft); }
.section--navy{ background:var(--navy-900); color:#E9EEF5; }
.section--navy .section-title{ color:#fff; }
.section--navy .lead{ color:#B9C6D6; }

/* ---------- Section heads ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-size:.78rem; font-weight:700; letter-spacing:.14em;
  color:var(--gold-700); text-transform:uppercase;
  margin-bottom:16px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold-grad); border-radius:2px; }
.section--navy .eyebrow{ color:var(--gold-400); }

.section-head{ max-width:760px; margin-bottom:52px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-title{
  font-size:clamp(1.55rem,3.4vw,2.3rem);
  line-height:1.4; font-weight:800; letter-spacing:.01em; color:var(--ink-900);
}
.section-title .hl{ color:var(--blue-600); }
.section-title .gold{
  background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{ margin-top:18px; font-size:1.02rem; color:var(--muted); line-height:1.95; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  padding:15px 28px; border-radius:var(--radius-pill);
  font-weight:700; font-size:1rem; letter-spacing:.02em;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn .arrow{ transition:transform .18s ease; }
.btn:hover .arrow{ transform:translateX(3px); }
.btn-primary{ background:var(--blue-600); color:#fff; box-shadow:0 10px 26px rgba(27,95,217,.32); }
.btn-primary:hover{ background:var(--blue-500); transform:translateY(-2px); box-shadow:0 16px 34px rgba(27,95,217,.4); }
.btn-gold{ background:var(--gold-grad); color:#3A2B0C; box-shadow:var(--shadow-gold); }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 18px 40px rgba(184,134,59,.4); }
.btn-outline{ background:transparent; color:var(--ink-900); box-shadow:inset 0 0 0 1.5px var(--line); }
.btn-outline:hover{ box-shadow:inset 0 0 0 1.5px var(--blue-400); color:var(--blue-600); }
.btn-ghost-light{ background:rgba(255,255,255,.10); color:#fff; box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.35); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.18); transform:translateY(-2px); }
.btn-lg{ padding:18px 36px; font-size:1.06rem; }
.btn-block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; height:var(--header-h); z-index:100;
  display:flex; align-items:center;
  transition:background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom:1px solid transparent;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.site-header.solid{ background:rgba(255,255,255,.92); backdrop-filter:saturate(160%) blur(10px); box-shadow:var(--shadow-sm); border-bottom-color:var(--line); }

.brand{ display:flex; align-items:center; gap:12px; }
.brand__emblem{ width:38px; height:38px; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--font-serif); font-weight:700; font-size:1.18rem; letter-spacing:.16em; color:#fff; }
.brand__sub{ font-size:.62rem; letter-spacing:.18em; color:var(--gold-400); font-weight:700; }
.site-header.solid .brand__name{ color:var(--ink-900); }
.site-header.solid .brand__sub{ color:var(--gold-700); }

.nav{ display:flex; align-items:center; gap:30px; }
.nav a{ font-size:.92rem; font-weight:600; color:rgba(255,255,255,.86); transition:color .2s ease; }
.nav a:hover{ color:#fff; }
.site-header.solid .nav a{ color:var(--ink-700); }
.site-header.solid .nav a:hover{ color:var(--blue-600); }
.header-cta{ display:flex; align-items:center; gap:14px; }
.header-cta .tel{ font-weight:800; font-size:1rem; color:#fff; letter-spacing:.02em; }
.site-header.solid .header-cta .tel{ color:var(--ink-900); }
.header-cta .btn{ padding:11px 22px; font-size:.92rem; }

/* burger */
.burger{ display:none; width:44px; height:44px; border-radius:10px; position:relative; }
.burger span{ position:absolute; left:11px; right:11px; height:2px; background:#fff; border-radius:2px; transition:.25s; }
.site-header.solid .burger span{ background:var(--ink-900); }
.burger span:nth-child(1){ top:15px; } .burger span:nth-child(2){ top:21px; } .burger span:nth-child(3){ top:27px; }
.burger.open span:nth-child(1){ top:21px; transform:rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ top:21px; transform:rotate(-45deg); }

/* mobile drawer */
.mobile-nav{ position:fixed; inset:var(--header-h) 0 0 0; background:var(--navy-900); color:#fff; z-index:99; transform:translateY(-8px); opacity:0; pointer-events:none; transition:.28s ease; padding:28px 22px 40px; overflow-y:auto; }
.mobile-nav.open{ opacity:1; transform:none; pointer-events:auto; }
.mobile-nav a{ display:block; padding:16px 4px; font-size:1.05rem; font-weight:600; border-bottom:1px solid rgba(255,255,255,.10); }
.mobile-nav .btn{ margin-top:24px; }
.mobile-nav .m-tel{ margin-top:20px; text-align:center; font-size:1.3rem; font-weight:800; }
.mobile-nav .m-note{ text-align:center; color:var(--muted-2); font-size:.82rem; margin-top:6px; }

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden; color:#fff;
  padding:calc(var(--header-h) + 84px) 0 96px;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(27,95,217,.30), transparent 60%),
    radial-gradient(760px 540px at 6% 108%, rgba(201,166,92,.20), transparent 60%),
    linear-gradient(160deg,#0A1626 0%,#0F2340 58%,#0A1626 100%);
}
.hero::after{
  content:""; position:absolute; right:-120px; top:40px; width:520px; height:520px;
  background:url("emblem.png") center/contain no-repeat; opacity:.05; pointer-events:none;
}
.hero__inner{ position:relative; max-width:820px; }
.hero__eyebrow{
  display:inline-flex; align-items:center; gap:.6em; font-weight:700; font-size:.84rem; letter-spacing:.12em;
  color:var(--gold-400); background:rgba(201,166,92,.12); border:1px solid rgba(222,193,127,.32);
  padding:8px 16px; border-radius:var(--radius-pill); margin-bottom:26px;
}
.hero h1{
  font-size:clamp(2rem,5.4vw,3.5rem); line-height:1.32; font-weight:800; letter-spacing:.005em;
}
.hero h1 .gold{ background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero h1 .u{ position:relative; white-space:nowrap; }
.hero__sub{ margin-top:26px; font-size:clamp(1rem,2.1vw,1.16rem); color:#C7D4E4; line-height:1.95; max-width:640px; }
.hero__price{
  display:inline-flex; flex-wrap:wrap; align-items:baseline; gap:10px; margin-top:28px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16);
  padding:14px 22px; border-radius:var(--radius);
}
.hero__price .amt{ font-size:1.9rem; font-weight:800; color:#fff; letter-spacing:.01em; }
.hero__price .amt small{ font-size:.9rem; font-weight:700; color:#C7D4E4; }
.hero__price .sep{ width:1px; height:26px; background:rgba(255,255,255,.22); }
.hero__price .init{ font-weight:700; color:var(--gold-400); }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero__trust{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:34px; }
.hero__trust li{ display:flex; align-items:center; gap:.5em; font-size:.9rem; color:#B9C6D6; }
.hero__trust .chk{ color:var(--gold-400); font-weight:900; }

/* ---------- Generic cards / grids ---------- */
.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); }

.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:30px; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:#D4DEEA; }
.card__icon{
  width:54px; height:54px; border-radius:14px; display:grid; place-items:center;
  font-size:1.5rem; margin-bottom:18px; background:var(--blue-50); color:var(--blue-600);
}
.card__title{ font-size:1.16rem; font-weight:800; margin-bottom:10px; }
.card__title .en{ display:block; font-size:.68rem; letter-spacing:.14em; color:var(--muted-2); font-weight:700; margin-top:4px; }
.card__body{ color:var(--muted); font-size:.95rem; line-height:1.9; }
.card__tag{ position:absolute; top:-13px; left:24px; font-size:.72rem; font-weight:800; padding:6px 14px; border-radius:var(--radius-pill); }
.card.rel{ position:relative; }

/* pill labels */
.pill{ display:inline-block; font-size:.72rem; font-weight:800; padding:5px 12px; border-radius:var(--radius-pill); letter-spacing:.04em; }
.pill--base{ background:#EDF0F4; color:#5A6b7d; }
.pill--gold{ background:var(--gold-grad); color:#3A2B0C; }
.pill--blue{ background:var(--blue-600); color:#fff; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-900); color:#AEBCCC; padding:64px 0 30px; font-size:.9rem; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.10); }
.footer-brand .logo{ width:120px; margin-bottom:18px; }
.footer-brand p{ line-height:1.9; color:#8D9BAC; max-width:340px; }
.footer-col h4{ color:#fff; font-size:.9rem; letter-spacing:.08em; margin-bottom:16px; }
.footer-col a, .footer-col li{ display:block; padding:6px 0; color:#AEBCCC; transition:color .2s; }
.footer-col a:hover{ color:var(--gold-400); }
.footer-nap dt{ color:#7E8D9E; font-size:.78rem; margin-top:10px; }
.footer-nap dd{ color:#D5DEE8; }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; padding-top:22px; color:#6E7E90; font-size:.8rem; }
.footer-bottom a{ color:#8D9BAC; }
.footer-bottom a:hover{ color:var(--gold-400); }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Skeleton note (Phase 1 placeholder) ---------- */
.stub{ border:1px dashed #C6D2E0; border-radius:var(--radius); padding:22px; color:var(--muted-2); font-size:.9rem; background:repeating-linear-gradient(45deg,#fafcff,#fafcff 12px,#f4f8fd 12px,#f4f8fd 24px); }

/* =========================================================
   Phase 2 components
   ========================================================= */

/* ---- Hero CTA note ---- */
.hero__cta-note{ margin-top:14px; font-size:.86rem; color:#9FB0C4; }

/* ---- Pain cards ---- */
.pain{ display:flex; gap:16px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-left:4px solid var(--gold-500); border-radius:var(--radius); padding:22px 24px; transition:transform .2s ease, box-shadow .2s ease; }
.pain:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.pain__icn{ font-size:1.55rem; line-height:1.5; flex:0 0 auto; }
.pain p{ color:var(--ink-700); font-size:1rem; line-height:1.8; font-weight:600; }

/* ---- Steps / timeline ---- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px 26px; }
.step .era{ font-size:.76rem; font-weight:800; letter-spacing:.06em; color:var(--muted-2); }
.step .step-icn{ font-size:1.7rem; margin:14px 0 10px; }
.step h3{ font-size:1.1rem; font-weight:800; margin-bottom:8px; color:var(--ink-900); }
.step p{ color:var(--muted); font-size:.92rem; line-height:1.85; }
.step.is-now{ border-color:var(--gold-500); background:linear-gradient(180deg,#FFFCF5,#fff); box-shadow:0 12px 34px rgba(184,134,59,.16); }
.step.is-now .era{ color:var(--gold-700); }
.steps-note{ text-align:center; margin-top:38px; font-size:clamp(1.05rem,2.3vw,1.3rem); font-weight:800; color:var(--ink-900); }
.steps-note .hl{ color:var(--blue-600); }

/* metrics (light) */
.metrics{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.metric{ background:#fff; border:1px solid var(--line); border-top:3px solid var(--gold-500); border-radius:12px; padding:22px 22px 20px; }
.metric .m-num{ font-size:1.85rem; font-weight:800; color:var(--ink-900); line-height:1.2; }
.metric .m-num .arw{ color:var(--blue-600); }
.metric .m-lbl{ font-size:.9rem; color:var(--ink-700); margin-top:6px; font-weight:600; }
.metric .m-src{ font-size:.72rem; color:var(--muted-2); margin-top:8px; }

/* ---- Source / domain cards with top tag ---- */
.tagcard{ position:relative; background:#fff; border:1.5px solid var(--line); border-radius:var(--radius-lg); padding:34px 28px 28px; transition:transform .2s ease, box-shadow .2s ease; }
.tagcard:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.tagcard.is-key{ border-color:var(--gold-500); }
.tagcard.is-ai{ border-color:var(--blue-400); }
.tagcard__tag{ position:absolute; top:-14px; left:26px; font-size:.72rem; font-weight:800; padding:6px 14px; border-radius:var(--radius-pill); letter-spacing:.03em; }
.tag-base{ background:#E7ECF2; color:#5A6B7D; }
.tag-key{ background:var(--gold-grad); color:#3A2B0C; }
.tag-ai{ background:var(--blue-600); color:#fff; }
.tagcard__icn{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center; font-size:1.45rem; margin-bottom:14px; }
.icn-base{ background:#EEF1F5; }
.icn-key{ background:var(--gold-100); }
.icn-ai{ background:var(--blue-50); }
.tagcard h3{ font-size:1.16rem; font-weight:800; }
.tagcard h3 .en{ display:block; font-size:.66rem; letter-spacing:.12em; color:var(--muted-2); font-weight:700; margin-top:5px; }
.tagcard p{ margin-top:12px; color:var(--muted); font-size:.94rem; line-height:1.9; }
.point-line{ margin-top:36px; padding:22px 26px; background:#fff; border:1px dashed var(--gold-500); border-radius:var(--radius); text-align:center; font-weight:700; color:var(--ink-700); }
.point-line .gold{ background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---- Feature list (checks) ---- */
.flist li{ position:relative; padding:9px 0 9px 28px; color:var(--ink-700); font-size:.94rem; border-bottom:1px solid var(--line-2); }
.flist li:last-child{ border-bottom:none; }
.flist li::before{ content:"✓"; position:absolute; left:0; top:9px; color:var(--blue-600); font-weight:900; }
.domain-note{ margin-top:22px; font-size:.82rem; color:var(--muted-2); text-align:center; }

/* ---- Feature cards ---- */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px 26px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s; }
.feature:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:#D4DEEA; }
.feature__icn{ width:50px; height:50px; border-radius:13px; display:grid; place-items:center; font-size:1.4rem; background:var(--blue-50); color:var(--blue-600); margin-bottom:16px; }
.feature h3{ font-size:1.05rem; font-weight:800; margin-bottom:10px; line-height:1.5; }
.feature p{ color:var(--muted); font-size:.9rem; line-height:1.85; }

/* ---- Stats (navy) ---- */
.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.stat{ text-align:center; padding:34px 22px; border-radius:var(--radius-lg); background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.13); }
.stat .num{ font-size:clamp(2.2rem,5vw,3rem); font-weight:800; color:#fff; line-height:1.1; letter-spacing:.01em; }
.stat .num .gold{ background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .num .arw{ color:var(--gold-400); font-weight:700; }
.stat .lbl{ margin-top:12px; color:#CBD6E4; font-size:.92rem; font-weight:600; }
.stat .sub{ margin-top:4px; color:#8FA0B4; font-size:.8rem; }
.evidence-note{ margin-top:30px; text-align:center; color:#8FA0B4; font-size:.8rem; line-height:1.8; }

/* ---- Compare table ---- */
.compare-wrap{ overflow-x:auto; -webkit-overflow-scrolling:touch; border-radius:var(--radius); }
.compare{ width:100%; border-collapse:separate; border-spacing:0; min-width:660px; background:#fff; }
.compare th, .compare td{ padding:14px 14px; text-align:center; border-bottom:1px solid var(--line); font-size:.9rem; }
.compare thead th{ background:var(--navy-800); color:#fff; font-weight:700; position:sticky; top:0; }
.compare thead th.hi{ background:var(--blue-600); }
.compare tbody th{ text-align:left; font-weight:600; color:var(--ink-700); background:var(--bg-soft); white-space:nowrap; }
.compare td.col-hi{ background:var(--blue-50); }
.compare .yes{ color:var(--ok); font-weight:900; font-size:1.05rem; }
.compare .part{ color:var(--warn); font-weight:800; }
.compare .no{ color:var(--muted-2); }
.compare .price-row th, .compare .price-row td{ font-weight:800; font-size:1rem; background:#fff; border-bottom:none; }
.compare .price-row td.col-hi{ color:var(--blue-700); background:var(--blue-50); font-size:1.15rem; }
.compare .price-sub{ display:inline-block; font-size:.72rem; font-weight:600; color:var(--muted-2); margin-top:3px; }
.compare-legend{ margin-top:16px; font-size:.8rem; color:var(--muted-2); display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }

/* ---- Price card ---- */
.price-card{ max-width:540px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow); overflow:hidden; }
.price-card__head{ background:linear-gradient(160deg,#0F2340,#0A1626); color:#fff; padding:30px 26px; text-align:center; }
.price-card__name{ font-size:.95rem; letter-spacing:.06em; color:var(--gold-400); font-weight:700; }
.price-card__amt{ margin-top:12px; font-size:3rem; font-weight:800; line-height:1; }
.price-card__amt small{ font-size:1rem; font-weight:700; color:#C7D4E4; }
.price-card__init{ margin-top:14px; display:inline-block; background:var(--gold-grad); color:#3A2B0C; font-weight:800; padding:7px 18px; border-radius:var(--radius-pill); font-size:.9rem; }
.price-card__body{ padding:28px 30px 32px; }
.conditions{ display:grid; gap:12px; margin-bottom:24px; }
.conditions li{ position:relative; padding-left:26px; font-size:.92rem; color:var(--ink-700); line-height:1.7; }
.conditions li::before{ content:counter(cond); counter-increment:cond; position:absolute; left:0; top:1px; width:19px; height:19px; border-radius:50%; background:var(--navy-800); color:#fff; font-size:.68rem; font-weight:800; display:grid; place-items:center; }
.conditions{ counter-reset:cond; }

/* ---- FAQ ---- */
.faq-list{ display:grid; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:box-shadow .2s; }
.faq-item[open]{ box-shadow:var(--shadow-sm); }
.faq-item summary{ list-style:none; cursor:pointer; padding:20px 22px; font-weight:700; color:var(--ink-900); display:flex; gap:14px; align-items:flex-start; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .qmark{ flex:0 0 auto; width:24px; height:24px; border-radius:6px; background:var(--blue-600); color:#fff; font-size:.82rem; font-weight:800; display:grid; place-items:center; margin-top:1px; }
.faq-item summary .qtxt{ flex:1; line-height:1.6; }
.faq-item summary .plus{ flex:0 0 auto; font-size:1.4rem; color:var(--muted-2); transition:transform .25s ease; line-height:1; }
.faq-item[open] summary .plus{ transform:rotate(45deg); color:var(--blue-600); }
.faq-item .ans{ padding:0 22px 22px 60px; color:var(--muted); line-height:1.95; font-size:.95rem; }

/* ---- Why grid ---- */
.why-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.why-item{ display:flex; gap:18px; padding:26px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); }
.why-item .wno{ flex:0 0 auto; font-family:var(--font-serif); font-size:1.7rem; font-weight:700; background:var(--gold-grad); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1; }
.why-item h3{ font-size:1.08rem; font-weight:800; margin-bottom:8px; }
.why-item p{ color:var(--muted); font-size:.93rem; line-height:1.85; }

/* ---- Contact band ---- */
.contact-actions{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-top:8px; }
.contact-tel{ text-align:center; margin-top:26px; color:#B9C6D6; }
.contact-tel a{ display:block; font-size:1.7rem; font-weight:800; color:#fff; letter-spacing:.02em; }
.contact-tel .hrs{ font-size:.82rem; color:#8FA0B4; margin-top:4px; }

/* ---- Contact form ---- */
.contact-card{ background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:34px 32px; text-align:left; }
.form-row{ margin-bottom:18px; }
.form-row.two{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-row.two .form-row{ margin-bottom:0; }
.form-label{ display:block; font-size:.9rem; font-weight:700; color:var(--ink-900); margin-bottom:7px; }
.form-label .req{ display:inline-block; margin-left:6px; font-size:.68rem; font-weight:800; color:#fff; background:var(--danger); padding:2px 7px; border-radius:4px; vertical-align:middle; }
.form-label .opt{ display:inline-block; margin-left:6px; font-size:.68rem; font-weight:700; color:var(--muted-2); background:var(--line-2); padding:2px 7px; border-radius:4px; vertical-align:middle; }
.form-control{ width:100%; padding:13px 15px; font:inherit; color:var(--ink-900); background:#fff; border:1.5px solid var(--line); border-radius:10px; transition:border-color .15s ease, box-shadow .15s ease; }
.form-control::placeholder{ color:#A9B6C4; }
.form-control:focus{ outline:none; border-color:var(--blue-500); box-shadow:0 0 0 3px rgba(38,112,234,.15); }
textarea.form-control{ min-height:120px; resize:vertical; }
select.form-control{ appearance:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C6B7E' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:38px; }
.form-consent{ display:flex; align-items:flex-start; gap:10px; margin:6px 0 20px; font-size:.9rem; color:var(--ink-700); }
.form-consent input{ margin-top:4px; width:18px; height:18px; flex:0 0 auto; accent-color:var(--blue-600); }
.form-consent a{ color:var(--blue-600); text-decoration:underline; }
.form-error{ display:none; color:var(--danger); font-size:.82rem; margin-top:6px; }
.form-control.invalid, .form-consent.invalid input{ border-color:var(--danger); }
.form-note{ margin-top:16px; font-size:.8rem; color:var(--muted-2); text-align:center; }
.form-done{ display:none; text-align:center; padding:30px 10px; }
.form-done.show{ display:block; }
.form-done .ok-icn{ width:64px; height:64px; border-radius:50%; background:var(--ok); color:#fff; font-size:2rem; display:grid; place-items:center; margin:0 auto 18px; }
.form-done h3{ font-size:1.3rem; font-weight:800; margin-bottom:10px; color:var(--ink-900); }
.form-done p{ color:var(--muted); }
.form-hr{ display:flex; align-items:center; gap:14px; margin:28px 0 20px; color:#8FA0B4; font-size:.82rem; }
.form-hr::before, .form-hr::after{ content:""; flex:1; height:1px; background:rgba(255,255,255,.18); }

/* ---- Legal pages ---- */
.legal-hero{ background:linear-gradient(160deg,#0F2340,#0A1626); color:#fff; padding:calc(var(--header-h) + 56px) 0 44px; }
.legal-hero h1{ font-size:clamp(1.5rem,4vw,2.1rem); font-weight:800; }
.legal-hero .crumbs{ margin-top:12px; font-size:.85rem; color:#9FB0C4; }
.legal-hero .crumbs a{ color:#9FB0C4; } .legal-hero .crumbs a:hover{ color:var(--gold-400); }
.legal{ padding:56px 0 80px; }
.legal h2{ font-size:1.2rem; font-weight:800; margin:36px 0 14px; padding-bottom:10px; border-bottom:2px solid var(--gold-500); }
.legal h2:first-child{ margin-top:0; }
.legal p, .legal li{ color:var(--ink-700); line-height:1.95; font-size:.95rem; }
.legal ul{ list-style:disc; padding-left:1.3em; display:grid; gap:6px; }
.legal ol{ padding-left:1.4em; display:grid; gap:8px; }
.legal a{ color:var(--blue-600); text-decoration:underline; }
.legal .updated{ color:var(--muted-2); font-size:.85rem; margin-bottom:28px; }
.legal-table{ width:100%; border-collapse:collapse; margin:8px 0; }
.legal-table th, .legal-table td{ text-align:left; vertical-align:top; padding:14px 16px; border:1px solid var(--line); font-size:.93rem; line-height:1.85; }
.legal-table th{ width:34%; background:var(--bg-soft); font-weight:700; color:var(--ink-900); white-space:nowrap; }
@media (max-width:620px){
  .form-row.two{ grid-template-columns:1fr; gap:0; }
  .form-row.two .form-row{ margin-bottom:18px; }
  .legal-table th, .legal-table td{ display:block; width:100%; }
  .legal-table th{ border-bottom:none; }
}

@media (max-width:980px){
  .steps,.feature-grid,.stats,.metrics{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
}
@media (min-width:761px) and (max-width:980px){
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:760px){
  .why-grid{ grid-template-columns:1fr; }
  .metrics{ grid-template-columns:1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}
@media (max-width:760px){
  .nav, .header-cta .tel{ display:none; }
  .header-cta .btn{ display:inline-flex; padding:10px 15px; font-size:.82rem; }
  .header-cta{ gap:8px; }
  .burger{ display:block; }
  .section{ padding:64px 0; }
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
  .hero{ padding:calc(var(--header-h) + 56px) 0 72px; }
  .footer-top{ grid-template-columns:1fr; }
}
