:root {
  --navy-950: #06111f;
  --navy-900: #071424;
  --navy-800: #10243c;
  --navy-700: #193652;
  --ink: #132235;
  --muted: #607086;
  --line: #dbe3ec;
  --soft: #f4f7fa;
  --white: #ffffff;
  --gold: #d8b56a;
  --gold-dark: #b78e3c;
  --gold-soft: #f3e3b8;
  --teal: #4fc4b6;
  --danger: #a12f39;
  --success: #0b765d;
  --shadow: 0 18px 50px rgba(6, 17, 31, .11);
  --radius: 18px;
  --shell: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 15px;
  color: var(--navy-950);
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7, 20, 36, .94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: 212px; flex: 0 0 auto; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav a, .language-button {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .language-button:hover, .language-button:focus-visible { color: var(--white); }
.primary-nav .nav-cta {
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 999px;
}
.primary-nav .nav-cta:hover { color: var(--navy-950); background: var(--gold-soft); }
.language-button {
  min-width: 54px;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
}
.menu-button { display: none; width: 44px; height: 44px; background: transparent; border: 0; padding: 10px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 99px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(79,196,182,.14), transparent 27%),
    radial-gradient(circle at 15% 85%, rgba(216,181,106,.12), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #0b1c30 54%, #0d2941);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
}
.hero-layout { min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: center; gap: 68px; padding-block: 88px 82px; }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.hero-lead { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.78); font-size: clamp(18px, 2vw, 22px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-note { margin: 23px 0 0; color: rgba(255,255,255,.58); font-size: 13px; letter-spacing: .03em; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--gold); box-shadow: 0 10px 30px rgba(216,181,106,.2); }
.button-primary:hover { background: var(--gold-soft); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.button-secondary:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.button-gold { color: var(--navy-950); background: var(--gold); }
.button-outline-dark { color: var(--navy-900); border-color: var(--navy-900); background: transparent; }
.button-outline-dark:hover { color: var(--white); background: var(--navy-900); }

.hero-visual { position: relative; min-height: 470px; }
.hero-path { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hero-path path { fill: none; stroke: rgba(216,181,106,.7); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 8 10; }
.hero-path circle { fill: var(--gold-soft); filter: drop-shadow(0 0 10px rgba(216,181,106,.7)); }
.market-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10, 28, 47, .74);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.market-card-main { left: 70px; top: 110px; width: min(330px, 80%); padding: 30px; border-radius: 24px; transform: rotate(-2deg); }
.market-card-main span { color: rgba(255,255,255,.56); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.market-card-main strong { display: block; margin: 9px 0 23px; font-size: 32px; }
.path-line { display: flex; align-items: center; justify-content: space-between; height: 46px; margin: 12px 0 18px; position: relative; }
.path-line::before { content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: linear-gradient(90deg, rgba(216,181,106,.25), var(--gold), var(--teal)); }
.path-line i { position: relative; width: 15px; height: 15px; border: 3px solid var(--navy-900); background: var(--gold-soft); border-radius: 50%; }
.path-line i:last-child { background: var(--teal); }
.market-card-top, .market-card-bottom { width: 125px; padding: 18px 20px; border-radius: 18px; }
.market-card-top { right: 18px; top: 36px; }
.market-card-bottom { right: 4px; bottom: 56px; }
.market-card-top b, .market-card-bottom b { display: block; color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.market-card-top span, .market-card-bottom span { display: block; margin-top: 3px; font-weight: 750; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 114px; display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid strong { color: var(--navy-900); font-size: 17px; }
.trust-grid span { margin-top: 2px; color: var(--muted); font-size: 13px; }

.section { padding: 110px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: var(--navy-950); }
.section-heading { max-width: 790px; margin-bottom: 54px; }
.section-heading h2, .about-copy h2, .contact-copy h2, .faq-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(36px, 4.6vw, 56px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.light-heading h2 { color: var(--white); }
.light-heading > p:last-child { color: rgba(255,255,255,.67); }
.compact-heading { max-width: 720px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 315px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #c6d2df; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-number { color: var(--gold-dark); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { margin: 48px 0 15px; color: var(--navy-900); font-size: 22px; line-height: 1.3; }
.service-card p { margin: 0; color: var(--muted); }

.pathway-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pathway-card { min-height: 325px; padding: 28px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.04); }
.pathway-card > span { color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.pathway-card h3 { margin: 54px 0 16px; color: var(--white); font-size: 20px; line-height: 1.28; }
.pathway-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

.process-list { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0; margin: 58px 0 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { position: relative; min-height: 265px; padding: 32px 26px; border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list li::before { content: ""; position: absolute; top: -5px; left: 24px; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 7px var(--white); }
.process-list > li > span { color: var(--gold-dark); font-size: 12px; font-weight: 850; }
.process-list h3 { margin: 62px 0 10px; font-size: 22px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.about-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 80px; align-items: start; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy > p:not(.kicker) { color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 18px; color: var(--navy-900); text-decoration: none; font-weight: 800; }
.text-link b { color: var(--gold-dark); font-size: 22px; transition: transform .2s ease; }
.text-link:hover b { transform: translateX(5px); }
.about-cards { display: grid; gap: 16px; }
.about-cards article { padding: 28px 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.about-cards h3 { margin: 0 0 9px; color: var(--navy-900); font-size: 20px; }
.about-cards p { margin: 0; color: var(--muted); }

.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-grid article { padding: 28px 0; border-top: 2px solid var(--navy-900); }
.why-grid span { color: var(--gold-dark); font-size: 12px; font-weight: 850; }
.why-grid h3 { margin: 32px 0 11px; font-size: 21px; line-height: 1.35; }
.why-grid p { margin: 0; color: var(--muted); }

.insight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.insight-grid article { min-height: 300px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.insight-grid span { color: var(--gold-dark); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.insight-grid h3 { margin: 52px 0 14px; font-size: 21px; line-height: 1.35; }
.insight-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-h) + 36px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 25px 54px 25px 0; color: var(--navy-900); font-size: 18px; font-weight: 760; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--gold-dark); font-size: 26px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { margin: -4px 50px 25px 0; color: var(--muted); }

.contact-section { padding: 110px 0; color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0e2b43); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-h) + 36px); }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.kicker) { color: rgba(255,255,255,.68); font-size: 17px; }
.contact-details { display: grid; gap: 22px; margin-top: 42px; }
.contact-details div { display: grid; gap: 4px; }
.contact-details span { color: rgba(255,255,255,.47); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-details a, .contact-details strong { color: var(--white); text-decoration: none; font-size: 16px; font-weight: 700; }
.contact-details a:hover { color: var(--gold-soft); }
.inquiry-form { padding: 36px; color: var(--ink); border-radius: 22px; background: var(--white); box-shadow: 0 26px 70px rgba(0,0,0,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.inquiry-form label { display: grid; gap: 7px; }
.inquiry-form label > span { color: var(--navy-800); font-size: 13px; font-weight: 750; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #cfd9e3;
  border-radius: 10px;
  background: #fbfcfd;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.inquiry-form textarea { min-height: 138px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--gold-dark); background: var(--white); box-shadow: 0 0 0 3px rgba(216,181,106,.18); }
.form-wide { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.turnstile-mount { margin-top: 20px; min-height: 1px; }
.turnstile-placeholder { padding: 11px 13px; color: var(--muted); border: 1px dashed #c9d3dd; border-radius: 10px; background: var(--soft); font-size: 12px; }
.consent-row { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; margin-top: 18px; }
.consent-row input { width: 18px; min-height: 18px; margin-top: 2px; }
.consent-row span { color: var(--muted) !important; font-size: 12px !important; font-weight: 500 !important; }
.form-submit { width: 100%; margin-top: 20px; border: 0; }
.form-submit:disabled { opacity: .6; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 13px; font-weight: 650; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.direct-email { margin: 8px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.direct-email a { color: var(--navy-900); font-weight: 700; }

.site-footer { padding: 70px 0 30px; color: rgba(255,255,255,.66); background: #030b15; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { width: 210px; }
.footer-brand p { margin: 10px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 20px; }
.footer-links a, .footer-links button { padding: 0; color: rgba(255,255,255,.76); text-decoration: none; border: 0; background: transparent; font-size: 13px; font-weight: 700; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }
.footer-legal { padding-top: 30px; font-size: 11px; line-height: 1.65; }
.footer-legal p { max-width: 980px; margin: 0 0 12px; }
.footer-legal strong { color: rgba(255,255,255,.82); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom span:last-child { display: flex; gap: 18px; }
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.mobile-cta { display: none; }

.legal-page { min-height: 100vh; background: var(--soft); }
.legal-header { background: var(--navy-950); }
.legal-main { padding: 90px 0; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 48px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.legal-card h1 { margin-top: 0; color: var(--navy-900); font-size: clamp(36px, 5vw, 54px); line-height: 1.1; }
.legal-card h2 { margin-top: 35px; color: var(--navy-900); font-size: 22px; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card .back-link { display: inline-flex; margin-top: 28px; color: var(--navy-900); font-weight: 800; }

@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 13px; }
  .hero-layout { grid-template-columns: 1.05fr .95fr; gap: 28px; }
  .pathway-list { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); border-top: 0; gap: 14px; }
  .process-list li, .process-list li:first-child { min-height: 240px; border: 1px solid var(--line); border-radius: 14px; }
  .process-list li::before { display: none; }
  .process-list h3 { margin-top: 44px; }
  .why-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .brand { width: 188px; }
  .menu-button { display: block; }
  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(7,20,36,.99);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 30px rgba(0,0,0,.25);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a, .language-button { min-height: 48px; display: flex; align-items: center; padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .primary-nav .nav-cta { justify-content: center; margin-top: 10px; border: 0; border-radius: 999px; }
  .language-button { width: 100%; justify-content: center; border: 0; }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-block: 72px 58px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 410px; max-width: 570px; width: 100%; margin: -10px auto 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-list { grid-template-columns: repeat(2, 1fr); }
  .about-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .faq-heading, .contact-copy { position: static; }
}

@media (max-width: 600px) {
  body { padding-bottom: 67px; }
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .site-header { height: 66px; }
  :root { --header-h: 66px; }
  .brand { width: 170px; }
  .hero-layout { padding-top: 58px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-note { font-size: 12px; }
  .hero-visual { min-height: 345px; }
  .market-card-main { left: 24px; top: 84px; width: calc(100% - 80px); padding: 24px; }
  .market-card-main strong { font-size: 27px; }
  .market-card-top { right: 0; top: 18px; }
  .market-card-bottom { right: 0; bottom: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 90px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid > div:first-child { border-top: 0; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .contact-copy h2, .faq-heading h2 { font-size: 35px; }
  .section-heading > p:last-child { font-size: 16px; }
  .service-grid, .pathway-list, .why-grid, .insight-grid, .process-list { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; padding: 28px; }
  .service-card h3 { margin-top: 36px; }
  .pathway-card { min-height: 245px; }
  .pathway-card h3 { margin-top: 38px; }
  .process-list li { min-height: 210px; }
  .about-layout { gap: 36px; }
  .faq-layout { gap: 30px; }
  .inquiry-form { padding: 24px 18px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .form-wide { grid-column: auto; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-card { padding: 28px 20px; }
  .mobile-cta {
    position: fixed;
    z-index: 1000;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    background: var(--gold);
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(0,0,0,.3);
    text-decoration: none;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Legal and utility pages */
.legal-page,
.not-found-page { background: #f4f7fa; color: var(--ink); }
.legal-header { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.12); }
.legal-header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-header .brand img { display: block; }
.legal-main { padding: 72px 0 88px; }
.legal-title { max-width: 800px; margin-bottom: 38px; }
.legal-title h1 { margin: 8px 0 12px; font-size: clamp(2.15rem, 5vw, 4.2rem); letter-spacing: -.035em; }
.legal-title > p:last-child { color: var(--muted); }
.legal-language-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; align-items: start; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 50px rgba(13,31,51,.07); padding: clamp(24px, 4vw, 44px); }
.legal-card h2 { margin: 0 0 30px; font-size: 1.65rem; color: var(--navy); }
.legal-card h3 { margin: 26px 0 8px; font-size: 1.04rem; color: var(--navy); }
.legal-card p { margin: 0; color: #425269; line-height: 1.8; }
.legal-card a { color: #9b6b19; text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { padding: 26px 0; background: var(--navy); color: rgba(255,255,255,.68); text-align: center; font-size: .88rem; }
.not-found-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.not-found-card { width: min(620px, 100%); background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 26px 70px rgba(13,31,51,.12); text-align: center; padding: clamp(34px, 7vw, 72px); }
.not-found-card img { margin: 0 auto 34px; }
.not-found-card h1 { margin: 10px 0 16px; font-size: clamp(2rem, 6vw, 3.6rem); }
.not-found-card > p:not(.kicker) { color: var(--muted); line-height: 1.8; margin-bottom: 30px; }
@media (max-width: 860px) {
  .legal-language-grid { grid-template-columns: 1fr; }
  .legal-header-inner { min-height: 74px; }
  .legal-header .button { font-size: .78rem; padding: 10px 13px; }
  .legal-header .brand img { width: 178px; height: auto; }
  .legal-main { padding: 48px 0 66px; }
}
