﻿:root {
  --navy: #064681;
  --blue: #088fc5;
  --teal: #0c9bb8;
  --green: #70bf44;
  --charcoal: #202932;
  --muted: #5f6c76;
  --line: #d9e3ea;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 70, 129, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--charcoal); background: var(--white); line-height: 1.6; }
a { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--navy); color: white; padding: 10px 14px; z-index: 1000; }
.skip-link:focus { left: 12px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { display: flex; align-items: center; gap: 18px; min-height: 84px; }
.brand img { width: 260px; max-height: 64px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 16px; margin-left: auto; font-size: 14px; font-weight: 700; }
.site-nav a { text-decoration: none; color: var(--charcoal); }
.site-nav a:hover { color: var(--blue); }
.header-phone { font-weight: 800; white-space: nowrap; text-decoration: none; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 18px; border-radius: 8px; border: 2px solid var(--navy); background: var(--navy); color: white; font-weight: 800; text-decoration: none; cursor: pointer; box-shadow: 0 8px 20px rgba(6,70,129,.16); }
.button:hover { background: #043763; border-color: #043763; }
.button-small { min-height: 38px; padding: 8px 13px; font-size: 14px; }
.button-secondary { background: white; color: var(--navy); }
.button-light { background: white; color: var(--navy); border-color: white; }
.nav-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 8px; padding: 9px 11px; font-weight: 800; }
.hero, .subhero { background: linear-gradient(135deg, #f6fbff 0%, #ffffff 45%, #eef8fb 100%); border-bottom: 1px solid var(--line); }
.hero { padding: 70px 0; }
.subhero { padding: 48px 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 42px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--blue); text-transform: uppercase; font-size: 13px; letter-spacing: .08em; font-weight: 900; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; color: var(--charcoal); }
h1 { font-size: clamp(34px, 6vw, 62px); color: var(--navy); letter-spacing: 0; }
h2 { font-size: clamp(25px, 3vw, 38px); }
h3 { font-size: 21px; }
.hero-lede { font-size: 20px; color: #34424d; max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 16px; }
.trust-note { color: var(--muted); font-size: 15px; }
.hero-panel, .side-panel, .info-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.hero-panel img { width: 100%; max-width: 360px; margin: 0 auto 18px; }
.section { padding: 64px 0; }
.section-muted { background: var(--soft); }
.two-col, .content-layout, .form-shell, .footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr); gap: 36px; align-items: start; }
.content-layout { grid-template-columns: minmax(0, 1fr) 320px; }
.long-copy p { margin: 0 0 18px; }
.long-copy ul, .check-list { margin: 0; padding-left: 22px; }
.check-list li { margin: 0 0 10px; }
.pill-grid, .service-grid, .steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pill-grid span, .service-card, .steps article { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 18px; box-shadow: 0 8px 22px rgba(32,41,50,.06); }
.pill-grid span { font-weight: 800; }
.service-card { text-decoration: none; color: var(--charcoal); }
.service-card span { display: block; font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.service-card small { color: var(--muted); }
.warning-band { background: var(--navy); color: white; }
.warning-band h2, .warning-band .eyebrow { color: white; }
.warning-band p { color: #e8f5ff; }
.steps span { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--green); color: white; font-weight: 900; margin-bottom: 12px; }
.breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { font-weight: 800; }
.side-panel { position: sticky; top: 104px; }
.request-form { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 800; font-size: 14px; margin-bottom: 14px; }
input, textarea { width: 100%; border: 1px solid #b9c8d2; border-radius: 8px; padding: 12px; font: inherit; }
textarea { resize: vertical; }
.form-message { color: var(--navy); font-weight: 800; min-height: 24px; }
.faq-list { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; }
summary { cursor: pointer; font-weight: 900; color: var(--navy); }
.site-footer { background: #18222b; color: #edf5fa; padding: 46px 0 82px; }
.site-footer h2 { color: white; font-size: 20px; }
.site-footer a { color: white; }
.footer-logo { background: white; border-radius: 8px; padding: 8px; width: 270px; margin-bottom: 16px; }
.mobile-call { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; text-align: center; border-radius: 8px; padding: 14px; background: var(--green); color: white; font-weight: 900; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,.22); }
@media (max-width: 980px) {
  .nav-wrap { flex-wrap: wrap; min-height: auto; padding: 12px 0; }
  .brand img { width: 210px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-nav { display: none; flex-basis: 100%; order: 5; margin-left: 0; flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .site-nav.is-open { display: flex; }
  .header-phone { margin-left: auto; }
  .hero-grid, .two-col, .content-layout, .form-shell, .footer-grid { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .pill-grid, .service-grid, .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 74px; }
  .container { width: min(100% - 24px, 1120px); }
  .hero, .section { padding: 42px 0; }
  .subhero { padding: 34px 0; }
  .brand img { width: 190px; }
  .header-phone, .nav-wrap > .button { display: none; }
  .hero-actions, .form-grid, .pill-grid, .service-grid, .steps { grid-template-columns: 1fr; display: grid; }
  .button { width: 100%; }
  .mobile-call { display: block; }
  .footer-logo { width: 220px; }
}
