:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #586171;
  --line: #d8dee8;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --accent: #2563eb;
  --accent-dark: #173f8f;
  --warm: #f59e0b;
  --max: 1140px;
}

* {
  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(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topline {
  background: #101827;
  color: #f8fafc;
}

.topline-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topline-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.topline a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 222, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--accent-dark);
}

.hero {
  min-height: clamp(580px, 78vh, 760px);
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(9, 16, 29, 0.88), rgba(9, 16, 29, 0.56) 48%, rgba(9, 16, 29, 0.15)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: end;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f8d383;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #eef4ff;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quick-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 22px;
  background: rgba(7, 13, 24, 0.68);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.quick-panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.quick-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #f4f7fb;
}

.quick-panel li {
  position: relative;
  padding-left: 22px;
}

.quick-panel li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: #9be7b6;
  content: "✓";
  font-weight: 900;
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--soft);
}

.section.tight {
  padding: 54px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.metric {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--accent-dark);
  font-size: 32px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 42px;
  align-items: start;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #2b3545;
  font-weight: 700;
}

.lead-form {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.lead-form h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

.lead-form p {
  margin: 0 0 18px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d1df;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.fine-print {
  margin-top: 14px;
  color: #667085;
  font-size: 12px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list a,
.area-list span {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: #354052;
  font-weight: 800;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-band {
  background: #111827;
  color: #fff;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.cta-band p {
  max-width: 680px;
  margin: 12px 0 0;
  color: #d6dfeb;
}

.footer {
  padding: 34px 0;
  background: #0b101a;
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer a {
  color: #fff;
}

.footer small {
  display: block;
  max-width: 760px;
  color: #9aa7bb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.service-hero {
  padding: 82px 0 70px;
  background:
    linear-gradient(90deg, rgba(9, 16, 29, 0.9), rgba(9, 16, 29, 0.58)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.service-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.service-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #eef4ff;
  font-size: 19px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: #d8e4f7;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 16px;
  background: var(--soft);
}

.thank-you-panel {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px;
  background: #fff;
  text-align: center;
}

.thank-you-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.thank-you-panel p {
  margin: 0 auto 24px;
  max-width: 590px;
  color: var(--muted);
}

.honeypot {
  display: none;
}

@media (max-width: 920px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
  }

  .quick-panel,
  .lead-form {
    position: static;
  }

  .grid.three,
  .grid.two,
  .metric-strip,
  .check-list {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .cta-band .section-inner,
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .topline-inner,
  .nav-inner {
    align-items: start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 62px 0 70px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .button {
    width: 100%;
  }
}
