:root {
  --navy: #13293d;
  --navy-soft: #1d3c56;
  --ink: #1a2731;
  --muted: #56636d;
  --paper: #fbf8f2;
  --white: #fff;
  --line: #d9d5cd;
  --accent: #eb6834;
  --accent-dark: #bd4315;
  --success: #1c6b42;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a { color: var(--navy-soft); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }

.container { width: min(100% - 2rem, 65rem); margin-inline: auto; }

.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 4px solid var(--accent);
}

.nav {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links { display: flex; gap: 1rem; }
.nav-links a { color: var(--white); font-weight: 650; text-decoration: none; }

main section { padding: 4.5rem 0; }
.hero { background: var(--navy); color: var(--white); padding: 5.5rem 0 6rem; }
.hero-inner { max-width: 48rem; }

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; color: var(--navy); }
h1 { color: inherit; font-size: clamp(2.5rem, 8vw, 4.8rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy { max-width: 43rem; font-size: 1.25rem; color: #e5ebef; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; }

.button {
  display: inline-block;
  border: 2px solid var(--accent);
  border-radius: 0.3rem;
  background: var(--accent);
  color: #171717;
  padding: 0.9rem 1.2rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover { background: #f47b4c; border-color: #f47b4c; }
.button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible {
  outline: 3px solid #f3a17f;
  outline-offset: 3px;
}
.text-link { color: var(--white); font-weight: 750; }

.section-intro { max-width: 42rem; margin-bottom: 2.25rem; }
.section-intro p { color: var(--muted); font-size: 1.1rem; }

.steps { display: grid; gap: 1.25rem; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li {
  position: relative;
  min-height: 4rem;
  padding: 0.55rem 0 0 4.8rem;
  counter-increment: steps;
  font-size: 1.08rem;
  font-weight: 700;
}
.steps li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  content: counter(steps);
  font-weight: 850;
}

.dark-section { background: var(--navy); color: var(--white); }
.dark-section h2 { color: var(--white); }
.dark-section .section-intro p { color: #dbe4ea; }
.cards { display: grid; gap: 1rem; }
.stat-card, .pricing-card {
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem;
}
.stat { display: block; color: var(--navy); font-size: 2.35rem; font-weight: 850; line-height: 1; }
.stat-label { margin: 0.6rem 0 0; color: var(--muted); font-weight: 700; }

.badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.badge {
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: var(--white);
  font-weight: 800;
}
.integration-note { margin-top: 1.5rem; color: var(--muted); }

.pricing-card { max-width: 38rem; border-top: 6px solid var(--accent); padding: 2rem; }
.price { margin: 0; color: var(--navy); font-size: 2.75rem; font-weight: 850; line-height: 1; }
.price small { font-size: 1rem; font-weight: 700; }
.ladder { padding-left: 1.3rem; }
.ladder li { margin: 0.45rem 0; }
.coverage { font-weight: 800; }

.lead-layout { display: grid; gap: 2.5rem; }
.lead-copy { max-width: 31rem; }
.lead-form {
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--white);
  padding: 1.4rem;
}
.form-grid { display: grid; gap: 1rem; }
label { display: block; font-weight: 750; }
input, select {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid #75808a;
  border-radius: 0.25rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem;
  font: inherit;
}
.consent {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.consent input { width: 1.15rem; height: 1.15rem; margin: 0.25rem 0 0; }
button[disabled] { cursor: not-allowed; filter: grayscale(0.8); opacity: 0.58; }
.form-message { min-height: 1.6rem; margin: 0.8rem 0 0; font-weight: 750; }
.form-message.success { color: var(--success); }
.form-message.error { color: #a22d19; }

.legal { max-width: 48rem; padding: 4rem 0 5rem; }
.legal h1 { color: var(--navy); font-size: clamp(2.3rem, 7vw, 4rem); }
.legal h2 { margin-top: 2.5rem; font-size: 1.55rem; }
.legal-callout { border-left: 5px solid var(--accent); background: var(--white); padding: 1.2rem 1.4rem; }

.site-footer { background: var(--navy); color: #e9eef1; padding: 2.5rem 0; }
.footer-inner { display: grid; gap: 1rem; }
.footer-brand { margin: 0; color: var(--white); font-weight: 800; }
.footer-address { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--white); }

@media (min-width: 44rem) {
  .steps { grid-template-columns: repeat(5, 1fr); }
  .steps li { padding: 4.2rem 0 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
  .lead-layout { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer-address { grid-column: 1; }
  .footer-links { grid-column: 2; grid-row: 1 / span 2; }
}
