@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("manrope-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("space-grotesk-latin.woff2") format("woff2");
}

:root {
  --ink: #071827;
  --ink-2: #0d2438;
  --ink-3: #173a55;
  --blue: #0b6fb9;
  --blue-dark: #07588f;
  --blue-2: #2c91dd;
  --blue-3: #8ec9f2;
  --sky: #eaf5fc;
  --paper: #f6f8fb;
  --white: #fff;
  --muted: #536574;
  --line: rgba(7, 24, 39, .13);
  --line-light: rgba(255, 255, 255, .16);
  --success: #117a53;
  --warning: #f1b941;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 32px rgba(7, 24, 39, .08);
  --shadow: 0 24px 70px rgba(7, 24, 39, .13);
  --shadow-blue: 0 20px 50px rgba(11, 111, 185, .24);
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 22px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
p:last-child { margin-bottom: 0; }
::selection { background: rgba(44, 145, 221, .24); }

.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, summary):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

.topbar { position: relative; z-index: 80; color: rgba(255,255,255,.82); background: #04111d; font-size: .76rem; font-weight: 700; letter-spacing: .015em; }
.topbar-inner, .topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-list, .topbar__items { display: flex; align-items: center; gap: 17px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; color: var(--blue-3); }
.topbar a { color: var(--white); }
.topbar-rating { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-rating .stars { color: var(--warning); letter-spacing: 1px; }

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(7, 24, 39, .075);
  background: rgba(246, 248, 251, .84);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .94); box-shadow: 0 8px 30px rgba(7, 24, 39, .08); }
.header-inner, .header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { width: 166px; height: 64px; display: inline-flex; align-items: center; flex: 0 0 auto; border-radius: 10px; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 29px; margin-inline: auto; }
.nav-link {
  position: relative;
  color: #354757;
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-link::after { position: absolute; bottom: -8px; left: 0; width: 100%; height: 2px; content: ""; border-radius: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after, .nav-link--active::after { transform: scaleX(1); transform-origin: left; }
.nav-link[aria-current="page"], .nav-link--active { color: var(--blue-dark); }
.header-actions { display: flex; align-items: center; gap: 11px; }
.phone-link, .header__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: .83rem; font-weight: 800; white-space: nowrap; }
.phone-link svg { width: 17px; height: 17px; color: var(--blue); }
.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle svg { width: 22px; }
.mobile-menu {
  position: fixed;
  z-index: 65;
  top: calc(34px + var(--header-height));
  right: 16px;
  left: 16px;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu .nav-link { width: 100%; padding: 12px 10px; border-radius: 10px; }
.mobile-menu .nav-link:hover { background: var(--sky); }
.mobile-menu .nav-link::after { display: none; }
.mobile-menu-actions, .mobile-menu__actions { display: grid; gap: 10px; margin-top: 14px; padding-top: 15px; border-top: 1px solid var(--line); }

.button {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button::after { position: absolute; z-index: -1; top: -80%; left: -40%; width: 34%; height: 260%; content: ""; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .36), transparent); transform: rotate(20deg) translateX(-280%); transition: transform .7s ease; }
.button:hover::after { transform: rotate(20deg) translateX(520%); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--primary { color: var(--white); background: linear-gradient(135deg, var(--blue-2), var(--blue)); box-shadow: var(--shadow-blue); }
.button--primary:hover { box-shadow: 0 24px 62px rgba(11, 111, 185, .34); }
.button--dark { color: var(--white); background: var(--ink); }
.button--light { color: var(--ink); background: var(--white); box-shadow: 0 16px 36px rgba(0, 0, 0, .14); }
.button--outline, .button--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, .72); box-shadow: 0 8px 26px rgba(7, 24, 39, .06); backdrop-filter: blur(12px); }
.button--ghost-dark { border-color: rgba(255, 255, 255, .18); color: var(--white); background: rgba(255, 255, 255, .08); }
.button--small { min-height: 44px; padding: 11px 17px; font-size: .86rem; }
.button svg { width: 18px; height: 18px; flex: 0 0 auto; }

.breadcrumb { padding: 17px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .75rem; }
.breadcrumb li:not(:last-child)::after { margin-left: 7px; content: "/"; color: #97a5af; }
.breadcrumb a { text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--blue-dark); }

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(44,145,221,.31), transparent 28%),
    linear-gradient(135deg, #061421 0%, #0d2a42 65%, #071827 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .78fr); gap: clamp(44px, 4vw, 70px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 19px; color: var(--blue-3); font-size: .76rem; font-weight: 800; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { width: 7px; height: 7px; content: ""; border-radius: 999px; background: currentColor; box-shadow: 0 0 0 6px rgba(11, 111, 185, .11); }
.section--dark .eyebrow::before { box-shadow: 0 0 0 6px rgba(142, 201, 242, .13); }
.prose .eyebrow { color: var(--blue); }
.hero h1 { max-width: 820px; margin-bottom: 26px; font-family: "Space Grotesk", sans-serif; font-size: clamp(3.05rem, 5.3vw, 5.65rem); font-weight: 600; line-height: .91; letter-spacing: -.066em; text-wrap: balance; }
.hero__lead { max-width: 700px; color: rgba(255, 255, 255, .73); font-size: clamp(1.03rem, 1.6vw, 1.23rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 25px 0 0; padding: 0; list-style: none; color: #c9deec; font-size: .78rem; font-weight: 750; }
.hero__proof li::before { margin-right: 7px; color: var(--blue-3); content: "✓"; font-weight: 900; }
.hero__media { position: relative; }
.hero__image { overflow: hidden; aspect-ratio: 4 / 4.6; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: var(--ink-2); box-shadow: var(--shadow); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; right: -18px; bottom: 28px; max-width: 220px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(4,17,29,.9); box-shadow: var(--shadow-sm); }
.hero__badge span, .hero__badge strong { display: block; }
.hero__badge span { color: #acc7d9; font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hero__badge strong { margin-top: 3px; font-size: .92rem; }

.trust-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 19px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .94rem; }
.trust-item span { margin-top: 2px; color: var(--muted); font-size: .71rem; }

.section { position: relative; padding: 112px 0; }
.section--white { background: var(--white); }
.section--dark { color: var(--white); background: var(--ink); }
.section--sky { background: var(--sky); }
.section__head { max-width: 810px; margin-bottom: 54px; }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: end; }
.section__head .eyebrow { color: var(--blue); }
.section--dark .section__head .eyebrow { color: var(--blue-3); }
.section h2 { margin-bottom: 18px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.15rem, 4.2vw, 4rem); font-weight: 600; line-height: 1.03; letter-spacing: -.052em; }
.section__lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.section--dark .section__lead { color: #bad0de; }

.split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(310px, .62fr); gap: 68px; align-items: start; }
.prose { color: #334a5a; font-size: 1rem; }
.prose h2, .prose h3 { color: var(--ink); }
.prose h2 { margin-top: 0; }
.prose h3 { margin: 30px 0 9px; font-size: 1.2rem; }
.prose p { margin-bottom: 18px; }
.prose a { color: var(--blue-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.side-card { position: sticky; top: calc(var(--header-height) + 25px); padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.side-card h2, .side-card h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; letter-spacing: -.02em; }
.check-list { display: grid; gap: 11px; margin: 19px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: #405565; }
.check-list li::before { position: absolute; left: 0; top: .08em; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: #dcf5eb; color: var(--success); content: "✓"; font-size: .7rem; font-weight: 900; }
.side-card .button { width: 100%; margin-top: 22px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.feature-card:hover { border-color: rgba(11, 111, 185, .32); transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card__num { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 20px; border-radius: 11px; color: var(--white); background: var(--blue); font-size: .8rem; font-weight: 850; }
.feature-card h3 { margin-bottom: 8px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; letter-spacing: -.02em; }
.feature-card p { color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: process; }
.process-step { position: relative; min-height: 230px; padding: 30px; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,.055); transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.process-step:hover { border-color: rgba(142, 201, 242, .36); background: rgba(255, 255, 255, .08); transform: translateY(-5px); }
.process-step::before { counter-increment: process; content: "0" counter(process); color: var(--blue-3); font-family: "Space Grotesk", sans-serif; font-size: .82rem; font-weight: 800; }
.process-step h3 { margin: 42px 0 9px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; }
.process-step p { color: #bfd3df; }

.pricing-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.pricing-panel__value { font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.05em; }
.pricing-panel__label { display: block; margin-bottom: 8px; color: var(--blue-dark); font-size: .73rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pricing-panel__note { margin-top: 12px; color: var(--muted); font-size: .78rem; }
.factor-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 0; padding: 0; list-style: none; }
.factor-list li { padding: 12px 14px; border-radius: 11px; background: var(--paper); color: #405565; font-size: .86rem; font-weight: 700; }

.local-panel { display: grid; grid-template-columns: 1fr .9fr; gap: 55px; align-items: center; }
.local-map { overflow: hidden; min-height: 400px; display: grid; place-items: end start; padding: 30px; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(11,111,185,.85), rgba(7,24,39,.96)), url("flash-03.webp") center/cover; color: white; }
.local-map strong { max-width: 460px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.5rem, 3vw, 2.7rem); line-height: 1.1; }
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.area-list li { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #3f5362; font-size: .76rem; font-weight: 750; }

.proof-box { padding: 23px; border-left: 5px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--sky); color: #314a5c; }
.proof-box strong { color: var(--ink); }

.link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.link-card { min-height: 175px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.link-card:hover { border-color: rgba(11,111,185,.45); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.link-card__label { color: var(--blue-dark); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.link-card strong { margin: 8px 0; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; line-height: 1.2; }
.link-card p { color: var(--muted); font-size: .82rem; }
.link-card__arrow { margin-top: auto; color: var(--blue-dark); font-weight: 850; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 65px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 25px rgba(7, 24, 39, .045); }
.faq-list summary { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { flex: 0 0 auto; color: var(--blue-dark); content: "+"; font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 18px 17px; color: #465c6c; }

.final-cta { padding: 28px 0; color: white; background: var(--paper); }
.final-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 52px; overflow: hidden; padding: clamp(38px, 7vw, 78px); border-radius: 36px; background: radial-gradient(circle at 85% 10%, rgba(142, 201, 242, .22), transparent 30%), linear-gradient(135deg, #0b6fb9, #07578f); box-shadow: 0 35px 85px rgba(11, 111, 185, .24); }
.final-cta__inner::before { position: absolute; right: -100px; bottom: -190px; width: 460px; height: 460px; content: ""; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; }
.final-cta__inner > * { position: relative; z-index: 2; }
.final-cta h2 { max-width: 750px; margin-bottom: 8px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; letter-spacing: -.045em; }
.final-cta p { max-width: 650px; color: #dceefa; }
.final-cta__actions { flex: 0 0 auto; display: grid; gap: 9px; }

.site-footer { padding: 72px 0 94px; color: rgba(255, 255, 255, .72); background: #04111d; }
.footer__grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr 1fr; gap: 46px; }
.footer__brand { width: 178px; height: auto; margin-bottom: 20px; padding: 8px 12px; border-radius: 12px; object-fit: contain; background: var(--white); }
.footer__intro { max-width: 340px; color: rgba(255, 255, 255, .56); font-size: .82rem; }
.footer__title { margin-bottom: 17px; color: var(--white); font-family: "Space Grotesk", sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: rgba(255, 255, 255, .58); font-size: .78rem; transition: color .18s ease; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .72); font-size: .75rem; }

.mobile-cta { position: fixed; z-index: 40; right: 12px; bottom: 12px; left: 12px; display: none; gap: 8px; padding: 9px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.mobile-cta .button { flex: 1; }
.mobile-cta__call { width: 48px; min-height: 48px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--ink); text-decoration: none; }
.mobile-cta__call svg { width: 21px; }

.contact-dialog {
  width: min(720px, calc(100vw - 28px));
  max-height: min(880px, calc(100svh - 24px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .32);
}
.contact-dialog::backdrop { background: rgba(3, 14, 24, .72); backdrop-filter: blur(9px); }
.contact-dialog .dialog-head {
  position: relative;
  padding: 31px 32px 25px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(142, 201, 242, .25), transparent 35%),
    linear-gradient(135deg, #071827, #0d2a42);
}
.contact-dialog .dialog-head h2 { margin-bottom: 8px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.7rem, 5vw, 2.55rem); letter-spacing: -.045em; line-height: 1.05; }
.contact-dialog .dialog-head p { max-width: 570px; color: rgba(255, 255, 255, .68); font-size: .84rem; }
.contact-dialog .dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}
.contact-dialog .dialog-close svg { width: 18px; height: 18px; }
.contact-dialog .dialog-body { padding: 27px 32px 32px; }
.contact-dialog .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-dialog .field { display: grid; gap: 7px; }
.contact-dialog .field--full { grid-column: 1 / -1; }
.contact-dialog .field label { color: #334857; font-size: .73rem; font-weight: 800; }
.contact-dialog .field input,
.contact-dialog .field select,
.contact-dialog .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 24, 39, .14);
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfd;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-dialog .field textarea { min-height: 96px; resize: vertical; }
.contact-dialog .field input:focus-visible,
.contact-dialog .field select:focus-visible,
.contact-dialog .field textarea:focus-visible { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(11, 111, 185, .13); outline: 3px solid var(--blue-2); outline-offset: 2px; }
.contact-dialog .consent { display: flex; align-items: flex-start; gap: 10px; margin: 17px 0 19px; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.contact-dialog .consent input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue); }
.contact-dialog .consent a { color: var(--blue-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.contact-dialog .form-submit { width: 100%; }
.contact-dialog .form-submit svg { width: 18px; height: 18px; }
.contact-dialog .form-submit:disabled { opacity: .68; cursor: wait; }
.contact-dialog .form-note { margin-top: 12px; color: var(--muted); font-size: .75rem; text-align: center; }
.contact-dialog .hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-hero { padding: 72px 0 68px; color: white; background: linear-gradient(135deg, #061421, #0d2a42); }
.legal-hero .eyebrow { color: var(--blue-3); }
.legal-hero h1 { max-width: 850px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.65rem, 6vw, 5.15rem); line-height: .98; letter-spacing: -.055em; }
.legal-hero p:last-child { max-width: 760px; margin-top: 20px; color: #d5e6f2; }
.legal-shell { padding: 72px 0 90px; }
.legal-layout { display: grid; grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr); gap: 54px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-height) + 24px); padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.legal-toc strong { display: block; margin-bottom: 12px; font-family: "Space Grotesk", sans-serif; }
.legal-toc nav { display: grid; gap: 7px; }
.legal-toc a { color: var(--blue-dark); font-size: .8rem; font-weight: 750; text-underline-offset: 3px; }
.legal-content { min-width: 0; padding: clamp(26px, 5vw, 54px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.legal-section + .legal-section { margin-top: 42px; padding-top: 42px; border-top: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 15px; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.03em; }
.legal-section h3 { margin: 22px 0 9px; font-size: 1rem; }
.legal-section p + p, .legal-section ul + p, .legal-section p + ul { margin-top: 12px; }
.legal-section ul { padding-left: 20px; }
.legal-section li + li { margin-top: 6px; }
.legal-section a { color: var(--blue-dark); font-weight: 750; text-underline-offset: 3px; }
.legal-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.legal-fact { padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.legal-fact span, .legal-fact strong { display: block; }
.legal-fact span { margin-bottom: 4px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.legal-alert { margin-top: 18px; padding: 17px 18px; border: 1px solid #e7bd67; border-radius: 13px; color: #6a4600; background: #fff7e5; }
.legal-updated { margin-top: 18px; color: var(--muted); font-size: .78rem; }

@media (max-width: 980px) {
  .desktop-nav, .header-actions, .header__phone, .header__cta { display: none; }
  .header-inner, .header__inner { justify-content: space-between; }
  .menu-toggle { display: grid; }
  .hero__grid { grid-template-columns: 1fr .62fr; gap: 36px; }
  .hero__badge { right: 8px; }
  .section__head--split, .split, .local-panel, .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .side-card { position: static; }
  .process-grid, .link-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-panel { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1160px); --header-height: 68px; }
  body { padding-bottom: 82px; }
  .topbar-list .topbar-item:nth-child(2), .topbar__items span:last-child { display: none; }
  .topbar-rating span:last-child { display: none; }
  .brand { width: 132px; height: 58px; }
  .hero { padding: 54px 0 62px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  .hero__media { max-width: 520px; }
  .hero__image { aspect-ratio: 4 / 3.7; }
  .hero__badge { right: 12px; bottom: 12px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(1.9rem, 9vw, 2.7rem); }
  .feature-grid, .process-grid, .link-grid, .factor-list, .footer__grid { grid-template-columns: 1fr; }
  .process-step { min-height: 190px; }
  .pricing-panel { padding: 25px; }
  .local-map { min-height: 310px; }
  .final-cta__inner { display: block; }
  .final-cta__actions { margin-top: 25px; }
  .footer__bottom { display: block; }
  .mobile-cta { display: flex; }
  .legal-hero { padding: 52px 0; }
  .legal-shell { padding: 48px 0 78px; }
  .legal-facts { grid-template-columns: 1fr; }
  .contact-dialog { border-radius: 23px; }
  .contact-dialog .dialog-head { padding: 28px 23px 23px; }
  .contact-dialog .dialog-body { padding: 23px; }
  .contact-dialog .form-grid { grid-template-columns: 1fr; }
  .contact-dialog .field--full { grid-column: auto; }
}

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

@media print {
  .topbar, .site-header, .mobile-menu, .mobile-cta, .hero__actions, .final-cta { display: none !important; }
  body { padding: 0; background: white; font-size: 11pt; }
  .hero { padding: 28px 0; background: var(--ink) !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  .section { padding: 32px 0; }
  .feature-card, .process-step, .link-card, .pricing-panel, details { break-inside: avoid; }
}
