:root {
  --navy-950: #071426;
  --navy-900: #0b1f3a;
  --navy-800: #12345c;
  --navy-700: #1b4778;
  --orange: #ff6b00;
  --orange-dark: #d95600;
  --orange-soft: #fff1e7;
  --white: #ffffff;
  --slate-50: #f7f9fc;
  --slate-100: #edf2f7;
  --slate-200: #dce4ec;
  --slate-400: #8da0b4;
  --slate-600: #516579;
  --slate-700: #354a5f;
  --text: #172a3d;
  --shadow-sm: 0 8px 24px rgba(7, 20, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 20, 38, 0.16);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 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", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.topbar {
  background: var(--navy-950);
  color: #dfe9f5;
  font-size: .84rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a:hover { color: var(--white); }
.topbar-license { font-weight: 700; color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,31,58,.08);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy-900);
  color: var(--white);
  font-size: .93rem;
  box-shadow: inset 0 -4px 0 var(--orange);
}
.brand-copy { line-height: 1.05; }
.brand-copy span { display: block; }
.brand-copy small {
  margin-top: 5px;
  color: var(--slate-600);
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy-900);
  font-size: .94rem;
  font-weight: 700;
}
.desktop-nav a:not(.btn) { position: relative; }
.desktop-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.desktop-nav a:not(.btn):hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--navy-900); }
.mobile-menu {
  display: none;
  padding: 8px 20px 20px;
  border-top: 1px solid var(--slate-100);
  background: var(--white);
}
.mobile-menu.open { display: grid; gap: 4px; }
.mobile-menu a {
  padding: 12px 8px;
  color: var(--navy-900);
  font-weight: 750;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 11px;
  font-weight: 850;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(255,107,0,.22);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 26px rgba(255,107,0,.28); }
.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--slate-200);
}
.btn-secondary:hover { border-color: var(--navy-700); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 18%, rgba(255,107,0,.12), transparent 27%),
    linear-gradient(125deg, #f9fbfe 0%, #ffffff 56%, #f2f6fb 100%);
  border-bottom: 1px solid var(--slate-100);
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -170px;
  bottom: -210px;
  border: 56px solid rgba(11,31,58,.035);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 68px;
  align-items: center;
  min-height: 660px;
  padding: 72px 0;
}
.hero h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  color: var(--navy-950);
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 .accent { color: var(--orange); }
.hero-lead {
  max-width: 690px;
  margin: 0;
  color: var(--slate-700);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--slate-700);
  font-size: .91rem;
  font-weight: 700;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.check-dot {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 900;
}

.hero-card {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -85px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255,107,0,.18);
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card-label {
  margin-bottom: 16px;
  color: #ffc79f;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-card h2 { margin: 0 0 10px; font-size: 1.8rem; line-height: 1.15; }
.hero-card p { color: #d4e0ed; margin: 0 0 24px; }
.hero-points { display: grid; gap: 13px; margin: 26px 0 30px; }
.hero-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}
.hero-point strong { display: block; color: var(--white); }
.hero-point small { display: block; color: #b7c8da; margin-top: 2px; line-height: 1.4; }
.number-chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  color: #ffc79f;
  font-weight: 900;
}

.stats-strip { background: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  transform: translateY(-26px);
  background: var(--white);
}
.stat { padding: 24px 28px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--slate-100); }
.stat strong { display: block; color: var(--navy-900); font-size: 1.05rem; }
.stat span { display: block; color: var(--slate-600); font-size: .86rem; margin-top: 3px; }

.section { padding: 96px 0; }
.section-soft { background: var(--slate-50); }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section h2 {
  margin: 12px 0 14px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.section-dark h2 { color: var(--white); }
.section-heading p { margin: 0; color: var(--slate-600); font-size: 1.06rem; }
.section-dark .section-heading p { color: #b9c8d8; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(11,31,58,.02);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: #cfd9e5;
}
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: -.02em;
}
.service-card h3 { margin: 18px 0 8px; color: var(--navy-900); font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--slate-600); font-size: .94rem; }
.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy-800);
  font-weight: 850;
  font-size: .9rem;
}
.service-card a:hover { color: var(--orange-dark); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-panel {
  min-height: 470px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(7,20,38,.98), rgba(18,52,92,.94)),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.feature-panel::before,
.feature-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 48px solid rgba(255,255,255,.04);
}
.feature-panel::before { width: 330px; height: 330px; right: -120px; top: -110px; }
.feature-panel::after { width: 220px; height: 220px; left: -90px; bottom: -90px; border-color: rgba(255,107,0,.12); }
.feature-panel .mini-label { color: #ffc79f; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; font-size: .73rem; }
.feature-panel h3 { position: relative; margin: 10px 0 8px; font-size: 2rem; line-height: 1.1; }
.feature-panel p { position: relative; margin: 0; color: #c6d4e2; max-width: 470px; }
.reason-list { display: grid; gap: 18px; margin-top: 28px; }
.reason {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.reason-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 900;
}
.reason h3 { margin: 0 0 4px; color: var(--navy-900); font-size: 1.04rem; }
.reason p { margin: 0; color: var(--slate-600); font-size: .93rem; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card {
  position: relative;
  padding: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
}
.process-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
}
.process-card h3 { margin: 18px 0 8px; font-size: 1.2rem; }
.process-card p { margin: 0; color: #b9c8d8; font-size: .94rem; }

.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  color: var(--navy-900);
  font-weight: 850;
}
.area-link:hover { border-color: var(--orange); color: var(--orange-dark); }
.area-link span:last-child { color: var(--orange); }

.quote-wrap {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 50px;
  align-items: start;
}
.contact-stack { display: grid; gap: 14px; margin-top: 30px; }
.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}
.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 900;
}
.contact-item strong { display: block; color: var(--navy-900); font-size: .9rem; }
.contact-item span, .contact-item a { color: var(--slate-600); font-size: .93rem; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
}
.quote-form h3 { margin: 0 0 6px; color: var(--navy-900); font-size: 1.55rem; }
.quote-form > p { margin: 0 0 24px; color: var(--slate-600); font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { color: var(--navy-900); font-size: .84rem; font-weight: 800; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #fbfcfe;
  color: var(--text);
  border-radius: 10px;
  padding: 12px 13px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group textarea { min-height: 124px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(27,71,120,.09);
}
.form-note { margin: 13px 0 0; color: var(--slate-600); font-size: .78rem; }
.hidden { display: none !important; }

.faq-list { display: grid; gap: 12px; max-width: 880px; margin-inline: auto; }
.faq-item { border: 1px solid var(--slate-200); border-radius: 12px; background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: var(--white);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 850;
}
.faq-question span:last-child { color: var(--orange); font-size: 1.3rem; }
.faq-answer { display: none; padding: 0 20px 19px; color: var(--slate-600); font-size: .94rem; }
.faq-item.open .faq-answer { display: block; }

.cta-band {
  margin-top: 74px;
  padding: 34px 38px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h3 { margin: 0 0 4px; font-size: 1.55rem; line-height: 1.15; }
.cta-band p { margin: 0; opacity: .93; }
.cta-band .btn { flex: 0 0 auto; }

.page-hero {
  padding: 84px 0 70px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.page-hero h1 { margin: 12px 0 14px; max-width: 850px; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.05em; }
.page-hero p { max-width: 760px; margin: 0; color: #c6d4e2; font-size: 1.08rem; }
.page-hero .page-trust-row { margin-top: 22px; color: #dce7f2; }
.page-hero .page-trust-row .check-dot { background: rgba(255,107,0,.16); color: #ffc79f; }
.breadcrumb { font-size: .84rem; color: #b8c8d7; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--white); }
.content-grid { display: grid; grid-template-columns: 1fr 330px; gap: 54px; align-items: start; }
.prose h2 { color: var(--navy-900); margin: 0 0 12px; font-size: 2rem; line-height: 1.1; }
.prose h3 { color: var(--navy-900); margin: 32px 0 10px; }
.prose p { color: var(--slate-700); }
.prose ul { padding-left: 20px; color: var(--slate-700); }
.prose li + li { margin-top: 7px; }
.sidebar-card {
  position: sticky;
  top: 116px;
  padding: 26px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--slate-50);
}
.sidebar-card h3 { margin: 0 0 8px; color: var(--navy-900); }
.sidebar-card p { color: var(--slate-600); font-size: .9rem; }
.sidebar-card .btn { width: 100%; margin-top: 8px; }
.sidebar-card .btn + .btn { margin-top: 10px; }

.site-footer { background: var(--navy-950); color: #b8c8d7; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr; gap: 50px; }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-copy small { color: #91a6bb; }
.footer-brand p { max-width: 500px; color: #9db0c3; font-size: .91rem; }
.footer-heading { color: var(--white); font-weight: 850; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: .8rem;
  color: #839ab1;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -8px 26px rgba(7,20,38,.09);
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-sticky-cta .btn { min-height: 46px; }

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background: var(--slate-50);
}
.thank-you-card {
  max-width: 720px;
  text-align: center;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
}
.thank-you-icon { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); font-size: 1.4rem; font-weight: 950; }
.thank-you-card h1 { color: var(--navy-900); margin: 0 0 12px; }
.thank-you-card p { color: var(--slate-600); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid, .split-grid, .quote-wrap { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; min-height: auto; }
  .hero-card { max-width: 720px; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 760px) {
  body { padding-bottom: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { min-height: 34px; justify-content: center; text-align: center; }
  .topbar-inner > span:first-child { display: none; }
  .header-inner { min-height: 68px; }
  .brand-copy { font-size: .9rem; }
  .brand-copy small { display: none; }
  .brand-mark { width: 39px; height: 39px; }
  .hero-grid { padding: 54px 0 72px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.7rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 26px; border-radius: 20px; }
  .stats-grid { grid-template-columns: 1fr; transform: translateY(-20px); }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--slate-100); }
  .section { padding: 74px 0; }
  .cards-3, .area-grid { grid-template-columns: 1fr; }
  .split-grid { gap: 38px; }
  .feature-panel { min-height: 390px; padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; border-radius: 20px; }
  .cta-band { padding: 28px; flex-direction: column; align-items: flex-start; }
  .cta-band .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-sticky-cta { display: grid; }
  .page-hero { padding: 62px 0 54px; }
  .thank-you-card { padding: 34px 24px; }
}
