/* ============ TOKENS ============ */
:root {
  /* Sather's palette, refined */
  --red: #B8202E;
  --red-deep: #8E1622;
  --red-dark: #5C0E16;
  --ink: #14171C;        /* near-black, the navbar tone */
  --ink-2: #1F242C;
  --slate: #4A5260;
  --slate-2: #6B7280;
  --line: #E6E3DE;
  --paper: #F6F2EB;      /* warm off-white */
  --paper-2: #EFEAE0;
  --cream: #FBF8F3;
  --white: #FFFFFF;
  --gold: #C9A86A;       /* subtle accent for stars/marks */

  --font-display: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-1: 0 1px 2px rgba(20,23,28,.06), 0 2px 6px rgba(20,23,28,.04);
  --shadow-2: 0 10px 30px rgba(20,23,28,.10), 0 2px 8px rgba(20,23,28,.06);
  --shadow-3: 0 30px 60px -20px rgba(20,23,28,.30), 0 18px 36px -18px rgba(20,23,28,.22);

  --container: 1240px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ============ TYPE ============ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow.muted { color: var(--slate-2); }

h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease, color .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 6px 14px rgba(184,32,46,.30);
}
.btn-primary:hover { background: var(--red-deep); }

.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: var(--ink-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20,23,28,.18);
}
.btn-ghost:hover { background: rgba(20,23,28,.04); }

.btn-light {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.btn-light:hover { background: #f9f6f1; }

.btn-link {
  padding: 0;
  background: none;
  color: var(--red);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-link:hover { color: var(--red-deep); }

/* ============ HEADER ============ */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.topbar a { transition: color .15s; }
.topbar a:hover { color: white; }
.topbar .left { display: flex; gap: 22px; align-items: center; }
.topbar .right { display: flex; gap: 18px; align-items: center; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.18); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(20,23,28,.06);
}
.nav .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 18px; padding-bottom: 18px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.brand-name em {
  font-style: italic;
  color: var(--red);
}
.nav-center { display: flex; gap: 4px; justify-self: center; }
.nav-center a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s;
}
.nav-center a:hover { background: rgba(20,23,28,.05); }
.nav-right { display: flex; gap: 10px; justify-self: end; align-items: center; }
.nav-phone {
  font-weight: 600;
  font-size: 15px;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 26px;
}
.hero-eyebrow .pill {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1.display {
  font-size: clamp(48px, 6.2vw, 88px);
  margin-bottom: 24px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--red);
  font-weight: 300;
}
.hero h1 .underline-mark {
  position: relative; display: inline-block;
}
.hero h1 .underline-mark::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q 50 1 100 6 T 198 5' stroke='%23B8202E' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}
.hero-sub {
  font-size: 19px;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex; gap: 28px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta .avatars {
  display: flex;
}
.hero-meta .avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -10px;
  background: linear-gradient(135deg, #cdb6a3, #8a6f5d);
  display: grid; place-items: center;
  color: white; font-size: 12px; font-weight: 600;
}
.hero-meta .avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #d4a373, #855723); }
.hero-meta .avatars span:nth-child(2) { background: linear-gradient(135deg, #b8202e, #5c0e16); }
.hero-meta .avatars span:nth-child(3) { background: linear-gradient(135deg, #4a5260, #14171c); }
.hero-meta .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero-meta .meta-text { font-size: 13px; color: var(--slate); line-height: 1.4; }
.hero-meta .meta-text strong { color: var(--ink); display: block; font-size: 14px; }

/* Quote card */
.quote-card {
  background: white;
  border-radius: 22px;
  padding: 8px;
  box-shadow: var(--shadow-3);
  position: relative;
}
.quote-card .inner {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
}
.quote-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.quote-card-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.quote-card-head p { font-size: 13px; color: var(--slate); margin-top: 4px; }
.quote-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(74,222,128,.12);
  color: #15803d;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.quote-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.quote-tab {
  padding: 10px 6px;
  text-align: center;
  font-size: 13px; font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.quote-tab.active {
  background: var(--ink);
  color: white;
}
.quote-tab svg { width: 16px; height: 16px; }
.quote-fields { display: grid; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: var(--slate); letter-spacing: 0.02em; }
.field input, .field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184,32,46,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-submit {
  margin-top: 18px;
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
}
.quote-submit:hover { background: var(--red-deep); }
.quote-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--slate-2);
  justify-content: center;
}

/* Floating cards behind hero quote */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-deco .blob-1 {
  position: absolute; right: -120px; top: 60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184,32,46,.08), transparent 70%);
  border-radius: 50%;
}
.hero-deco .blob-2 {
  position: absolute; left: -80px; bottom: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(20,23,28,.04), transparent 70%);
  border-radius: 50%;
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--ink);
  color: white;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  align-items: center;
  gap: 32px;
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-right: 1px solid rgba(255,255,255,.12);
  padding-right: 24px;
  line-height: 1.4;
}
.trust-stat {
  display: flex; flex-direction: column;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-stat .num em {
  color: var(--red);
  font-style: normal;
}
.trust-stat .lbl {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ============ SECTION ============ */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head h2.display { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 16px; }
.section-head h2 .accent { font-style: italic; color: var(--red); font-weight: 300; }
.section-head p { color: var(--slate); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ============ COVERAGE LINES ============ */
.coverage {
  background: var(--paper);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cov-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative;
  overflow: hidden;
}
.cov-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(184,32,46,.30);
}
.cov-card.featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  grid-row: span 2;
  grid-column: span 1;
  justify-content: space-between;
}
.cov-card.featured .cov-icon { background: rgba(255,255,255,.10); color: white; }
.cov-card.featured h3 { color: white; }
.cov-card.featured p { color: rgba(255,255,255,.72); }
.cov-card.featured .cov-list li { color: rgba(255,255,255,.85); }
.cov-card.featured .cov-list li::before { background: var(--red); }
.cov-card.featured .btn-link { color: white; }

.cov-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--paper-2);
  display: grid; place-items: center;
  color: var(--red);
  margin-bottom: 22px;
}
.cov-icon svg { width: 28px; height: 28px; }
.cov-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cov-card p { color: var(--slate); font-size: 15px; margin-bottom: 18px; }
.cov-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.cov-list li {
  font-size: 14px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.cov-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.cov-card .cov-foot { margin-top: auto; }

.cov-card.featured .featured-art {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.featured-art .featured-quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 16px;
  color: white;
}
.featured-art .featured-attr {
  display: flex; gap: 12px; align-items: center;
  font-size: 13px;
}
.featured-art .featured-attr .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #d4a373, #855723);
  display: grid; place-items: center;
  font-weight: 600; color: white;
}
.featured-art .featured-attr .who strong { display: block; color: white; }
.featured-art .featured-attr .who span { color: rgba(255,255,255,.6); }

/* ============ STORY SECTION ============ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(20,23,28,.30), rgba(184,32,46,.10)),
    linear-gradient(160deg, #5a4a3d 0%, #2a2520 100%);
  overflow: hidden;
}
.story-img::before {
  /* subtle film-grain feel */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(184,32,46,.20), transparent 50%);
}
.story-img-frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  color: white;
}
.story-img-frame .corner-mark {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.04em;
  font-style: italic;
}
.story-img-frame .stamp {
  align-self: flex-end;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.30);
  display: grid; place-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  background: rgba(184,32,46,.85);
}
.story-stats-floater {
  position: absolute;
  bottom: -24px; right: -24px;
  background: white;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  display: flex; gap: 22px;
  align-items: center;
}
.story-stats-floater .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
}
.story-stats-floater .txt {
  font-size: 13px; line-height: 1.4;
  color: var(--slate);
}
.story-stats-floater .txt strong { display: block; color: var(--ink); font-size: 14px; }

.story-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 20px;
}
.story-content h2 .accent { color: var(--red); font-style: italic; font-weight: 300; }
.story-content > p {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 18px;
  max-width: 560px;
}
.story-points {
  margin: 32px 0;
  display: grid; gap: 18px;
}
.story-point { display: flex; gap: 16px; }
.story-point .pin {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.story-point .pin svg { width: 22px; height: 22px; }
.story-point h4 { font-size: 17px; margin-bottom: 4px; font-weight: 600; }
.story-point p { font-size: 15px; color: var(--slate); }

/* ============ PROCESS ============ */
.process {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,32,46,.15), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(184,32,46,.06), transparent 50%);
  pointer-events: none;
}
.process .section-head h2.display { color: white; }
.process .section-head p { color: rgba(255,255,255,.65); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 32px; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.18), rgba(255,255,255,.18), transparent);
}
.process-step {
  display: flex; flex-direction: column;
  text-align: left;
  position: relative;
}
.process-step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.process-step:nth-child(1) .num { background: var(--red); border-color: var(--red); }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 8px;
  color: white;
}
.process-step p { color: rgba(255,255,255,.65); font-size: 15px; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--paper); }
.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.testi-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.testi-card.feature {
  background: var(--cream);
  grid-row: span 2;
}
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 400;
  flex-grow: 1;
}
.testi-card.feature .testi-quote { font-size: 28px; line-height: 1.30; }
.testi-card.feature .testi-quote::before {
  content: "“";
  display: block;
  font-size: 80px;
  line-height: 0.6;
  color: var(--red);
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.testi-attr {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi-attr .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.testi-attr strong { display: block; font-size: 15px; }
.testi-attr span { color: var(--slate-2); font-size: 13px; }

/* ============ CARRIERS ============ */
.carriers { background: var(--cream); }
.carriers-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}
.carrier {
  padding: 28px 16px;
  display: grid; place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: background .2s;
  text-align: center;
  line-height: 1.1;
}
.carrier:nth-child(6n) { border-right: 0; }
.carrier:nth-last-child(-n+6) { border-bottom: 0; }
.carrier:hover { background: var(--paper); }
.carrier .small { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-2); display: block; font-weight: 600; font-family: var(--font-sans); margin-top: 2px;}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-side h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 20px; }
.faq-side h2 .accent { color: var(--red); font-style: italic; font-weight: 300; }
.faq-side p { color: var(--slate); font-size: 18px; margin-bottom: 28px; }
.faq-side .faq-help {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex; gap: 14px; align-items: center;
}
.faq-side .faq-help .av {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cdb6a3, #5a4a3d);
  flex-shrink: 0;
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
}
.faq-side .faq-help h4 { font-size: 15px; margin-bottom: 2px; }
.faq-side .faq-help p { font-size: 13px; color: var(--slate); margin: 0 0 8px; }
.faq-side .faq-help a { font-weight: 600; color: var(--red); font-size: 13px; }

.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  cursor: pointer;
  gap: 24px;
  text-align: left;
  width: 100%;
}
.faq-q h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.faq-q .toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq-item.open .toggle { background: var(--red); border-color: var(--red); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 16px;
  padding-right: 60px;
}

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--red);
  color: white;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.20), transparent 50%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-band h2.display { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; color: white; }
.cta-band h2 .accent { font-style: italic; font-weight: 300; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 480px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-light { color: var(--ink); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.40); color: white; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.10); }

.cta-side {
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.cta-side h4 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
  font-weight: 600;
}
.cta-side .row {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.cta-side .row:last-child { border-bottom: 0; }
.cta-side .row .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-side .row .ic svg { width: 22px; height: 22px; }
.cta-side .row .lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.cta-side .row .val { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.cta-side .row .val.small { font-size: 16px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer .brand { color: white; margin-bottom: 18px; }
.footer .brand-name { color: white; }
.footer p { color: rgba(255,255,255,.6); font-size: 15px; max-width: 320px; margin-bottom: 24px; }
.footer .socials { display: flex; gap: 10px; }
.footer .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  transition: background .15s;
}
.footer .socials a:hover { background: var(--red); color: white; }
.footer h5 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 15px; transition: color .15s; }
.footer ul a:hover { color: white; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-base .legal { display: flex; gap: 22px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .faq-grid, .cta-grid, .testi-grid { grid-template-columns: 1fr; gap: 40px; }
  .coverage-grid, .process-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cov-card.featured { grid-row: span 1; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-label { border-right: 0; padding-right: 0; grid-column: span 2; }
  .nav-center { display: none; }
  .nav .container { grid-template-columns: 1fr auto; }
  .topbar .left .hide-md { display: none; }
  .carriers-strip { grid-template-columns: repeat(3, 1fr); }
  .carrier:nth-child(6n) { border-right: 1px solid var(--line); }
  .carrier:nth-child(3n) { border-right: 0; }
  .carrier:nth-last-child(-n+6) { border-bottom: 1px solid var(--line); }
  .carrier:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 640px) {
  .coverage-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer-base { flex-direction: column; gap: 14px; }
}
/* ===== Inner pages — shared on top of styles.css ===== */

/* Page hero (banner) */
.page-hero{
  background: linear-gradient(135deg, #14171C 0%, #1F242C 50%, #2a1417 100%);
  color: white;
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,32,46,.25), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(184,32,46,.10), transparent 55%);
  pointer-events:none;
}
.page-hero .container{position:relative;z-index:1}
.crumbs{
  display:flex;gap:10px;align-items:center;
  font-size:13px;color:rgba(255,255,255,.55);
  margin-bottom:22px;letter-spacing:.02em;
}
.crumbs a{color:rgba(255,255,255,.7);transition:color .15s}
.crumbs a:hover{color:white}
.crumbs .sep{opacity:.4}
.page-hero h1.display{
  font-size:clamp(40px,5.4vw,72px);
  margin-bottom:18px;color:white;
  max-width:820px;
}
.page-hero h1 .accent{color:#FF6B7A;font-style:italic;font-weight:300}
.page-hero p.lede{
  font-size:19px;color:rgba(255,255,255,.78);
  max-width:620px;margin-bottom:32px;line-height:1.5;
}
.page-hero .actions{display:flex;gap:12px;flex-wrap:wrap}
.page-hero .btn-light{background:white;color:var(--ink)}
.page-hero .btn-outline{
  background:transparent;color:white;
  border:1px solid rgba(255,255,255,.35);
}
.page-hero .btn-outline:hover{background:rgba(255,255,255,.10)}

/* Process / steps row */
.steps{padding:90px 0;background:var(--cream)}
.steps-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  position:relative;
}
.steps-grid::before{
  content:"";position:absolute;top:30px;left:30px;right:30px;height:1px;
  background:linear-gradient(to right, var(--line), var(--line));
  z-index:0;
}
.step{display:flex;flex-direction:column;position:relative;z-index:1}
.step .num{
  width:60px;height:60px;border-radius:50%;
  background:var(--cream);border:1.5px solid var(--line);
  display:grid;place-items:center;
  font-family:var(--font-display);font-size:20px;font-weight:500;
  color:var(--ink);margin-bottom:20px;
}
.step:nth-child(1) .num{background:var(--red);border-color:var(--red);color:white}
.step h3{font-family:var(--font-display);font-size:20px;font-weight:500;letter-spacing:-0.01em;margin-bottom:8px}
.step p{font-size:14px;color:var(--slate)}

/* 3-column tile blocks (pay/file/etc) */
.tiles{padding:80px 0;background:var(--paper)}
.tiles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tile{
  background:white;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:32px;display:flex;flex-direction:column;
  transition:transform .25s, box-shadow .25s, border-color .25s;
}
.tile:hover{transform:translateY(-3px);box-shadow:var(--shadow-2);border-color:rgba(184,32,46,.25)}
.tile .tic{
  width:52px;height:52px;border-radius:14px;background:var(--paper-2);
  color:var(--red);display:grid;place-items:center;margin-bottom:20px;
}
.tile h3{font-family:var(--font-display);font-size:24px;font-weight:500;letter-spacing:-0.01em;margin-bottom:10px}
.tile p{color:var(--slate);font-size:15px;margin-bottom:18px;flex-grow:1}
.tile .lnk{font-weight:600;color:var(--red);font-size:14px;display:inline-flex;align-items:center;gap:6px}
.tile .lnk:hover{color:var(--red-deep)}

/* Emergency callout strip */
.callout{
  margin:0 auto;max-width:960px;
  background:white;border:1px solid var(--line);border-left:4px solid var(--red);
  border-radius:var(--radius);padding:22px 28px;
  display:flex;gap:18px;align-items:center;
}
.callout .ic{
  width:44px;height:44px;border-radius:12px;
  background:var(--paper-2);color:var(--red);
  display:grid;place-items:center;flex-shrink:0;
}
.callout h4{font-family:var(--font-display);font-size:18px;font-weight:600;margin-bottom:4px}
.callout p{font-size:14px;color:var(--slate)}
.callout .nums{
  margin-left:auto;display:flex;gap:18px;flex-shrink:0;
  font-size:13px;color:var(--slate);
}
.callout .nums strong{display:block;color:var(--ink);font-size:15px}

/* Two-col content (image + checklist) */
.two-col{padding:90px 0}
.two-col-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:64px;align-items:center}
.two-col-grid.reverse{grid-template-columns:1.1fr 1fr}
.two-col-grid.reverse .two-col-img{order:2}
.two-col-img{
  aspect-ratio:4/5;border-radius:var(--radius-lg);overflow:hidden;
  background:linear-gradient(160deg,#5a4a3d 0%, #2a2520 100%);position:relative;
}
.two-col-img::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), transparent 50%),
             radial-gradient(circle at 70% 70%, rgba(184,32,46,.20), transparent 50%);
}
.two-col-img .frame{
  position:absolute;inset:24px;border:1px solid rgba(255,255,255,.18);
  border-radius:12px;padding:24px;color:white;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.two-col-img .frame .corner-mark{
  font-family:var(--font-display);font-style:italic;font-size:32px;font-weight:300;
  letter-spacing:-0.02em;
}
.two-col-content .eyebrow{display:inline-block;margin-bottom:14px}
.two-col-content h2{font-family:var(--font-display);font-size:clamp(34px,4vw,48px);font-weight:500;letter-spacing:-0.02em;line-height:1.05;margin-bottom:18px}
.two-col-content h2 .accent{color:var(--red);font-style:italic;font-weight:300}
.two-col-content > p{font-size:17px;color:var(--slate);margin-bottom:18px;max-width:540px}
.checklist{margin:24px 0;display:grid;gap:12px}
.checklist li{
  display:flex;gap:14px;align-items:flex-start;
  font-size:15px;line-height:1.5;
}
.checklist li::before{
  content:"";flex-shrink:0;
  width:24px;height:24px;border-radius:50%;
  background:var(--paper-2);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8202E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-position:center;background-repeat:no-repeat;background-size:14px;
}
.checklist ul{list-style:none;padding:0;margin:0}

/* 4-col coverage grid */
.cov-mini{padding:80px 0;background:var(--paper)}
.cov-mini-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.cov-mini-card{
  background:white;border:1px solid var(--line);border-radius:14px;
  padding:24px;display:flex;flex-direction:column;
  transition:transform .2s, box-shadow .2s;
}
.cov-mini-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-1)}
.cov-mini-card .ic{
  width:44px;height:44px;border-radius:10px;
  background:var(--paper-2);color:var(--red);
  display:grid;place-items:center;margin-bottom:14px;
}
.cov-mini-card h4{font-family:var(--font-display);font-size:18px;font-weight:600;margin-bottom:6px}
.cov-mini-card p{font-size:13px;color:var(--slate);margin-bottom:14px;flex-grow:1;line-height:1.45}
.cov-mini-card .lnk{font-size:13px;font-weight:600;color:var(--red);display:inline-flex;align-items:center;gap:4px}

/* Contact form */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:flex-start}
.contact-info h3{font-family:var(--font-display);font-size:32px;font-weight:500;letter-spacing:-0.01em;margin-bottom:14px}
.contact-info > p{color:var(--slate);font-size:17px;margin-bottom:32px;max-width:480px}
.contact-blocks{display:flex;flex-direction:column;gap:6px;margin-bottom:32px}
.contact-block{
  display:flex;gap:18px;align-items:flex-start;
  padding:20px;border:1px solid var(--line);border-radius:var(--radius);
  background:white;transition:border-color .2s, box-shadow .2s;
}
.contact-block:hover{border-color:rgba(184,32,46,.3);box-shadow:var(--shadow-1)}
.contact-block .ic{
  width:46px;height:46px;border-radius:12px;
  background:var(--paper-2);color:var(--red);
  display:grid;place-items:center;flex-shrink:0;
}
.contact-block .lbl{font-size:11px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--slate-2);margin-bottom:4px}
.contact-block .val{font-family:var(--font-display);font-size:20px;font-weight:500;letter-spacing:-0.01em}
.contact-block .val.small{font-size:16px}
.contact-block .sub{font-size:13px;color:var(--slate);margin-top:4px}

.contact-hours{
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;
}
.contact-hours h4{font-size:13px;letter-spacing:0.14em;text-transform:uppercase;color:var(--slate);margin-bottom:14px;font-weight:600}
.contact-hours .row{display:flex;justify-content:space-between;padding:8px 0;font-size:15px;border-bottom:1px dashed var(--line)}
.contact-hours .row:last-child{border-bottom:0}
.contact-hours .row .day{color:var(--ink);font-weight:500}
.contact-hours .row .hrs{color:var(--slate)}
.contact-hours .row.open .hrs::before{content:"●";color:#15803d;margin-right:6px;font-size:11px}
.contact-hours .row.closed .hrs{color:var(--slate-2)}

.contact-form{
  background:white;border:1px solid var(--line);border-radius:22px;
  padding:36px;box-shadow:var(--shadow-2);
}
.contact-form h3{font-family:var(--font-display);font-size:28px;font-weight:500;letter-spacing:-0.01em;margin-bottom:6px}
.contact-form > p{color:var(--slate);font-size:14px;margin-bottom:24px}
.contact-form .field{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.contact-form label{font-size:12px;font-weight:600;color:var(--slate);letter-spacing:.02em}
.contact-form input,.contact-form select,.contact-form textarea{
  padding:12px 14px;border:1px solid var(--line);background:var(--cream);
  border-radius:10px;font-size:15px;font-family:var(--font-sans);
  transition:border-color .15s, box-shadow .15s;
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
  outline:none;border-color:var(--red);box-shadow:0 0 0 3px rgba(184,32,46,.10);
}
.contact-form .row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.contact-form textarea{min-height:120px;resize:vertical}
.contact-form .submit{
  width:100%;padding:16px;margin-top:8px;
  background:var(--red);color:white;border-radius:12px;
  font-weight:600;font-size:15px;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:background .15s;
}
.contact-form .submit:hover{background:var(--red-deep)}

/* Map block */
.map-block{
  margin-top:60px;
  border:1px solid var(--line);border-radius:var(--radius-lg);
  overflow:hidden;background:#e8e3da;aspect-ratio:21/9;
  display:grid;place-items:center;
  position:relative;
  background-image:
    linear-gradient(rgba(180,170,150,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,170,150,.18) 1px, transparent 1px),
    linear-gradient(135deg, #d8d2c3 0%, #c3bca8 100%);
  background-size: 40px 40px, 40px 40px, auto;
}
.map-block .pin{
  width:54px;height:54px;border-radius:50%;
  background:var(--red);color:white;
  display:grid;place-items:center;
  box-shadow:0 12px 30px rgba(184,32,46,.40);
  position:relative;
}
.map-block .pin::after{
  content:"";position:absolute;inset:-12px;border-radius:50%;
  border:2px solid var(--red);opacity:.4;
  animation:ping 2s ease-out infinite;
}
@keyframes ping{0%{transform:scale(.8);opacity:.6}100%{transform:scale(1.6);opacity:0}}

/* Detail rows / specs */
.specs{padding:80px 0}
.specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px}
.specs h2{font-family:var(--font-display);font-size:clamp(34px,4vw,48px);font-weight:500;letter-spacing:-0.02em;line-height:1.05;margin-bottom:24px}
.specs h2 .accent{color:var(--red);font-style:italic;font-weight:300}
.specs > .container > p{font-size:17px;color:var(--slate);max-width:580px;margin-bottom:36px}
.specs-list{display:grid;gap:0;border-top:1px solid var(--line)}
.spec-item{
  display:grid;grid-template-columns:auto 1fr;gap:24px;
  padding:18px 0;border-bottom:1px solid var(--line);
  align-items:flex-start;
}
.spec-item .k{font-family:var(--font-mono);font-size:11px;color:var(--red);letter-spacing:.14em;text-transform:uppercase;font-weight:600;min-width:50px}
.spec-item .v strong{display:block;font-family:var(--font-display);font-size:18px;font-weight:600;margin-bottom:4px;letter-spacing:-0.01em}
.spec-item .v p{font-size:14px;color:var(--slate);line-height:1.5}

/* FAQ inline */
.faq-inline{padding:80px 0;background:var(--paper)}
.faq-inline-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:60px;align-items:start}
.faq-inline-grid h2{font-family:var(--font-display);font-size:clamp(32px,3.6vw,44px);font-weight:500;letter-spacing:-0.02em;line-height:1.05;margin-bottom:14px}
.faq-inline-grid h2 .accent{color:var(--red);font-style:italic;font-weight:300}
.faq-inline-grid p{color:var(--slate);font-size:16px;margin-bottom:20px}
.faq-inline-list{display:flex;flex-direction:column;border-top:1px solid var(--line)}
.faq-inline-item{border-bottom:1px solid var(--line);padding:18px 0}
.faq-inline-item summary{
  list-style:none;cursor:pointer;
  display:flex;justify-content:space-between;gap:18px;align-items:flex-start;
}
.faq-inline-item summary::-webkit-details-marker{display:none}
.faq-inline-item summary h4{font-family:var(--font-display);font-size:19px;font-weight:500;letter-spacing:-0.01em}
.faq-inline-item summary .toggle{
  width:32px;height:32px;border-radius:50%;border:1px solid var(--line);
  display:grid;place-items:center;flex-shrink:0;transition:transform .25s, background .2s;
  font-size:18px;font-weight:300;color:var(--ink);
}
.faq-inline-item[open] summary .toggle{background:var(--red);border-color:var(--red);color:white;transform:rotate(45deg)}
.faq-inline-item .ans{padding-top:12px;color:var(--slate);font-size:15px;line-height:1.6;padding-right:50px}

@media (max-width: 980px){
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .steps-grid::before{display:none}
  .tiles-grid,.cov-mini-grid{grid-template-columns:1fr 1fr}
  .two-col-grid,.two-col-grid.reverse,.contact-grid,.specs-grid,.faq-inline-grid{grid-template-columns:1fr;gap:36px}
  .two-col-grid.reverse .two-col-img{order:0}
  .callout{flex-direction:column;align-items:flex-start;gap:14px}
  .callout .nums{margin-left:0}
}
@media (max-width: 640px){
  .steps-grid,.tiles-grid,.cov-mini-grid{grid-template-columns:1fr}
}


/* ============ GHL FORM EMBED SECTION ============ */
/* Placed under the page hero on each of the 5 demo product pages.
   Replace the contents of #ghl-form-* divs with the GHL embed snippet. */
.ghl-form-section{
  padding:80px 0;background:var(--paper);
}
.ghl-form-card{
  max-width:760px;margin:0 auto;
  background:white;border:1px solid var(--line);border-radius:22px;
  box-shadow:var(--shadow-2);
  padding:8px;position:relative;
}
.ghl-form-card-inner{
  background:var(--cream);border-radius:16px;padding:36px 32px;
}
.ghl-form-header{text-align:center;margin-bottom:28px}
.ghl-form-header .eyebrow{display:inline-block;margin-bottom:10px}
.ghl-form-header h2{
  font-family:var(--font-display);font-size:clamp(28px,3.4vw,38px);
  font-weight:500;letter-spacing:-0.02em;line-height:1.05;
  color:var(--ink);margin-bottom:10px;
}
.ghl-form-header h2 .accent{color:var(--red);font-style:italic;font-weight:300}
.ghl-form-header p{
  color:var(--slate);font-size:15px;
  max-width:520px;margin:0 auto;line-height:1.55;
}
.ghl-form-embed{
  min-height:320px;
  border:1.5px dashed rgba(184,32,46,.30);
  border-radius:14px;padding:28px;
  background:white;
  display:flex;align-items:center;justify-content:center;
}
.ghl-form-embed iframe{width:100%;min-height:600px;border:0;background:white;border-radius:8px}
.ghl-form-placeholder{
  color:var(--slate);font-size:13px;text-align:center;
  font-family:var(--font-mono);margin:0;line-height:1.6;
}
.ghl-form-foot{
  display:flex;justify-content:center;gap:10px;align-items:center;
  margin-top:18px;font-size:12px;color:var(--slate-2);
}
.ghl-form-foot svg{width:13px;height:13px;color:#15803d}
@media (max-width:600px){
  .ghl-form-card-inner{padding:26px 22px}
  .ghl-form-embed{padding:20px}
}

/* ============ Page hero pill (lighter accent on red bg) ============ */
.page-hero h1 .accent-light{color:#FF8A99;font-style:italic;font-weight:300}

/* ============ Content prose section ============ */
.prose{padding:80px 0}
.prose-grid{display:grid;grid-template-columns:1fr;gap:0;max-width:760px;margin:0 auto}
.prose-grid h2{font-family:var(--font-display);font-size:clamp(28px,3.4vw,40px);font-weight:500;letter-spacing:-0.02em;line-height:1.05;margin:32px 0 12px}
.prose-grid h2:first-child{margin-top:0}
.prose-grid h2 .accent{color:var(--red);font-style:italic;font-weight:300}
.prose-grid p{font-size:17px;color:var(--slate);line-height:1.65;margin-bottom:14px}
.prose-grid strong{color:var(--ink)}

/* Mobile menu toggle */
.nav-toggle{
  display:none;width:42px;height:42px;border-radius:10px;
  background:transparent;border:1px solid var(--line);
  color:var(--ink);place-items:center;cursor:pointer;
}
.nav-toggle svg{width:20px;height:20px}
@media (max-width:980px){
  .nav-toggle{display:grid}
}
.mobile-nav{
  display:none;position:fixed;inset:0;z-index:100;
  background:var(--cream);padding:30px 28px;overflow-y:auto;
}
.mobile-nav.open{display:block}
.mobile-nav .mn-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px}
.mobile-nav .mn-close{
  width:42px;height:42px;border-radius:10px;
  background:white;border:1px solid var(--line);
  display:grid;place-items:center;font-size:22px;color:var(--ink);
}
.mobile-nav nav{display:flex;flex-direction:column;gap:6px;margin-bottom:30px}
.mobile-nav nav a{
  padding:14px 18px;border-radius:10px;
  font-size:16px;font-weight:500;color:var(--ink);
  background:white;border:1px solid var(--line);
}
.mobile-nav nav a:hover{background:var(--paper)}
.mobile-nav nav a.section{font-family:var(--font-display);font-size:13px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--slate-2);background:transparent;border:0;padding:14px 18px 6px}
.mobile-nav .mn-cta{display:flex;flex-direction:column;gap:10px;margin-top:14px;padding-top:24px;border-top:1px solid var(--line)}
.mobile-nav .mn-phone{font-family:var(--font-display);font-size:24px;color:var(--red);text-align:center;font-weight:500;letter-spacing:-0.01em}
