:root {
  --red: #ee3124;
  --red-dark: #9d070b;
  --ink: #121212;
  --graphite: #242424;
  --muted: #626262;
  --line: #ddd8d1;
  --soft: #f6f2ec;
  --paper: #fbf8f3;
  --white: #ffffff;
  --rose: #fef2f2;
  --champagne: #c8a45d;
  --sage: #59685a;
  --shadow: 0 26px 80px rgba(31, 28, 24, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 49, 36, .035), transparent 360px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 216, 209, .72);
  background: rgba(251, 248, 243, .9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(238, 49, 36, .24);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 36px rgba(238, 49, 36, .24);
}

.button-dark {
  color: var(--white);
  background: var(--graphite);
}

.button-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .64);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: stretch;
  background:
    radial-gradient(circle at 5% 12%, rgba(200, 164, 93, .16), transparent 260px),
    linear-gradient(115deg, #fbf8f3 0%, #fbf8f3 56%, #171717 56%, #171717 100%);
}

.hero-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .85fr);
  gap: 56px;
  align-items: center;
  padding: 60px 0 56px;
}

.hero-copy {
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--red);
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.trust-item {
  min-height: 98px;
  padding: 17px;
  border: 1px solid rgba(221, 216, 209, .94);
  border-radius: 6px;
  background: rgba(255, 255, 255, .54);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.trust-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.local-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(238, 49, 36, .16);
  border-radius: 6px;
  background: rgba(254, 242, 242, .72);
}

.local-proof strong {
  flex: 0 0 auto;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.local-proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
  min-height: 330px;
  background-position: center;
  background-size: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .42));
}

.image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-box {
  padding: 28px;
}

.form-box h2 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.1;
}

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

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

.fine-print {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

section {
  padding: 84px 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tile {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}

.tile .number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.tile h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.tile p,
.tile li {
  color: var(--muted);
}

.tile ul {
  margin: 0;
  padding-left: 18px;
}

.band {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(18, 18, 18, .96), rgba(36, 36, 36, .98)),
    var(--graphite);
}

.band .section-head h2,
.band .tile h3 {
  color: var(--white);
}

.band .section-head p,
.band .tile p,
.band .tile li {
  color: rgba(255, 255, 255, .68);
}

.band .tile {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.signature-panel {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .25fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}

.note {
  padding: 32px;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(31, 28, 24, .08);
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.metric {
  display: grid;
  align-content: center;
  min-height: 160px;
  padding: 28px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.metric strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
  color: var(--white);
  background: var(--graphite);
  font-weight: 900;
}

.comparison-row div {
  padding: 18px;
  border-left: 1px solid var(--line);
}

.comparison-row:first-child div {
  border-left-color: rgba(255, 255, 255, .14);
}

.comparison-row div:first-child {
  border-left: 0;
  font-weight: 850;
}

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

.step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
}

.step strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 6px;
  color: var(--red);
  background: var(--rose);
}

.step h3 {
  margin: 0 0 4px;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-final {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(157, 7, 11, .96), rgba(238, 49, 36, .92)),
    var(--red-dark);
}

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

.cta-layout h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.cta-layout p {
  max-width: 650px;
  color: rgba(255, 255, 255, .76);
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, .6);
  background: #111;
  font-size: 12px;
}

.directory {
  padding: 42px 0 72px;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.directory-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}

.directory-card span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .directory-list {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 36px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .local-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .signature-panel,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-row div:first-child {
    border-top: 0;
  }

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    height: auto;
    min-height: 68px;
    padding: 10px 0;
  }

  .nav-actions .button-ghost {
    display: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .nav-actions {
    width: 100%;
  }

  .brand {
    min-width: 0;
  }
}
