:root {
  --ink: #0e1d2b;
  --ink-2: #182c3d;
  --muted: #5b6875;
  --paper: #ffffff;
  --soft: #f2f5f7;
  --soft-blue: #eaf1f6;
  --line: #dbe2e7;
  --brand: #c92333;
  --brand-dark: #991a26;
  --accent: #ef4050;
  --good: #0f7b53;
  --warn: #9a5d00;
  --radius: 18px;
  --shadow: 0 20px 56px rgba(14, 29, 43, 0.11);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: #fff; color: var(--ink); padding: 10px 14px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 12px; }

.topbar { background: #09141e; color: #fff; font-size: 0.9rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 8px 0; }
.topbar a { color: #fff; text-decoration: none; }
.topbar .quiet { opacity: 0.8; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(219, 226, 231, 0.95); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.25rem; letter-spacing: 0.01em; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 19px; }
.nav-links a { font-size: 0.94rem; font-weight: 750; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand); }
.nav-cta { padding: 11px 16px; border-radius: 11px; background: var(--brand); color: #fff !important; }
.nav-cta:hover { background: var(--brand-dark); }
.menu-btn { display: none; border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 9px 11px; font: inherit; font-weight: 800; }

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.25rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4.5vw, 3.45rem); }
h3 { font-size: 1.28rem; }
p { text-wrap: pretty; }

.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #0a1621 0%, #102536 60%, #1e3546 100%); padding: 78px 0 66px; }
.hero::before { content: ""; position: absolute; top: 0; right: 7%; width: 170px; height: 100%; transform: skewX(-15deg); background: linear-gradient(180deg, rgba(201, 35, 51, 0.28), rgba(201, 35, 51, 0.03)); }
.hero::after { content: ""; position: absolute; right: -8%; bottom: -58%; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 35, 51, 0.36), transparent 66%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.06); padding: 8px 12px; border-radius: 999px; font-size: 0.82rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(239, 64, 80, 0.14); }
.hero h1 { margin-top: 20px; }
.hero p { max-width: 730px; margin: 22px 0 0; color: #dbe4ea; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #cfdae2; font-size: 0.9rem; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.check { width: 19px; height: 19px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.12); font-size: 0.72rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 11px; padding: 14px 19px; font: inherit; font-size: 0.98rem; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform 0.18s ease, background 0.18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, .menu-btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(239, 64, 80, 0.45); outline-offset: 3px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }

.match-card { position: relative; overflow: hidden; padding: 22px; color: var(--ink); background: #fff; border-radius: 24px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3); }
.match-card::before { content: "TM MATCH"; position: absolute; right: -22px; top: 48px; color: rgba(14, 29, 43, 0.045); font-size: 4rem; font-weight: 950; transform: rotate(90deg); }
.match-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; padding: 4px 2px 18px; }
.match-head small, .network-row small { display: block; color: var(--muted); }
.match-head strong { font-size: 1.1rem; }
.status { padding: 6px 9px; border-radius: 999px; color: var(--good); background: #e8f6f0; font-size: 0.75rem; font-weight: 850; }
.network { display: grid; gap: 10px; }
.network-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 12px; background: var(--soft); border-radius: 14px; }
.network-row small { margin-top: 2px; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--ink), #476073); font-weight: 900; }
.pill { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 0.74rem; font-weight: 800; }
.match-foot { margin-top: 14px; padding: 15px; border: 1px solid #f2c4c9; border-radius: 14px; background: #fff2f3; }
.match-foot strong { display: block; color: var(--brand-dark); }

.portal-bar { background: #fff; border-bottom: 1px solid var(--line); }
.portal-bar .wrap { display: flex; gap: 22px; align-items: center; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.portal-bar .wrap::-webkit-scrollbar { display: none; }
.portal-label { flex: 0 0 auto; color: var(--muted); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.portal-links { display: flex; gap: 18px; min-width: max-content; }
.portal-links a { color: var(--ink-2); font-size: 0.86rem; font-weight: 750; text-decoration: none; }
.portal-links a:hover { color: var(--brand); }

.section { padding: 78px 0; }
.section.soft { background: var(--soft); }
.section.blue-soft { background: var(--soft-blue); }
.section.dark { background: var(--ink); color: #fff; }
.section-intro { max-width: 780px; margin-bottom: 36px; }
.section-intro p { margin: 14px 0 0; color: var(--muted); font-size: 1.07rem; }
.dark .section-intro p { color: #cbd8e1; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head .section-intro { margin-bottom: 0; }
.text-link { color: var(--brand); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 4px; white-space: nowrap; }
.kicker { margin-bottom: 10px; color: var(--brand); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 25px rgba(14, 29, 43, 0.04); }
.card.dark-card { color: #fff; background: #152b3d; border-color: #294459; }
.card p { margin: 10px 0 0; color: var(--muted); }
.dark-card p { color: #ccdae4; }
.iconbox { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 12px; color: var(--brand); background: #fff1f2; font-size: 1.12rem; font-weight: 900; }
.choice { position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; }
.choice.operator { color: #fff; background: linear-gradient(145deg, #0d1d2a, #244258); border: 0; }
.choice.tm { background: #fff; }
.choice h3 { font-size: 2rem; }
.choice p { font-size: 1.03rem; }
.choice.operator p { color: #dbe6ee; }
.choice ul { padding-left: 19px; margin: 18px 0 22px; }
.choice li { margin: 7px 0; }
.choice .btn { align-self: flex-start; }
.badge, .topic-chip { display: inline-flex; align-self: flex-start; border-radius: 999px; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.badge { margin-bottom: 22px; padding: 7px 10px; }
.operator .badge { color: #fff; background: rgba(255, 255, 255, 0.11); }
.tm .badge, .topic-chip { color: var(--brand); background: #fff1f2; }
.steps { counter-reset: steps; }
.step { position: relative; min-height: 118px; padding: 23px 22px 23px 78px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; left: 20px; top: 20px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--ink); font-weight: 900; }
.step p { margin: 7px 0 0; color: var(--muted); }
.alert { padding: 18px 20px; border-left: 4px solid var(--brand); border-radius: 12px; background: #fff3f4; }
.alert strong { display: block; }
.alert p { margin: 6px 0 0; color: var(--muted); }
.faq { display: grid; gap: 10px; }
.faq details { padding: 0 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq summary { cursor: pointer; padding: 18px 0; list-style: none; font-weight: 850; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-size: 1.25rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 0 18px; color: var(--muted); }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 36px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); }
.cta-band p { max-width: 720px; margin: 10px 0 0; color: #ffe8ea; }

.page-hero { padding: 58px 0; color: #fff; background: linear-gradient(135deg, #0b1a26, #19364a); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.4rem, 5vw, 4.65rem); }
.page-hero p { max-width: 780px; color: #d2dee6; font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 12px; color: #afbec9; font-size: 0.84rem; }
.breadcrumbs a { color: #fff; }

.form-shell { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.form-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.form-top { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.progress { flex: 1; max-width: 280px; height: 7px; overflow: hidden; border-radius: 999px; background: #eceff1; }
.progress span { display: block; width: 20%; height: 100%; background: var(--brand); transition: width 0.25s; }
.form-body { padding: 28px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h2 { margin-bottom: 8px; font-size: 1.8rem; }
.form-step > .lead { margin: 0 0 24px; color: var(--muted); }
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: 0.88rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 13px; border: 1px solid #cbd4db; border-radius: 11px; outline: none; color: var(--ink); background: #fff; font: inherit; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(201, 35, 51, 0.11); }
.field small { display: block; margin-top: 5px; color: var(--muted); }
.options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.option { position: relative; }
.option input { position: absolute; opacity: 0; }
.option label { display: block; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-weight: 750; cursor: pointer; }
.option input:checked + label { color: var(--brand-dark); border-color: var(--brand); background: #fff2f3; box-shadow: 0 0 0 2px rgba(201, 35, 51, 0.08); }
.option input:focus-visible + label { outline: 3px solid rgba(239, 64, 80, 0.3); }
.form-nav { display: flex; justify-content: space-between; gap: 12px; padding: 20px 26px; border-top: 1px solid var(--line); }
.form-nav .right { display: flex; gap: 10px; margin-left: auto; }
.side-card { position: sticky; top: 112px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.side-card h3 { font-size: 1.25rem; }
.side-card ul { padding-left: 19px; color: var(--muted); }
.side-card li { margin: 8px 0; }
.side-contact { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.side-contact a { font-weight: 850; text-decoration: none; }
.form-error { display: none; margin-bottom: 18px; padding: 12px 14px; border: 1px solid #f2bcc1; border-radius: 11px; color: #7d1119; background: #fff1f2; }
.form-error.show { display: block; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.87rem; font-weight: 500 !important; }
.consent input { width: auto; min-height: auto; margin-top: 4px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.is-loading .spinner { display: inline-block; }
.is-loading .btn-label { opacity: 0.75; }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.article-card { min-height: 310px; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.article-card-top { min-height: 104px; display: flex; align-items: flex-end; padding: 20px; color: #fff; background: linear-gradient(135deg, #102536, #2e4d61); }
.article-card:nth-child(2n) .article-card-top { background: linear-gradient(135deg, #8f1925, #cf2b3a); }
.article-card:nth-child(3n) .article-card-top { background: linear-gradient(135deg, #243d4e, #536c7b); }
.article-card-top span { opacity: 0.82; font-size: 0.78rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.article-card-body { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.article-card h3 { font-size: 1.45rem; }
.article-card p { flex: 1; }
.article-card a { margin-top: 18px; color: var(--brand); font-weight: 850; text-decoration: none; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 18px 0 0; color: #b8c6d0; font-size: 0.86rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; justify-content: space-between; gap: 48px; align-items: start; }
.article-body { font-size: 1.06rem; }
.article-body h2 { margin: 46px 0 14px; font-size: clamp(1.75rem, 3vw, 2.4rem); }
.article-body h3 { margin: 30px 0 10px; font-size: 1.4rem; }
.article-body p, .article-body li { color: #344453; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin: 9px 0; }
.article-body a { color: var(--brand-dark); font-weight: 700; }
.article-body .lead { color: var(--ink-2); font-size: 1.23rem; line-height: 1.55; }
.article-body .key-answer { margin: 26px 0; padding: 22px; border: 1px solid #d6e0e7; border-radius: 16px; background: var(--soft-blue); }
.article-body .key-answer strong { display: block; margin-bottom: 5px; }
.article-body table { width: 100%; margin: 24px 0; border-collapse: collapse; font-size: 0.96rem; }
.article-body th, .article-body td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { color: var(--ink); background: var(--soft); }
.article-side { position: sticky; top: 112px; display: grid; gap: 16px; }
.article-side .card { box-shadow: none; }
.article-side h2 { font-size: 1.35rem; }
.toc { display: grid; gap: 9px; margin-top: 14px; }
.toc a { color: var(--muted); font-size: 0.92rem; font-weight: 650; text-decoration: none; }
.toc a:hover { color: var(--brand); }
.source-note { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.89rem; }
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.related-card { padding: 20px; border: 1px solid var(--line); border-radius: 15px; text-decoration: none; }
.related-card span { display: block; margin-bottom: 6px; color: var(--brand); font-size: 0.76rem; font-weight: 850; text-transform: uppercase; }
.related-card strong { line-height: 1.25; }

.thanks { min-height: 66vh; display: grid; place-items: center; padding: 70px 0; }
.thanks-card { max-width: 720px; text-align: center; }
.thanks-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 22px; color: var(--good); background: #e9f7f1; font-size: 2rem; font-weight: 900; }
.thanks-card h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.thanks-card p { color: var(--muted); font-size: 1.08rem; }
.next-box { max-width: 620px; margin: 28px auto 0; padding: 22px; border-radius: 16px; background: var(--soft); text-align: left; }
.next-box h3 { font-size: 1.15rem; }
.next-box ol { margin-bottom: 0; color: var(--muted); }
.legal { max-width: 820px; }
.legal h2 { margin-top: 34px; font-size: 1.7rem; }
.legal h3 { margin-top: 26px; }
.legal p, .legal li { color: #3f4c58; }
.legal a { color: var(--brand); }

.footer { padding: 52px 0 24px; color: #cbd6de; background: #09141e; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr; gap: 34px; }
.footer h3 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer p { max-width: 500px; }
.footer a { color: #dfe7ec; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 34px; padding-top: 20px; border-top: 1px solid #253746; color: #92a1ad; font-size: 0.82rem; }
.disclaimer { max-width: 860px; margin-top: 20px; color: #8999a5; font-size: 0.78rem; }
.mobile-cta { display: none; }
.mobile-only { display: none; }

@media (max-width: 1080px) {
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 0.88rem; }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 980px) {
  .hero-grid, .form-shell, .article-layout { grid-template-columns: 1fr; }
  .match-card { max-width: 640px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side-card, .article-side { position: static; }
  .article-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { position: absolute; display: none; top: 78px; left: 0; right: 0; padding: 18px 16px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 4px; font-size: 1rem; }
  .nav-cta { padding: 12px 14px !important; text-align: center; }
  .menu-btn { display: block; }
}

@media (max-width: 720px) {
  .wrap { width: min(var(--max), calc(100% - 22px)); }
  .topbar .quiet { display: none; }
  .nav { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 1.08rem; }
  .brand-copy span { font-size: 0.58rem; }
  .nav-links { top: 68px; }
  .hero { padding: 54px 0 44px; }
  .hero-grid { gap: 34px; }
  h1 { font-size: clamp(2.3rem, 12vw, 3.9rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 2.9rem); }
  .hero p { font-size: 1.03rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: 9px; }
  .network-row { grid-template-columns: 42px 1fr; }
  .network-row .pill { grid-column: 2; justify-self: start; }
  .section { padding: 54px 0; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 16px; }
  .grid-2, .grid-3, .grid-4, .blog-grid, .fields, .options, .related-grid, .article-side { grid-template-columns: 1fr; }
  .choice { min-height: 0; }
  .cta-band { grid-template-columns: 1fr; padding: 26px 22px; }
  .cta-band .btn { width: 100%; }
  .form-top { display: block; }
  .progress { max-width: none; margin-top: 13px; }
  .form-body { padding: 22px 18px; }
  .form-nav { padding: 18px; flex-wrap: wrap; }
  .form-nav .right { width: 100%; margin: 0; }
  .form-nav .btn { flex: 1; }
  .page-hero { padding: 42px 0; }
  .article-body { font-size: 1rem; }
  .article-body table { display: block; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .mobile-only { display: inline; }
  body { padding-bottom: 68px; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 8px; padding: 9px 11px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 30px rgba(14, 29, 43, 0.1); }
  .mobile-cta .btn { padding: 11px 10px; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
