@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap');

:root {
  --ink: #10243e;
  --ink-deep: #07182d;
  --ink-soft: #496078;
  --paper: #f7f4ed;
  --paper-bright: #fffdf8;
  --line: #d9d5ca;
  --amber: #e89a2f;
  --amber-dark: #b8640f;
  --sky: #dce9f1;
  --sage: #dfe8df;
  --red: #b93331;
  --success: #1c6a4b;
  --shadow: 0 24px 60px rgba(16, 36, 62, .11);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
a { color: inherit; }
img, svg { display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(232, 154, 47, .55); outline-offset: 3px; }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; background: white; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 12px; color: var(--amber-dark); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.headline, h1, h2, h3 { font-family: "Newsreader", serif; line-height: 1.03; letter-spacing: -.025em; }
h1 { margin: 0; font-size: clamp(3rem, 8vw, 6.8rem); font-weight: 600; }
h2 { margin: 0; font-size: clamp(2.25rem, 4.8vw, 4.5rem); font-weight: 600; }
h3 { margin: 0; font-size: clamp(1.4rem, 2vw, 1.9rem); }
p { margin-block: 0 1rem; }
.lede { max-width: 670px; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.small { font-size: .86rem; }
.muted { color: var(--ink-soft); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid rgba(16,36,62,.15); border-radius: 999px; background: rgba(255,255,255,.5); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(232,154,47,.15); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(16,36,62,.09); background: rgba(247,244,237,.92); backdrop-filter: blur(18px); }
.utility { padding: 6px 0; color: white; background: var(--ink-deep); text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; width: 40px; height: 40px; place-items: center; color: white; border-radius: 12px 12px 12px 3px; background: var(--ink); font-family: "Newsreader", serif; font-size: 1.25rem; box-shadow: 0 8px 16px rgba(16,36,62,.18); }
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; font-family: "Newsreader", serif; font-size: 1.1rem; }
.brand-copy span { color: var(--ink-soft); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links > a { font-size: .9rem; font-weight: 600; text-decoration: none; }
.nav-links > a:hover { color: var(--amber-dark); }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 13px 20px; border: 1px solid transparent; border-radius: 12px; cursor: pointer; font-weight: 700; line-height: 1.2; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink-deep); background: var(--amber); box-shadow: 0 10px 24px rgba(184,100,15,.2); }
.button-primary:hover { background: #f0a844; box-shadow: 0 14px 30px rgba(184,100,15,.28); }
.button-secondary { border-color: rgba(16,36,62,.18); background: rgba(255,255,255,.55); }
.button-secondary:hover { background: white; }
.mobile-toggle { display: none; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 10px; background: white; color: var(--ink); }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { display: block; width: 20px; height: 2px; content: ""; background: currentColor; }
.mobile-toggle span { margin: 4px auto; }

.hero { position: relative; overflow: hidden; padding: clamp(64px, 10vw, 130px) 0 84px; }
.hero::after { position: absolute; width: 520px; height: 520px; right: -180px; top: 50px; z-index: -1; content: ""; border: 1px solid rgba(16,36,62,.12); border-radius: 50%; box-shadow: inset 0 0 0 70px rgba(220,233,241,.45), inset 0 0 0 140px rgba(255,255,255,.32); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: end; gap: clamp(40px, 7vw, 90px); }
.hero h1 em { color: var(--amber-dark); font-style: italic; }
.hero-copy .lede { margin-top: 26px; }
.state-desk { position: relative; padding: 26px; border: 1px solid rgba(16,36,62,.14); border-radius: var(--radius); background: rgba(255,253,248,.83); box-shadow: var(--shadow); }
.state-desk::before { position: absolute; inset: 8px; z-index: -1; content: ""; border: 1px solid rgba(16,36,62,.09); border-radius: 19px; }
.state-desk h2 { margin-bottom: 6px; font-size: 1.8rem; }
.state-list { display: grid; gap: 10px; margin-top: 22px; }
.state-link { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: white; text-decoration: none; transition: transform .2s ease, border .2s ease; }
.state-link:hover { border-color: var(--amber); transform: translateX(5px); }
.state-code { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--sky); font-size: .77rem; font-weight: 700; }
.state-link strong { display: block; }
.state-link small { color: var(--ink-soft); }
.arrow { font-size: 1.4rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 30px; color: var(--ink-soft); font-size: .82rem; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.check { display: grid; width: 20px; height: 20px; place-items: center; color: white; border-radius: 50%; background: var(--success); font-size: .7rem; }

.section { padding: clamp(70px, 10vw, 125px) 0; }
.section-white { background: var(--paper-bright); }
.section-ink { color: white; background: var(--ink-deep); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.section-head p { max-width: 510px; margin: 0; color: var(--ink-soft); }
.section-ink .section-head p { color: #aebdcb; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step { min-height: 290px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-bright); counter-increment: steps; }
.step:nth-child(2) { transform: translateY(26px); background: var(--sky); }
.step:nth-child(3) { background: var(--sage); }
.step::before { display: grid; width: 50px; height: 50px; margin-bottom: 65px; place-items: center; content: "0" counter(steps); border: 1px solid rgba(16,36,62,.2); border-radius: 50%; font-family: "Newsreader", serif; font-size: 1.15rem; }
.step p { margin: 10px 0 0; color: var(--ink-soft); }
.callout { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border-radius: 30px; background: var(--ink); box-shadow: var(--shadow); }
.callout-art { position: relative; min-height: 390px; overflow: hidden; background: var(--sky); }
.road-lines { position: absolute; inset: -40px; transform: rotate(-18deg); background: repeating-linear-gradient(90deg, transparent 0 100px, rgba(16,36,62,.1) 100px 102px), linear-gradient(110deg, transparent 44%, var(--amber) 44% 46%, transparent 46%); }
.report-card { position: absolute; width: 230px; left: 50%; top: 50%; padding: 30px; transform: translate(-50%,-50%) rotate(-6deg); border-radius: 5px; background: white; box-shadow: 0 30px 60px rgba(16,36,62,.22); }
.report-card::before { display: block; width: 70px; height: 8px; margin-bottom: 35px; content: ""; background: var(--amber); }
.report-line { height: 7px; margin: 14px 0; border-radius: 5px; background: #d7dee5; }
.report-line:nth-child(3) { width: 70%; }
.report-line:nth-child(4) { width: 85%; }
.callout-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(40px, 7vw, 80px); color: white; }
.callout-copy p { color: #c9d3dd; }

.page-hero { position: relative; overflow: hidden; padding: 80px 0 72px; border-bottom: 1px solid var(--line); background: var(--paper-bright); }
.page-hero .container { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); align-items: end; gap: 50px; }
.page-hero h1 { max-width: 850px; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero-side { padding-left: 24px; border-left: 2px solid var(--amber); }
.ad-label { display: inline-block; margin-bottom: 18px; padding: 6px 12px; color: white; background: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.notice { padding: 18px 20px; border: 1px solid #c8d8e2; border-radius: 14px; background: #eef5f8; color: var(--ink-soft); font-size: .9rem; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: clamp(40px, 8vw, 100px); }
.article h2 { margin-top: 70px; font-size: clamp(2rem, 4vw, 3.4rem); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 36px; }
.article p, .article li { color: var(--ink-soft); }
.article a:not(.button) { color: var(--amber-dark); font-weight: 700; text-underline-offset: 3px; }
.process-list { display: grid; gap: 16px; margin: 34px 0; padding: 0; list-style: none; counter-reset: process; }
.process-item { position: relative; padding: 28px 28px 28px 86px; border: 1px solid var(--line); border-radius: 18px; background: white; counter-increment: process; }
.process-item::before { position: absolute; left: 25px; top: 26px; display: grid; width: 42px; height: 42px; place-items: center; content: counter(process); color: white; border-radius: 50%; background: var(--ink); font-family: "Newsreader", serif; }
.process-item h3 { margin: 0 0 8px; }
.process-item p { margin: 0; }
.sidebar { position: sticky; top: 126px; padding: 26px; border-radius: 18px; background: var(--ink-deep); color: white; }
.sidebar h3 { margin-bottom: 12px; }
.sidebar p { color: #b9c6d2; font-size: .9rem; }
.sidebar .button { width: 100%; margin-top: 10px; }
.detail-list { padding: 0; list-style: none; }
.detail-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .88rem; }

.form-section { background: var(--sky); }
.report-search-section { background: var(--paper); }
.report-search-section .form-layout { align-items: start; }
.report-search-section .form-intro { position: static; }
.availability-card { margin-top: 24px; padding: 20px; border: 1px solid rgba(184,100,15,.25); border-radius: 14px; background: #fff7e8; }
.availability-card strong { display: block; margin-bottom: 5px; color: var(--amber-dark); }
.availability-card p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.locator-box { padding: 18px; border: 1px dashed #aaa79e; border-radius: 14px; background: #f8f6ef; }
.locator-box.invalid { border-color: var(--red); background: #fff4f2; }
.locator-box .legend { margin-bottom: 4px; }
.locator-box > p { margin-bottom: 15px; color: var(--ink-soft); font-size: .78rem; }
.form-layout { display: grid; grid-template-columns: minmax(260px,.68fr) minmax(0,1.32fr); gap: clamp(40px, 8vw, 95px); align-items: start; }
.form-intro { position: sticky; top: 125px; }
.form-intro h2 { margin-bottom: 22px; }
.form-intro .reassurance { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.reassurance span { padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.65); font-size: .8rem; font-weight: 700; }
.case-form { padding: clamp(25px, 5vw, 48px); border: 1px solid rgba(16,36,62,.1); border-radius: 25px; background: var(--paper-bright); box-shadow: var(--shadow); }
.form-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; color: var(--ink-soft); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.form-progress::after { height: 2px; flex: 1; content: ""; background: linear-gradient(90deg, var(--amber) 60%, var(--line) 60%); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label, .legend { display: block; margin-bottom: 7px; font-size: .86rem; font-weight: 700; }
.required { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); border: 1px solid #c9c7bf; border-radius: 10px; background: white; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber-dark); outline: 0; box-shadow: 0 0 0 4px rgba(232,154,47,.14); }
.field input.invalid, .field select.invalid, .field textarea.invalid, .choice-group.invalid, .consent.invalid { border-color: var(--red); }
.error { min-height: 19px; margin-top: 4px; color: var(--red); font-size: .76rem; }
.choice-group { display: flex; flex-wrap: wrap; gap: 9px; padding: 2px; border: 1px solid transparent; border-radius: 12px; }
.choice { position: relative; flex: 1 1 110px; }
.choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice label { display: flex; min-height: 46px; align-items: center; justify-content: center; margin: 0; padding: 10px 12px; cursor: pointer; border: 1px solid #c9c7bf; border-radius: 10px; background: white; text-align: center; font-size: .82rem; }
.choice input:checked + label { border-color: var(--ink); background: var(--ink); color: white; box-shadow: 0 7px 15px rgba(16,36,62,.15); }
.choice input:focus-visible + label { outline: 3px solid rgba(232,154,47,.55); }
.tooltip { display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center; margin-left: 4px; border-radius: 50%; background: var(--sky); color: var(--ink); font-size: .7rem; cursor: help; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #f6f4ed; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ink); }
.consent label { margin: 0; font-size: .82rem; font-weight: 500; }
.consent.invalid { background: #fff4f2; }
.case-form .submit { width: 100%; min-height: 58px; margin-top: 8px; font-size: 1rem; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--red); font-size: .85rem; text-align: center; }
.privacy-note { margin: 8px 0 0; color: var(--ink-soft); text-align: center; font-size: .74rem; }
.confirmation { padding: clamp(32px, 7vw, 64px); border: 1px solid rgba(28,106,75,.18); border-radius: 25px; background: var(--paper-bright); box-shadow: var(--shadow); }
.confirmation-icon { display: grid; width: 68px; height: 68px; margin-bottom: 30px; place-items: center; color: white; border-radius: 50%; background: var(--success); font-size: 2rem; }
.confirmation h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 5vw, 4rem); }
.confirmation .small-print { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .78rem; }

.faq-list { max-width: 850px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; width: 100%; grid-template-columns: 1fr auto; gap: 20px; padding: 24px 0; border: 0; background: none; color: var(--ink); cursor: pointer; text-align: left; font-family: "Newsreader", serif; font-size: 1.45rem; }
.faq-answer { display: none; max-width: 720px; padding: 0 0 24px; color: var(--ink-soft); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-plus { transition: transform .2s; }
.prose { max-width: 820px; }
.prose h2 { margin: 55px 0 16px; font-size: 2.3rem; }
.prose h3 { margin: 32px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--amber-dark); }

.site-footer { padding: 68px 0 24px; color: white; background: var(--ink-deep); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .6fr .9fr; gap: 55px; }
.footer-brand .brand { color: white; }
.footer-brand .brand-mark { color: var(--ink); background: var(--amber); }
.footer-brand .brand-copy span { color: #aab9c7; }
.footer-brand p { max-width: 390px; margin-top: 22px; color: #aab9c7; font-size: .88rem; }
.footer-title { margin-bottom: 14px; color: var(--amber); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #c7d0d9; font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-legal { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #92a4b4; font-size: .72rem; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; display: none; max-width: 760px; margin: auto; align-items: center; gap: 20px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: var(--ink-deep); color: white; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1; margin: 0; color: #c7d0d9; font-size: .8rem; }
.cookie-banner .button { min-height: 40px; padding: 9px 15px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 107px 16px auto; display: none; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper-bright); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .nav-links .button { width: 100%; }
  .mobile-toggle { display: grid; }
  .hero-grid, .page-hero .container, .content-grid, .form-layout, .callout, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .page-hero-side { padding-left: 0; border-left: 0; }
  .sidebar, .form-intro { position: static; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(2) { min-height: 0; transform: none; }
  .step::before { margin-bottom: 36px; }
  .callout-art { min-height: 310px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .utility { font-size: .62rem; letter-spacing: .08em; }
  .nav { min-height: 68px; }
  .brand-copy span { display: none; }
  .nav-links { inset-block-start: 99px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .hero { padding: 54px 0 65px; }
  .hero::after { display: none; }
  .section { padding: 70px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .state-desk, .case-form { padding: 20px; }
  .field-grid { grid-template-columns: 1fr; gap: 16px; }
  .field-full { grid-column: auto; }
  .page-hero { padding: 55px 0; }
  .process-item { padding: 23px 20px 23px 70px; }
  .process-item::before { left: 18px; top: 21px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* ============ No-cost emphasis system ============ */
.utility-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 20px; }
.utility-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--amber); text-decoration: none; }
.utility-phone strong { color: white; }
.utility-phone:hover { color: #f7c273; }

.nav-phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-phone svg { width: 17px; height: 17px; flex: none; }
.nav-phone-copy { display: grid; line-height: 1.1; }
.nav-phone-copy strong { font-family: "Newsreader", serif; font-size: 1.12rem; letter-spacing: -.01em; }
.nav-phone-copy span { color: var(--success); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-phone:hover strong { color: var(--amber-dark); }

/* Big "$0" price mark */
.zero-mark { display: inline-flex; align-items: flex-start; gap: 4px; color: var(--amber); font-family: "Newsreader", serif; font-weight: 600; font-size: clamp(4.6rem, 12vw, 9.5rem); line-height: .78; letter-spacing: -.05em; }
.zero-mark i { padding-top: .12em; font-style: normal; font-size: .42em; }
.zero-caption { margin-top: 10px; color: var(--amber); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

/* Dark banner that shouts the price */
.free-band { position: relative; overflow: hidden; padding: clamp(30px, 5vw, 60px); border-radius: 30px; background: var(--ink-deep); color: white; box-shadow: var(--shadow); }
.free-band::after { position: absolute; width: 460px; height: 460px; right: -190px; bottom: -210px; content: ""; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), inset 0 0 0 60px rgba(255,255,255,.035); pointer-events: none; }
.free-band-grid { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: clamp(26px, 5vw, 58px); }
.free-band-price { text-align: center; padding-right: clamp(20px, 4vw, 44px); border-right: 1px solid rgba(255,255,255,.16); }
.free-band h2 { font-size: clamp(2rem, 4.4vw, 3.9rem); }
.free-band p { margin: 14px 0 0; max-width: 640px; color: #b6c4d1; }
.free-band .eyebrow { color: var(--amber); }
.free-band strong { color: white; }

/* Line-item receipt of what costs nothing */
.free-ledger { display: grid; gap: 0; margin: 26px 0 0; padding: 0; list-style: none; }
.free-ledger li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,.18); font-size: .93rem; font-weight: 600; }
.free-ledger li:last-child { border-bottom: 0; }
.free-ledger li::after { content: "$0"; color: var(--amber); font-family: "Newsreader", serif; font-size: 1.4rem; font-weight: 600; }
.free-ledger li em { color: #97a8b7; font-style: normal; font-weight: 600; }

/* Rubber-stamp mark for the report-paper motif */
.free-stamp { display: inline-grid; padding: 9px 16px 11px; transform: rotate(-3.5deg); place-items: center; border: 2.5px solid var(--success); border-radius: 10px; color: var(--success); line-height: 1; text-align: center; }
.free-stamp b { display: block; font-family: "Newsreader", serif; font-size: 1.5rem; font-weight: 600; letter-spacing: .02em; }
.free-stamp em { display: block; margin-top: 3px; font-size: .58rem; font-style: normal; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

/* Struck-through agency fee next to our $0 */
.fee-compare { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 18px 0 0; }
.fee-was { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.5); color: var(--ink-soft); font-size: .8rem; font-weight: 700; text-decoration: line-through; }
.fee-now { padding: 6px 13px; border-radius: 999px; background: var(--success); color: white; font-size: .8rem; font-weight: 800; letter-spacing: .04em; }

/* Amber-flagged "free" step inside the numbered process list */
.process-item.free-step { border: 2px solid var(--amber); background: #fffaf0; box-shadow: 0 14px 34px rgba(184,100,15,.13); }
.process-item.free-step::before { background: var(--amber-dark); }
.free-flag { position: absolute; right: -6px; top: 20px; padding: 7px 14px; color: var(--ink-deep); border-radius: 8px 3px 3px 8px; background: var(--amber); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; box-shadow: 0 8px 18px rgba(184,100,15,.25); }
.process-item.free-step h3 { padding-right: 130px; }

/* Loud, plain-language free notice above the search form */
.free-headline { margin: 0 0 8px; font-family: "Newsreader", serif; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.1; letter-spacing: -.02em; }
.free-card { margin-top: 24px; padding: clamp(20px, 3vw, 28px); border: 2px solid var(--success); border-radius: 18px; background: #f0f7f2; }
.free-card .zero-mark { font-size: clamp(3.4rem, 8vw, 5.2rem); color: var(--success); }
.free-card > p { margin: 12px 0 0; color: #2c4a3c; font-size: .92rem; }
.free-card-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.free-inline-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.free-inline-list li { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: white; box-shadow: 0 2px 6px rgba(16,36,62,.07); font-size: .8rem; font-weight: 700; }
.free-inline-list li::before { content: "✓"; display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; background: var(--success); color: white; font-size: .6rem; }

/* Phone call-to-action */
.phone-cta { display: inline-flex; align-items: center; gap: 14px; padding: 14px 22px 14px 18px; border: 1px solid rgba(16,36,62,.16); border-radius: 16px; background: var(--paper-bright); text-decoration: none; box-shadow: 0 12px 26px rgba(16,36,62,.09); transition: transform .2s ease, box-shadow .2s ease; }
.phone-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(16,36,62,.14); }
.phone-cta-icon { display: grid; width: 44px; height: 44px; flex: none; place-items: center; border-radius: 12px; background: var(--amber); color: var(--ink-deep); }
.phone-cta-icon svg { width: 21px; height: 21px; }
.phone-cta-copy { display: grid; gap: 2px; line-height: 1.15; }
.phone-cta-copy .phone-label { color: var(--success); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.phone-cta-copy .phone-number { font-family: "Newsreader", serif; font-size: clamp(1.5rem, 3vw, 1.95rem); font-weight: 600; letter-spacing: -.01em; }
.phone-cta-copy .phone-digits { color: var(--ink-soft); font-size: .76rem; font-weight: 600; letter-spacing: .04em; }
.free-band .phone-cta { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); }
.free-band .phone-cta:hover { background: rgba(255,255,255,.12); }
.free-band .phone-cta-copy .phone-number { color: white; }
.free-band .phone-cta-copy .phone-label { color: #7bd3a4; }
.free-band .phone-cta-copy .phone-digits { color: #a9b8c6; }
.band-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }

/* Sticky bottom bar so the price is never off-screen on mobile */
.free-rail { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; border-top: 2px solid var(--amber); background: var(--ink-deep); color: white; box-shadow: 0 -12px 30px rgba(7,24,45,.28); }
.free-rail-copy { display: grid; line-height: 1.2; }
.free-rail-copy strong { color: var(--amber); font-size: .95rem; }
.free-rail-copy span { color: #a9b8c6; font-size: .72rem; }
.free-rail .button { min-height: 42px; padding: 9px 14px; font-size: .84rem; white-space: nowrap; }

.detail-list li.detail-free { color: var(--amber); font-weight: 700; }
.detail-list li.detail-free strong { color: white; }
.reassurance span.reassurance-loud { background: var(--success); color: white; }

@media (max-width: 1120px) and (min-width: 901px) {
  .nav-links { gap: 16px; }
  .nav-links > a { font-size: .84rem; }
  .nav-phone-copy strong { font-size: 1rem; }
  .nav-links .button-primary { padding: 13px 15px; }
}

@media (max-width: 900px) {
  .free-band-grid { grid-template-columns: 1fr; }
  .free-band-price { padding-right: 0; padding-bottom: 22px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .nav-phone { order: -1; }
  .free-rail { display: flex; }
  .cookie-banner { bottom: 84px; }
  .site-footer { padding-bottom: 96px; }
}

@media (max-width: 620px) {
  .process-item.free-step h3 { padding-right: 0; }
  .free-flag { position: static; display: inline-block; margin-bottom: 10px; border-radius: 8px; }
  .free-rail-copy span { display: none; }
}
