:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --surface-blue: #e8f0ff;
  --ink: #122033;
  --ink-soft: #263750;
  --muted: #65748a;
  --line: #dbe4ef;
  --line-strong: #c7d4e4;
  --brand: #2563eb;
  --brand-dark: #1749b8;
  --brand-soft: #e9f0ff;
  --accent: #0f766e;
  --success: #15803d;
  --navy: #0d1726;
  --navy-soft: #15243a;
  --shadow: 0 26px 70px rgba(24, 46, 79, .13);
  --shadow-soft: 0 14px 40px rgba(28, 47, 76, .08);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid rgba(37, 99, 235, .28); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--navy); transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.eyebrow {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: currentColor; }
.eyebrow-light { color: #bcd0ff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(219, 228, 239, .86);
  background: rgba(247, 249, 252, .9);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; gap: 10px; align-items: center; font-size: 1.08rem; font-weight: 900; letter-spacing: -.03em; }
.brand-mark { width: 39px; height: 39px; border-radius: 11px; box-shadow: 0 9px 22px rgba(37, 99, 235, .2); }
.nav-links { display: flex; align-items: center; gap: 23px; color: #34445c; font-size: .94rem; font-weight: 700; }
.nav-links a { transition: color .16s ease; }
.nav-links a:hover { color: var(--brand); }
.nav-actions { display: flex; gap: 9px; align-items: center; }
.mobile-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.mobile-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; border-radius: 999px; background: #34445c; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-large { min-height: 52px; padding-inline: 22px; }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 10px 26px rgba(37, 99, 235, .22); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 13px 32px rgba(37, 99, 235, .27); }
.btn-secondary { color: var(--ink); background: var(--surface); border-color: var(--line); }
.btn-secondary:hover { border-color: #bfcde0; box-shadow: var(--shadow-soft); }
.btn-ghost { color: #334155; background: transparent; }
.btn-light { color: #15336e; background: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08); }

.hero { position: relative; overflow: hidden; padding: 98px 0 38px; }
.hero::before {
  content: "";
  position: absolute;
  width: 820px;
  height: 820px;
  right: -300px;
  top: -360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.17), rgba(37,99,235,0) 67%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -260px;
  bottom: 40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,.08), rgba(15,118,110,0) 68%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 64px; align-items: center; }
.hero-copy { padding-bottom: 8px; }
.hero h1 { margin: 16px 0 22px; max-width: 760px; font-size: clamp(3.2rem, 6.2vw, 5.75rem); line-height: .95; letter-spacing: -.06em; }
.hero-lede { max-width: 700px; margin: 0; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.2rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 31px; }
.hero-note { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 27px; color: #56667b; font-size: .9rem; font-weight: 700; }
.hero-note span::before { content: "✓"; margin-right: 7px; color: var(--accent); font-weight: 900; }

.app-preview { position: relative; padding: 14px; border: 1px solid #cfdae9; border-radius: 30px; background: rgba(255,255,255,.82); box-shadow: var(--shadow); transform: rotate(.55deg); }
.preview-bar { display: flex; align-items: center; gap: 13px; padding: 0 6px 12px; color: #8290a2; font-size: .74rem; }
.preview-dots { display: inline-flex; gap: 5px; }
.preview-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c8d2df; }
.preview-address { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vd-app { overflow: hidden; min-height: 430px; border: 1px solid #1f3046; border-radius: 20px; background: #f6f7fb; }
.vd-header { display: flex; align-items: center; gap: 18px; min-height: 58px; padding: 0 17px; color: #fff; background: #111827; font-size: .72rem; }
.vd-header strong { margin-right: auto; font-size: .82rem; }
.vd-header strong small { color: #9eb0c8; font-weight: 600; }
.vd-header nav { display: flex; gap: 13px; color: #bfd0e6; }
.vd-header nav .active { color: #fff; font-weight: 800; }
.vd-user { padding: 4px 8px; border-radius: 999px; background: #25344b; color: #dce8f8; }
.vd-content { padding: 24px; color: #152033; }
.vd-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.vd-heading small, .vd-card > small { color: #76879c; font-size: .62rem; font-weight: 850; letter-spacing: .09em; }
.vd-heading h3 { margin: 1px 0 0; font-size: 1.35rem; }
.status-badge { padding: 5px 9px; border: 1px solid #a7d9b4; border-radius: 999px; color: #166534; background: #e8f8ec; font-size: .62rem; font-weight: 800; }
.vd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vd-card { padding: 17px; border: 1px solid #dbe1ea; border-radius: 14px; background: #fff; box-shadow: 0 8px 22px rgba(23,41,69,.045); }
.vd-card h4 { margin: 4px 0 7px; font-size: .92rem; }
.vd-card p { margin: 0 0 10px; color: #64748b; font-size: .69rem; line-height: 1.45; }
.text-link { color: var(--brand); font-size: .68rem; font-weight: 800; }
.progress-label { display: flex; justify-content: space-between; gap: 10px; margin: 5px 0 8px; font-size: .7rem; }
.progress { overflow: hidden; height: 6px; border-radius: 999px; background: #e8edf4; }
.progress i { display: block; width: 58%; height: 100%; border-radius: inherit; background: var(--brand); }
.mini-button { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 0 9px; border-radius: 8px; color: #fff; background: var(--brand); font-size: .64rem; font-weight: 850; }
.vd-table-card { margin-top: 12px; }
.table-title { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid #edf1f5; font-size: .68rem; }
.table-title span { color: #718198; }
.mini-row { display: grid; grid-template-columns: .7fr 1.15fr auto; gap: 9px; align-items: center; padding: 10px 0; border-bottom: 1px solid #edf1f5; color: #718198; font-size: .65rem; }
.mini-row:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-row strong { color: #24354d; }
.green-pill { display: inline-flex; width: max-content; padding: 4px 8px; border-radius: 999px; color: #166534; background: #dcfce7; font-size: .64rem; font-weight: 800; }
.proof-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 74px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.proof-strip div { padding: 22px 25px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { margin-bottom: 3px; font-size: .92rem; }
.proof-strip span { color: var(--muted); font-size: .84rem; }

.section { padding: 100px 0; }
.section-soft { background: var(--surface-soft); }
.section-ink { color: #eef4ff; background: var(--navy); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 45px; }
.section-head h2 { margin: 10px 0 0; max-width: 750px; font-size: clamp(2.25rem, 4.3vw, 3.7rem); line-height: 1.02; letter-spacing: -.045em; }
.section-head p { max-width: 500px; margin: 0; color: var(--muted); }
.section-head-light p { color: #9eafc5; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 255px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 10px 28px rgba(29,48,76,.035); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: #c6d5e8; box-shadow: var(--shadow-soft); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 29px; border-radius: 15px; background: var(--brand-soft); color: var(--brand); font-size: .78rem; font-weight: 900; letter-spacing: .05em; }
.feature-card h3 { margin: 0 0 9px; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); }

.product-showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.product-panel { overflow: hidden; min-height: 450px; padding: 29px; border: 1px solid #293b53; border-radius: 28px; background: #132238; }
.product-panel-large { grid-row: span 2; }
.panel-copy { max-width: 530px; margin-bottom: 24px; }
.panel-copy h3 { margin: 9px 0 7px; color: #fff; font-size: 1.45rem; }
.panel-copy p { margin: 0; color: #9eafc5; }
.number-chip { display: inline-grid; place-items: center; min-width: 34px; height: 28px; padding-inline: 8px; border: 1px solid #355170; border-radius: 999px; color: #b7c9e0; font-size: .7rem; font-weight: 900; }
.ui-window { overflow: hidden; border-radius: 16px; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.light-ui { color: #152033; background: #f6f7fb; }
.ui-top { display: flex; align-items: center; gap: 13px; padding: 14px 16px; color: #d8e3f2; background: #111827; font-size: .68rem; }
.ui-top strong { margin-right: auto; color: #fff; }
.ui-top .active { color: #fff; font-weight: 800; }
.ui-body { padding: 23px; }
.ui-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.ui-title h4 { margin: 0; font-size: 1.25rem; }
.ui-table { overflow: hidden; border: 1px solid #dbe1ea; border-radius: 13px; background: #fff; }
.ui-tr { display: grid; grid-template-columns: 1.2fr 1fr .65fr; gap: 12px; align-items: center; min-height: 47px; padding: 8px 13px; border-top: 1px solid #e7ecf2; font-size: .67rem; }
.ui-th { min-height: 40px; border-top: 0; color: #75859a; background: #fafbfd; font-weight: 800; }
.package-demo, .public-demo { padding: 24px; border-radius: 19px; background: #fff; color: #152033; box-shadow: 0 18px 40px rgba(0,0,0,.15); }
.package-demo small { color: #77889d; font-size: .64rem; font-weight: 900; letter-spacing: .08em; }
.package-demo h4 { margin: 7px 0 3px; font-size: 1.12rem; }
.package-demo p { margin: 0 0 18px; color: #64748b; font-size: .75rem; }
.demo-price { display: block; margin-bottom: 15px; font-size: 1.6rem; letter-spacing: -.04em; }
.public-demo { display: grid; gap: 15px; }
.public-brand { display: flex; gap: 12px; align-items: center; }
.public-logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: #2563eb; font-size: .76rem; font-weight: 900; }
.public-brand strong, .public-brand small { display: block; }
.public-brand small { color: #748398; font-size: .67rem; }
.public-package { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px; border: 1px solid #dbe1ea; border-radius: 13px; }
.public-package strong, .public-package span { display: block; }
.public-package div > span { color: #748398; font-size: .67rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.step > span { display: inline-grid; place-items: center; min-width: 36px; height: 30px; margin-bottom: 30px; border-radius: 999px; color: var(--brand); background: var(--brand-soft); font-size: .72rem; font-weight: 900; }
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); }
.setup-banner { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 18px; padding: 24px 28px; border: 1px solid #d2dff0; border-radius: 18px; background: rgba(255,255,255,.7); }
.setup-banner strong, .setup-banner span { display: block; }
.setup-banner span { color: var(--muted); font-size: .9rem; }

.pricing-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: stretch; padding: 14px; border: 1px solid #c7d5e8; border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.pricing-copy { padding: 33px; }
.plan-label { color: var(--brand); font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card h3 { margin: 8px 0 11px; max-width: 680px; font-size: clamp(1.8rem, 3vw, 2.45rem); line-height: 1.08; letter-spacing: -.035em; }
.pricing-card p { margin: 0; color: var(--muted); max-width: 720px; }
.pricing-meta { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 9px; color: #40516a; font-size: .85rem; font-weight: 750; }
.pricing-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fbfcfe; }
.price-side { display: flex; flex-direction: column; justify-content: center; padding: 30px; border-radius: 22px; color: #fff; background: linear-gradient(145deg, #1f56d8, #163b91); }
.price-kicker { color: #bcd0ff; font-size: .74rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-placeholder { margin: 8px 0 3px; font-size: clamp(1.65rem, 3vw, 2.3rem); line-height: 1.05; letter-spacing: -.035em; }
.price-note { margin-bottom: 22px; color: #d6e3ff; font-size: .82rem; }
.price-side .btn { align-self: flex-start; }

.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 66px; align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq-intro h2 { margin: 10px 0 16px; font-size: clamp(2.1rem, 3.7vw, 3.35rem); line-height: 1.04; letter-spacing: -.04em; }
.faq-intro p { color: var(--muted); }
.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 0 20px; }
summary { position: relative; cursor: pointer; list-style: none; padding: 20px 36px 20px 4px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 3px; top: 18px; color: var(--brand); font-size: 1.2rem; }
details[open] summary::after { content: "–"; }
details p { margin: 0 4px 20px; color: var(--muted); }

.cta { padding: 82px 0; }
.cta-box { display: flex; align-items: end; justify-content: space-between; gap: 42px; padding: 58px; border-radius: 34px; color: #fff; background: linear-gradient(125deg, #1d4ed8, #122b58); box-shadow: 0 30px 75px rgba(30,64,175,.25); }
.cta-box h2 { margin: 10px 0 12px; max-width: 720px; font-size: clamp(2.3rem, 5vw, 4rem); line-height: .98; letter-spacing: -.045em; }
.cta-box p { max-width: 650px; margin: 0; color: #d8e5ff; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }

footer { padding: 54px 0 30px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 55px; align-items: start; }
.footer-brand p { margin: 13px 0 0; color: #8794a6; font-size: .87rem; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-columns div { display: grid; align-content: start; gap: 8px; }
.footer-columns strong { margin-bottom: 5px; font-size: .85rem; }
.footer-columns a { color: #617087; font-size: .88rem; }
.footer-columns a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 22px; border-top: 1px solid #edf1f5; color: #8794a6; font-size: .8rem; }

.legal { padding: 82px 0 96px; }
.legal article { max-width: 900px; padding: 44px; margin: auto; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-soft); }
.legal h1 { margin: 12px 0 20px; font-size: clamp(2.45rem, 5vw, 3.8rem); line-height: .98; letter-spacing: -.045em; }
.legal h2 { margin-top: 36px; }
.legal p, .legal li { color: #506078; }
.legal .btn { color: #fff; }
.page-intro { max-width: 760px; margin-bottom: 36px; }
.page-intro p { color: var(--muted); font-size: 1.06rem; }

.contact-page { padding: 86px 0 100px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.contact-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-soft); }
.contact-card h1 { margin: 12px 0 14px; font-size: clamp(2.55rem, 5vw, 4rem); line-height: .98; letter-spacing: -.045em; }
.contact-card p { color: var(--muted); }
.contact-direct { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-direct strong, .contact-direct a, .contact-direct span { display: block; }
.contact-direct a { margin: 5px 0 2px; color: var(--brand); font-size: 1.05rem; font-weight: 850; }
.contact-direct span { color: #8290a2; font-size: .82rem; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 13px; border: 1px solid var(--line-strong); border-radius: 11px; color: var(--ink); background: #fff; }
.field textarea { min-height: 160px; resize: vertical; }
.form-note { margin: 0; color: #7d8b9d; font-size: .8rem; }
.form-status { min-height: 24px; color: var(--accent); font-size: .86rem; font-weight: 700; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .app-preview { max-width: 760px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-showcase { grid-template-columns: 1fr; }
  .product-panel-large { grid-row: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-intro { position: static; }
  .cta-box { display: block; }
  .cta-actions { margin-top: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 78px; left: 20px; right: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .nav-links.open { display: grid; gap: 3px; }
  .nav-links.open a { padding: 10px 9px; border-radius: 9px; }
  .nav-links.open a:hover { background: var(--brand-soft); }
  .mobile-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 70px; }
  .nav-links { top: 70px; left: 14px; right: 14px; }
  .nav-actions .btn-primary { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding: 64px 0 24px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.25rem); }
  .hero-actions .btn { width: 100%; }
  .app-preview { padding: 9px; border-radius: 22px; transform: none; }
  .vd-app { min-height: 0; }
  .vd-header { flex-wrap: wrap; gap: 8px; padding: 12px; }
  .vd-header strong { width: 100%; }
  .vd-content { padding: 14px; }
  .vd-heading { align-items: start; }
  .vd-grid { grid-template-columns: 1fr; }
  .mini-row { grid-template-columns: 1fr; gap: 2px; }
  .proof-strip { margin-top: 44px; }
  .section { padding: 74px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 17px; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .product-panel { min-height: 0; padding: 23px; }
  .ui-tr { grid-template-columns: 1fr; gap: 2px; padding: 10px 12px; }
  .ui-th { display: none; }
  .public-package { align-items: start; flex-direction: column; }
  .setup-banner { display: block; }
  .setup-banner .btn { margin-top: 16px; width: 100%; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-copy { padding: 24px 20px; }
  .price-side { padding: 26px 22px; }
  .price-side .btn { width: 100%; }
  .cta-box { padding: 38px 24px; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
  .legal { padding: 60px 0 72px; }
  .legal article { padding: 29px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .footer-columns { grid-template-columns: 1fr; }
  .hero-note { display: grid; gap: 8px; }
}

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