/* ==========================================================================
   源启点 · 海牙认证官网  —  Design System
   深圳市源启点科技有限公司
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */
:root {
  --ink: #08172E;
  --ink-2: #123055;
  --ink-3: #1E4477;
  --gold: #A87C3C;
  --gold-2: #D3B379;
  --gold-soft: rgba(168, 124, 60, .12);
  --paper: #FBF9F6;
  --paper-2: #F3EEE6;
  --white: #FFFFFF;
  --muted: #5C6C82;
  --muted-2: #8394A8;
  --line: rgba(8, 23, 46, .10);
  --line-2: rgba(8, 23, 46, .06);
  --ok: #1F7A5A;

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --shadow-ambient: 0 30px 60px -34px rgba(8, 23, 46, .45);
  --shadow-soft: 0 18px 44px -32px rgba(8, 23, 46, .55);
  --shadow-lift: 0 40px 80px -40px rgba(8, 23, 46, .55);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.32, .72, 0, 1);

  --maxw: 1220px;
  --nav-h: 68px;

  --font-sans: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Microsoft YaHei",
    "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Optima", "Georgia", "Songti SC", "Times New Roman", serif;
}

/* 2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--gold-2); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* 3. Layout utilities
   ========================================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 900px; }

.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--paper { background: var(--paper); }
.section--soft { background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%); }
.section--ink { background: var(--ink); color: #EAF0F8; }
.section--ink .sec-head__desc, .section--ink .lead { color: rgba(234, 240, 248, .72); }

.hairline { height: 1px; background: var(--line); border: 0; }

[id] { scroll-margin-top: 104px; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* 4. Typography
   ========================================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(168, 124, 60, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.eyebrow--plain { border: 0; background: none; padding: 0; }

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.02em; font-weight: 700; }

.h-display { font-size: clamp(38px, 5.2vw, 66px); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; }
.h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; }
.h3 { font-size: clamp(18px, 1.5vw, 21px); font-weight: 700; }
.h4 { font-size: 16px; font-weight: 700; }

.lead { font-size: 18px; color: var(--muted); line-height: 1.85; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.tiny { font-size: 12.5px; }
.num { font-family: var(--font-display); font-variant-numeric: tabular-nums; }
.gold { color: var(--gold); }
.nowrap { white-space: nowrap; }

/* 5. Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease-spring), background-color .4s var(--ease-out);
  box-shadow: var(--shadow-soft);
  will-change: transform;
}
.btn__ico {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: rgba(255, 255, 255, .14);
  transition: transform .5s var(--ease-spring), background-color .4s var(--ease-out);
}
.btn__ico svg { width: 13px; height: 13px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:hover .btn__ico { transform: translate(3px, -3px) scale(1.06); background: rgba(255, 255, 255, .24); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--gold .btn__ico { background: rgba(255, 255, 255, .2); }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--sm { padding: 11px 18px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1px solid var(--line); box-shadow: none;
  background: rgba(255, 255, 255, .7);
}
.btn--ghost .btn__ico { background: var(--gold-soft); color: var(--gold); }
.btn--ghost:hover { border-color: rgba(168, 124, 60, .5); background: #fff; }

.btn--onink { --btn-bg: rgba(255, 255, 255, .1); --btn-fg: #fff; border: 1px solid rgba(255, 255, 255, .22); box-shadow: none; }
.btn--onink:hover { --btn-bg: rgba(255, 255, 255, .16); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-3);
  transition: gap .4s var(--ease-spring), color .3s var(--ease-out);
}
.link-arrow::after { content: "\2192"; transition: transform .4s var(--ease-spring); }
.link-arrow:hover { gap: 12px; color: var(--gold); }
.link-arrow:hover::after { transform: translateX(2px); }/* 6. Navigation
   ========================================================================== */
.nav { position: fixed; inset: 14px 0 auto; z-index: 1000; }
.nav__shell {
  max-width: 1260px; margin: 0 auto; padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 20px 40px -34px rgba(8, 23, 46, .6);
  transition: background-color .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  backdrop-filter: saturate(170%) blur(22px);
  -webkit-backdrop-filter: saturate(170%) blur(22px);
}
.nav.is-scrolled .nav__shell {
  background: rgba(255, 255, 255, .88);
  border-color: var(--line-2);
  box-shadow: 0 24px 50px -34px rgba(8, 23, 46, .75);
}
.nav__core { position: relative; z-index: 2; display: flex; align-items: center; gap: 20px; min-height: 56px; padding: 0 10px 0 14px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 13px; flex: none;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-3) 100%);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 22px -14px rgba(8, 23, 46, .9);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 17px; font-weight: 800; letter-spacing: .04em; }
.brand__text em { font-style: normal; font-size: 10px; letter-spacing: .2em; color: var(--muted-2); text-transform: uppercase; }

.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  position: relative; padding: 10px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--ink-2); white-space: nowrap;
  transition: color .35s var(--ease-out), background-color .35s var(--ease-out);
}
.nav__link:hover { color: var(--ink); background: rgba(8, 23, 46, .05); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 16px; height: 2px; border-radius: 2px; background: var(--gold);
  transform: translateX(-50%);
}
.nav__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .3s var(--ease-out); }
.nav__phone:hover { color: var(--gold); }
.nav__phone svg { width: 15px; height: 15px; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); position: relative; flex: none;
  background: rgba(255, 255, 255, .8);
}
.nav__toggle span {
  position: absolute; left: 50%; width: 18px; height: 1.6px; border-radius: 2px;
  background: var(--ink); transform: translateX(-50%);
  transition: transform .5s var(--ease-spring), opacity .3s var(--ease-out), top .5s var(--ease-spring);
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav__toggle.is-open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(.4); }
.nav__toggle.is-open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 1;
  padding: calc(var(--nav-h) + 54px) 30px 40px;
  background: rgba(251, 249, 246, .94);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-spring), visibility .5s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile a.m-link {
  font-size: 26px; font-weight: 700; letter-spacing: -.01em; padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .7s var(--ease-spring);
}
.nav-mobile.is-open a.m-link { opacity: 1; transform: translateY(0); }
.nav-mobile__foot {
  margin-top: auto; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease-out) .3s, transform .7s var(--ease-spring) .3s;
}
.nav-mobile.is-open .nav-mobile__foot { opacity: 1; transform: translateY(0); }

/* 7. Hero
   ========================================================================== */
.hero { position: relative; padding: 168px 0 96px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 82% 8%, rgba(168, 124, 60, .14), transparent 62%),
    radial-gradient(ellipse 70% 60% at 6% 92%, rgba(30, 68, 119, .12), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 23, 46, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 23, 46, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 78%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 68px; align-items: center; }
.hero__title { margin: 26px 0 24px; }
.hero__title .accent {
  white-space: nowrap;
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 44px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding-top: 30px; border-top: 1px solid var(--line); }
.stat__num { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; color: var(--ink); letter-spacing: -.02em; }
.stat__num sup { font-size: 15px; vertical-align: super; margin-left: 2px; color: var(--gold); }
.stat__label { font-size: 12.5px; color: var(--muted); margin-top: 9px; letter-spacing: .04em; }

.hero__visual { position: relative; min-height: 470px; }
.paper-card {
  position: absolute; width: min(100%, 348px); right: 8px; top: 48px;
  background: #fff; border-radius: 20px; padding: 26px 26px 30px;
  border: 1px solid var(--line-2);
  box-shadow: 0 60px 90px -50px rgba(8, 23, 46, .6), inset 0 2px 0 rgba(255, 255, 255, .8);
  animation: floaty 9s var(--ease-out) infinite;
}
.paper-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.paper-card__seal {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(168, 124, 60, .45);
  background: radial-gradient(circle at 35% 30%, rgba(211, 179, 121, .3), rgba(168, 124, 60, .08));
  display: grid; place-items: center;
}
.paper-card__seal svg { width: 22px; height: 22px; }
.paper-card__meta { text-align: right; }
.paper-card__meta b { display: block; font-size: 13.5px; letter-spacing: .04em; }
.paper-card__meta span { font-size: 10.5px; letter-spacing: .18em; color: var(--muted-2); text-transform: uppercase; }
.paper-card__rows { padding: 20px 0 4px; display: flex; flex-direction: column; gap: 11px; }
.row-line { height: 9px; border-radius: 6px; background: linear-gradient(90deg, var(--paper-2), rgba(243, 238, 230, .35)); }
.row-line.w90 { width: 90%; } .row-line.w70 { width: 70%; } .row-line.w55 { width: 55%; } .row-line.w40 { width: 40%; }
.paper-card__foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 18px; }
.stamp {
  width: 92px; height: 92px; border-radius: 50%; flex: none;
  border: 1.5px dashed rgba(30, 68, 119, .45);
  display: grid; place-items: center; text-align: center;
  transform: rotate(-11deg);
  color: var(--ink-3); font-size: 9.5px; font-weight: 700; letter-spacing: .12em; line-height: 1.5;
}
.stamp b { display: block; font-size: 11px; }
.stamp .latin { display: block; font-family: var(--font-display); font-size: 10px; letter-spacing: .1em; }

.chip-float {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line-2); box-shadow: 0 24px 44px -34px rgba(8, 23, 46, .7);
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.chip-float svg { width: 15px; height: 15px; }
.chip-float--a { left: -18px; top: 2px; animation: floaty 7.5s var(--ease-out) infinite .4s; }
.chip-float--b { left: 0; bottom: 22px; animation: floaty 8.5s var(--ease-out) infinite .9s; }
.chip-float__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(31, 122, 90, .14); }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-.4deg); }
}/* 8. Section head
   ========================================================================== */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head__title { margin: 20px 0 16px; }
.sec-head__desc { font-size: 17px; color: var(--muted); line-height: 1.8; }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; }
.sec-head--row .sec-head__body { max-width: 660px; }

/* 9. Cards (double-bezel)
   ========================================================================== */
.shell {
  background: rgba(8, 23, 46, .038);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 10px;
  transition: transform .6s var(--ease-spring), background-color .5s var(--ease-out), border-color .5s var(--ease-out);
}
.shell > .core {
  height: 100%; border-radius: calc(var(--r-xl) - 10px);
  background: var(--white); padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 20px 44px -38px rgba(8, 23, 46, .8);
  display: flex; flex-direction: column; gap: 14px;
}
.shell--hover:hover {
  transform: translateY(-6px);
  background: rgba(168, 124, 60, .12);
  border-color: rgba(168, 124, 60, .34);
}
.shell--flat > .core { padding: 24px; box-shadow: none; }
.card__ico {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(8, 23, 46, .06), rgba(8, 23, 46, .02));
  border: 1px solid var(--line-2); color: var(--ink-2);
  transition: background-color .5s var(--ease-out), color .5s var(--ease-out), transform .6s var(--ease-spring);
}
.card__ico svg { width: 21px; height: 21px; }
.shell--hover:hover .card__ico { background: var(--gold-soft); color: var(--gold); transform: translateY(-2px) rotate(-3deg); }
.card__head { display: flex; align-items: center; gap: 14px; }
.card__title { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.card__desc { font-size: 14.6px; color: var(--muted); line-height: 1.8; }
.card__list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.card__list li { position: relative; padding-left: 18px; font-size: 13.8px; color: var(--ink-2); }
.card__list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-2); }
.card__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; }
.card__foot { margin-top: auto; padding-top: 8px; }

/* 10. Bento / features
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento > .shell { grid-column: span 2; }
.bento > .shell.span-3 { grid-column: span 3; }
.bento > .shell.span-4 { grid-column: span 4; }
.bento > .shell.span-6 { grid-column: span 6; }
.bento--ink > .shell { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); }
.bento--ink > .shell > .core { background: rgba(255, 255, 255, .04); color: #EAF0F8; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); }
.bento--ink .card__desc { color: rgba(234, 240, 248, .68); }
.bento--ink .card__ico { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); color: var(--gold-2); }
.bento--ink .card__title { color: #fff; }
.bento--ink .card__list li { color: rgba(234, 240, 248, .74); }

/* 11. Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 40px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step { position: relative; }
.step__no {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line);
  font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink);
  position: relative; z-index: 1;
  box-shadow: 0 16px 30px -24px rgba(8, 23, 46, .8);
  transition: transform .6s var(--ease-spring), background-color .5s var(--ease-out), color .5s var(--ease-out);
}
.step:hover .step__no { transform: translateY(-4px); background: var(--ink); color: #fff; }
.step__title { margin: 22px 0 10px; font-size: 17.5px; font-weight: 700; }
.step__desc { font-size: 14.4px; color: var(--muted); line-height: 1.8; }
.step__tag { margin-top: 12px; font-size: 12.5px; color: var(--gold); font-weight: 600; letter-spacing: .04em; }

/* 12. Chips & lists
   ========================================================================== */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .78); border: 1px solid var(--line-2);
  font-size: 13.6px; color: var(--ink-2);
  transition: border-color .4s var(--ease-out), transform .5s var(--ease-spring), background-color .4s var(--ease-out);
}
.chip:hover { border-color: rgba(168, 124, 60, .45); background: #fff; transform: translateY(-2px); }
.chip--ink { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: rgba(234, 240, 248, .8); }

.region { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.region__title { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.region__title b { font-size: 16px; }
.region__title span { font-size: 12px; color: var(--muted-2); letter-spacing: .16em; text-transform: uppercase; }

.tick-list { display: flex; flex-direction: column; gap: 13px; }
.tick-list li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink-2); line-height: 1.75; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A87C3C' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.tick-list--ink li { color: rgba(234, 240, 248, .78); }

/* 13. FAQ accordion
   ========================================================================== */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; transition: border-color .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.faq__item.is-open { border-color: rgba(168, 124, 60, .4); box-shadow: 0 30px 60px -48px rgba(8, 23, 46, .9); }
.faq__q { width: 100%; display: flex; align-items: center; gap: 18px; text-align: left; padding: 22px 26px; font-size: 16.5px; font-weight: 600; letter-spacing: -.005em; }
.faq__q .idx { font-family: var(--font-display); font-size: 13px; color: var(--gold); flex: none; width: 26px; }
.faq__sign { margin-left: auto; position: relative; width: 22px; height: 22px; flex: none; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink-2); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .5s var(--ease-spring), opacity .4s var(--ease-out), background-color .4s var(--ease-out);
}
.faq__sign::before { width: 13px; height: 1.6px; }
.faq__sign::after { width: 1.6px; height: 13px; }
.faq__item.is-open .faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item.is-open .faq__sign::before { background: var(--gold); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .6s var(--ease-spring); }
.faq__a-inner { padding: 0 26px 26px 70px; font-size: 15px; color: var(--muted); line-height: 1.85; }
.faq__a-inner p + p { margin-top: 10px; }
.faq__a-inner strong { color: var(--ink-2); }/* 14. Stats band
   ========================================================================== */
.band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-radius: var(--r-xl); overflow: hidden; background: var(--ink); color: #fff; position: relative; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 90% 0%, rgba(211, 179, 121, .22), transparent 60%); pointer-events: none; }
.band__cell { padding: 42px 30px; border-right: 1px solid rgba(255, 255, 255, .1); position: relative; }
.band__cell:last-child { border-right: 0; }
.band__num { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1; }
.band__num sup { font-size: 16px; color: var(--gold-2); margin-left: 3px; vertical-align: super; }
.band__label { margin-top: 12px; font-size: 13.5px; color: rgba(255, 255, 255, .66); letter-spacing: .04em; }

/* 15. Cases / table / notes
   ========================================================================== */
.case__flag { font-size: 22px; }
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line-2); background: #fff; }
table.tbl { width: 100%; border-collapse: collapse; min-width: 640px; }
table.tbl th, table.tbl td { padding: 16px 22px; text-align: left; font-size: 14.6px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.tbl th { background: var(--paper); font-weight: 700; font-size: 13.5px; letter-spacing: .04em; color: var(--ink-2); white-space: nowrap; }
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl td strong { color: var(--ink); }
table.tbl tbody tr { transition: background-color .35s var(--ease-out); }
table.tbl tbody tr:hover { background: rgba(168, 124, 60, .05); }

.note {
  display: flex; gap: 14px; padding: 20px 24px; border-radius: var(--r-md);
  background: rgba(168, 124, 60, .08); border: 1px solid rgba(168, 124, 60, .2);
  font-size: 14px; color: #6B5222; line-height: 1.8;
}
.note svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--gold); }
.note--ink { background: rgba(8, 23, 46, .04); border-color: var(--line); color: var(--muted); }
.note--ink svg { color: var(--ink-2); }

/* 16. CTA band
   ========================================================================== */
.cta { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 68px 60px; background: var(--ink); color: #fff; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 100% 0%, rgba(211, 179, 121, .26), transparent 58%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(30, 68, 119, .55), transparent 62%);
  pointer-events: none;
}
.cta__inner { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; align-items: center; }
.cta__title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.24; }
.cta__desc { margin-top: 18px; font-size: 16.5px; color: rgba(255, 255, 255, .74); max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.cta__aside { display: flex; flex-direction: column; gap: 14px; }
.cta__aside .row {
  display: flex; align-items: center; gap: 12px; font-size: 14.6px; color: rgba(255, 255, 255, .82);
  padding: 14px 18px; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
}
.cta__aside .row svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; }

/* 17. Footer
   ========================================================================== */
.footer { background: var(--ink); color: rgba(234, 240, 248, .72); padding: 78px 0 30px; }
.footer a { transition: color .35s var(--ease-out); }
.footer a:hover { color: var(--gold-2); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand .brand__mark { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); }
.footer__brand strong { color: #fff; font-size: 17px; letter-spacing: .04em; }
.footer__desc { font-size: 14px; line-height: 1.9; max-width: 330px; }
.footer__col h4 { color: #fff; font-size: 14.5px; letter-spacing: .06em; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer__contact li { display: flex; gap: 10px; font-size: 14px; line-height: 1.75; }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--gold-2); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; font-size: 12.8px; color: rgba(234, 240, 248, .5); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__disclaimer { padding-top: 18px; font-size: 12.4px; line-height: 1.85; color: rgba(234, 240, 248, .42); max-width: 1000px; }

/* 18. Page hero (inner pages)
   ========================================================================== */
.page-hero { position: relative; padding: 156px 0 70px; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 88% 0%, rgba(168, 124, 60, .13), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.page-hero__inner { position: relative; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted-2); margin-bottom: 22px; }
.crumbs a:hover { color: var(--gold); }
.page-hero__title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -.025em; line-height: 1.14; }
.page-hero__desc { margin-top: 20px; font-size: 17px; color: var(--muted); max-width: 720px; line-height: 1.85; }

/* 19. Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: start; }
.info-list { display: flex; flex-direction: column; }
.info-row { display: flex; gap: 16px; padding: 20px 4px; border-bottom: 1px solid var(--line-2); }
.info-row:last-child { border-bottom: 0; }
.info-row__ico { width: 42px; height: 42px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); }
.info-row__ico svg { width: 18px; height: 18px; }
.info-row__label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.info-row__value { font-size: 15.6px; font-weight: 600; color: var(--ink); margin-top: 5px; line-height: 1.7; }
.info-row__value .small { font-weight: 400; color: var(--muted); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.field label .req { color: var(--gold); }
.input, .textarea, .select {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  background: var(--paper); border: 1px solid var(--line);
  font-size: 15px;
  transition: border-color .4s var(--ease-out), background-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus, .select:focus { outline: none; background: #fff; border-color: rgba(168, 124, 60, .6); box-shadow: 0 0 0 4px rgba(168, 124, 60, .1); }
.textarea { min-height: 130px; resize: vertical; line-height: 1.7; }
.form-hint { font-size: 12.8px; color: var(--muted-2); line-height: 1.75; }
.map-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 320px;
  background: linear-gradient(140deg, #EAF0F8, #F3EEE6);
  border: 1px solid var(--line-2); display: grid; place-items: center; text-align: center; padding: 30px;
}
.map-card__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(8, 23, 46, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 23, 46, .06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-card__pin { position: relative; }

/* 20. Reveal motion
   ========================================================================== */
.js [data-reveal] {
  opacity: 0; transform: translateY(26px); filter: blur(5px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-spring), filter .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}
.js [data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

/* 21. Toast
   ========================================================================== */
.toast {
  position: fixed; left: 50%; bottom: 32px; z-index: 1500;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  padding: 13px 22px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 500;
  box-shadow: 0 30px 60px -30px rgba(8, 23, 46, .9);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-spring);
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* 22. Misc
   ========================================================================== */
.badge-soft { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600; background: var(--gold-soft); color: #8A6528; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--wide { grid-template-columns: 1.15fr .85fr; }
.divider-gold { width: 56px; height: 2px; background: var(--gold); border-radius: 2px; }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }/* 23. Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav__phone { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 52px; }
  .hero__visual { min-height: 480px; max-width: 560px; }
  .bento > .shell, .bento > .shell.span-3, .bento > .shell.span-4 { grid-column: span 3; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 20px; }
  .steps::before { display: none; }
  .region { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta__inner { grid-template-columns: 1fr; gap: 34px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav__actions .btn { display: none; }
  .hero { padding-top: 150px; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid, .split, .split--wide { grid-template-columns: 1fr; gap: 42px; }
  .band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .band__cell:nth-child(2) { border-right: 0; }
  .band__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .wrap { padding: 0 20px; }
  .section { padding: 84px 0; }
  h1, h2, h3, h4 { letter-spacing: -.01em; }
  .hero { padding: 132px 0 76px; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .hero__visual { min-height: 0; }
  .paper-card { position: relative; right: auto; top: auto; width: 100%; animation: none; }
  .chip-float { position: static; animation: none; display: flex; }
  .chip-float--a { margin: 0 0 16px; }
  .chip-float--b { margin: 16px 0 0; }
  .shell, .shell > .core { border-radius: var(--r-lg); }
  .shell > .core { padding: 24px 20px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento > .shell, .bento > .shell.span-3, .bento > .shell.span-4, .bento > .shell.span-6 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .region { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; }
  .band__cell { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); padding: 32px 24px; }
  .band__cell:last-child { border-bottom: 0; }
  .cta { padding: 44px 26px; border-radius: var(--r-lg); }
  .form-grid { grid-template-columns: 1fr; }
  .faq__q { padding: 20px 22px; font-size: 15.4px; gap: 12px; }
  .faq__q .idx { width: 20px; }
  .faq__a-inner { padding: 0 22px 24px 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; padding-bottom: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-hero { padding: 122px 0 52px; }
  .sec-head--row { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav__shell { border-radius: 26px; }
  .nav-mobile a.m-link { font-size: 22px; }
  .table-wrap { margin: 0 -20px 0 0; border-radius: var(--r-md); }
}

@media (max-width: 420px) {
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn, .cta__actions .btn, .inline-actions .btn { width: 100%; }
  .stat__num { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; filter: none; }
}
/* 24. Utilities & ink-surface accents
   ========================================================================== */
.text-center { text-align: center; }
.center-actions { justify-content: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section--ink .eyebrow, .cta .eyebrow { background: rgba(255, 255, 255, .07); border-color: rgba(211, 179, 121, .32); color: var(--gold-2); }
.map-card .card__ico { margin: 0 auto; }
a.chip { cursor: pointer; }
.card__list ol, ol.card__list { list-style: decimal; padding-left: 0; }
ol.card__list li::before { display: none; }
ol.card__list li { padding-left: 22px; }
ol.card__list { counter-reset: cl; }