:root {
  --navy: #071827;
  --navy-2: #0d2338;
  --ink: #142033;
  --muted: #5c6a7a;
  --line: #dbe3ec;
  --bg: #f5f7fa;
  --white: #ffffff;
  --gold: #f4a51c;
  --gold-dark: #d88700;
  --danger: #b42318;
  --green: #0f766e;
  --shadow: 0 18px 45px rgba(7, 24, 39, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 20;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(7, 24, 39, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}
.logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}
.logo span { color: var(--gold); }
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
}
.nav a:hover { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(244, 165, 28, 0.26);
}
.btn-primary:hover { background: #ffb52e; }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.24);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}
.mobile-menu { display: none; }

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(244,165,28,0.24), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, #0a2238 55%, #16324f 100%);
  padding: 74px 0 62px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.06; margin: 0; color: inherit; }
h1 { font-size: clamp(2.45rem, 5vw, 4.9rem); letter-spacing: -0.065em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); letter-spacing: -0.055em; }
h3 { font-size: 1.35rem; letter-spacing: -0.03em; }
.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.27rem);
  color: rgba(255,255,255,0.84);
  max-width: 680px;
  margin: 22px 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.9);
}
.trust-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 9px;
}

.card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card { padding: 28px; }
.form-card h2 { color: var(--navy); font-size: 1.75rem; }
.form-card p { color: var(--muted); margin: 10px 0 20px; }
.form-grid { display: grid; gap: 13px; }
.field label {
  display: block;
  font-weight: 800;
  font-size: 0.87rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 94px; resize: vertical; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}
.checkbox input { margin-top: 5px; }
.form-card .btn { width: 100%; margin-top: 4px; }
.reassurance { font-size: 0.88rem; color: var(--green) !important; font-weight: 800; }

.section { padding: 82px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-muted { background: #edf2f7; }
.section-head { max-width: 780px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-head p,
.section-dark .muted { color: rgba(255,255,255,0.76); }
.section-note { color: var(--muted); font-size: 0.92rem; margin-top: 18px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mini-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.mini-card p { color: var(--muted); margin-bottom: 18px; }
.media-card { overflow: hidden; }
.truck-photo {
  width: calc(100% + 48px);
  max-width: none;
  height: 260px;
  object-fit: cover;
  margin: -24px -24px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 28px rgba(7, 24, 39, 0.08); }
.team-card p { color: var(--muted); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--gold); font-weight: 950; margin-bottom: 18px; }
.text-link { color: var(--danger); font-weight: 900; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.compare-box {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.compare-box.highlight { background: rgba(244,165,28,0.13); border-color: rgba(244,165,28,0.42); }
.compare-box ul { padding-left: 20px; color: rgba(255,255,255,0.84); }

.photo-section { padding-top: 34px; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
}
.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(7, 24, 39, 0.12);
}
.photo-card-large { grid-row: span 2; min-height: 540px; }
.real-photo-grid {
  grid-template-columns: 1.2fr repeat(2, 0.9fr);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,39,0.04) 30%, rgba(7,24,39,0.82) 100%);
}
.photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  align-content: start;
}
.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 8px 18px rgba(7, 24, 39, 0.06);
}

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: steps; }
.step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 14px;
}
.step p { color: var(--muted); margin-bottom: 0; }

.testimonial-video-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), #102a44);
  color: var(--white);
  box-shadow: var(--shadow);
}
.testimonial-video-card h3 { font-size: 1.55rem; margin: 8px 0 12px; }
.testimonial-video-card p { color: rgba(255,255,255,0.78); }
.testimonial-video-card .eyebrow { color: var(--gold); }
.testimonial-video-card video {
  width: 100%;
  border-radius: 18px;
  background: #04111d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}
.testimonial-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}
.quote {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.quote blockquote { margin: 0; color: var(--ink); font-size: 1.03rem; }
.quote cite { display: block; margin-top: 18px; font-weight: 900; color: var(--navy); font-style: normal; }

.state-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.state-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  font-weight: 950;
  font-size: 1.25rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), #102a44);
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,0.8); }

.site-footer {
  background: #04111d;
  color: rgba(255,255,255,0.78);
  padding: 58px 0 96px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
.footer-grid h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.footer-grid a:hover { color: var(--gold); }

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 10px;
  background: rgba(7, 24, 39, 0.97);
  gap: 10px;
}
.mobile-sticky .btn { flex: 1; padding: 12px 10px; font-size: 0.9rem; }

@media (max-width: 980px) {
  .nav, .header-actions .btn { display: none; }
  .mobile-menu { display: inline-flex; }
  .hero-grid, .grid-2, .testimonial-video-card, .testimonial-feature, .cta-band { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .timeline, .state-grid, .photo-grid, .real-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card-large { grid-row: auto; min-height: 360px; }
  .compare { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding: 44px 0 42px; }
  .section { padding: 58px 0; }
  .grid-4, .grid-3, .timeline, .state-grid, .photo-grid, .real-photo-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card-large { min-height: 260px; }
  .chips { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .form-card { padding: 20px; }
  .cta-band { padding: 28px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky { display: flex; }
  .site-footer { padding-bottom: 112px; }
}

/* Scripted claim help chat */
.claim-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  font-family: inherit;
}
.claim-chat__launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--gold);
  color: var(--navy);
  font: inherit;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(7, 24, 39, 0.28);
  cursor: pointer;
}
.claim-chat__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.16);
}
.claim-chat__panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(660px, calc(100vh - 96px));
  display: grid;
  grid-template-rows: auto minmax(120px, 1fr) auto auto auto;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(219, 227, 236, 0.95);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 24, 39, 0.34);
}
.claim-chat__panel[hidden] { display: none; }
.claim-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy), #102a44);
  color: var(--white);
}
.claim-chat__header strong { display: block; line-height: 1.1; }
.claim-chat__header span { display: block; color: rgba(255,255,255,0.72); font-size: 0.82rem; margin-top: 3px; }
.claim-chat__close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.claim-chat__messages {
  display: grid;
  gap: 10px;
  align-content: start;
  overflow-y: auto;
  padding: 16px;
  background: #f7f9fb;
}
.claim-chat__message {
  max-width: 92%;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.42;
}
.claim-chat__message--bot {
  justify-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}
.claim-chat__message--user {
  justify-self: end;
  background: var(--navy);
  color: var(--white);
}
.claim-chat__quick {
  display: grid;
  gap: 8px;
  padding: 12px 16px 6px;
}
.claim-chat__option {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.claim-chat__option:hover { border-color: var(--gold); background: #fff8ea; }
.claim-chat__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 16px 0;
}
.claim-chat__primary,
.claim-chat__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 9px 10px;
  font-weight: 900;
  font-size: 0.86rem;
  text-align: center;
}
.claim-chat__primary { background: var(--gold); color: var(--navy); }
.claim-chat__secondary { background: var(--navy); color: var(--white); }
.claim-chat__disclaimer {
  margin: 0;
  padding: 10px 16px 14px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .claim-chat {
    right: 12px;
    bottom: 82px;
  }
  .claim-chat__launcher {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
  .claim-chat__panel {
    max-height: calc(100vh - 150px);
  }
}

/* Free Claim Review conversion enhancements */
.hero-review-card ul,
.review-sidebar-card ul,
.check-list {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-review-card li,
.review-sidebar-card li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}
.hero-review-card li::before,
.review-sidebar-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 950;
}
.review-sidebar-card { margin: 24px 0; }
.form-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 2px;
  padding-top: 6px;
  color: var(--navy);
}
.form-divider span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 950;
  font-size: 0.85rem;
}
.form-divider strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-slim { padding: 56px 0 44px; }
.notice-band {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.86);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 26px;
}
.badge-row, .status-grid, .faq-grid { display: grid; gap: 18px; }
.badge-row { grid-template-columns: repeat(3, 1fr); }
.status-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.stat-card p, .status-card p { color: var(--muted); }
.status-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.status-card.green { border-top: 5px solid var(--green); }
.status-card.yellow { border-top: 5px solid var(--gold); }
.status-card.red { border-top: 5px solid var(--danger); }
.check-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.check-list li { color: var(--muted); }
.info-band {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(244,165,28,0.12), rgba(7,24,39,0.04));
  border: 1px solid var(--line);
}
.two-up-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 780px; }
.table-wrap th, .table-wrap td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table-wrap th { background: #f8fafc; color: var(--navy); font-size: 0.9rem; }
.kicker { font-size: 0.95rem; color: var(--muted); margin-top: 14px; }
.hero-card-stack { display: grid; gap: 18px; }
.hero-note-card { padding: 26px; }
.hero-note-card h3 { color: var(--navy); margin-bottom: 10px; }
.appraisal-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.small-note { font-size: 0.9rem; color: var(--muted); }
@media (max-width: 980px) {
  .badge-row, .status-grid, .appraisal-pillars, .faq-grid, .two-up-list { grid-template-columns: 1fr; }
}
