:root {
  --blue: #1E6FB8;
  --blue-dark: #155587;
  --blue-light: #E8F1FA;
  --ochre: #C8A062;
  --ochre-dark: #A87E3F;
  --gray: #8E9094;
  --gray-dark: #4A4D52;
  --gray-warm: #3A4049;
  --ink: #1F2937;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;
  --bg-blur: rgba(255, 255, 255, 0.96);
  --border: #E1E5EB;
  --border-strong: #D8DEE7;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-header: 0 1px 0 rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.06);
  --radius: 10px;
  --max: 1180px;
  --mobile-cta-h: 64px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-blur);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-header);
  border-bottom-color: transparent;
}
.nav .phone {
  color: var(--blue); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav .phone svg { width: 14px; height: 14px; }
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand .wordmark {
  display: flex; flex-direction: column; line-height: 1; font-weight: 700;
}
.brand .wordmark .name { font-size: 1.35rem; letter-spacing: -0.01em; }
.brand .wordmark .name .gray { color: var(--gray-dark); }
.brand .wordmark .name .blue { color: var(--blue); }
.brand .wordmark .sub {
  font-size: 0.7rem; letter-spacing: 0.32em; color: var(--gray);
  font-weight: 500; margin-top: 4px;
  text-align: center; padding-left: 0.32em;
}
@media (max-width: 480px) {
  .brand .wordmark .name { font-size: 1.25rem; }
  .brand .wordmark .sub { font-size: 0.65rem; letter-spacing: 0.3em; }
  .brand img { height: 46px; }
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--gray-dark); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: inherit; font-size: 0.95rem; font-weight: 500; color: var(--gray-dark);
}
.nav-dropdown-toggle:hover { color: var(--blue); }
.nav-dropdown-toggle svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; min-width: 200px;
  opacity: 0; visibility: hidden; transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--gray-dark); font-size: 0.92rem; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; transition: all 0.15s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  border-bottom: 1px solid var(--border);
  background: #F5F7FA;
}
.hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 35%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,0.45) 100%);
  z-index: 1;
}
.hero .inner { max-width: 640px; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 16px; }
.hero p.lede { font-size: 1.2rem; color: var(--gray-warm); margin-bottom: 28px; line-height: 1.5; }
.hero p.lede-mobile { display: none; }
@media (max-width: 720px) {
  .hero p.lede-desktop { display: none; }
  .hero p.lede-mobile { display: block; }
}
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .hero { padding: 70px 0 80px; }
  .hero::before {
    background: linear-gradient(180deg, rgba(15,23,42,0.12) 0%, rgba(15,23,42,0.38) 65%, rgba(15,23,42,0.48) 100%);
  }
  .hero h1, .hero p.lede { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.25); }
  .hero .ctas { flex-direction: column; align-items: stretch; }
  .hero .ctas .btn { width: 100%; text-align: center; }
  .hero .btn-outline {
    background: rgba(255,255,255,0.95);
    color: var(--blue); border-color: rgba(255,255,255,0.95);
  }
  .hero .btn-outline:hover { background: #fff; color: var(--blue-dark); }
}

/* Section */
section { padding: 72px 0; }
section.alt { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--gray-dark); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre-dark);
  margin-bottom: 12px;
  position: relative; padding: 0 28px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; position: absolute; top: 50%;
  width: 18px; height: 2px; background: var(--ochre);
  transform: translateY(-50%);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }

/* Review band — Google rating trust signal */
.review-band {
  border-top: 1px solid var(--blue);
  border-top-width: 2px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 38px 0;
}
.review-band .inner {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap; text-align: center;
}
.review-band .stars {
  display: inline-flex; gap: 2px;
}
.review-band .stars svg {
  width: 22px; height: 22px; color: var(--ochre);
  fill: currentColor;
}
.review-band .stars svg.half path { fill: url(#halfStarGrad); }
.review-band .rating {
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1;
}
.review-band .meta {
  font-size: 0.95rem; color: var(--gray-dark);
}
.review-band .meta a {
  color: var(--blue); font-weight: 600; text-decoration: none;
}
.review-band .meta a:hover { color: var(--blue-dark); text-decoration: underline; }
.review-band .divider {
  width: 1px; height: 22px; background: var(--border);
}
@media (max-width: 540px) {
  .review-band .divider { display: none; }
  .review-band .inner { gap: 8px; }
  .review-band .rating { font-size: 1.2rem; }
}

/* Sticky mobile CTA bar */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--bg-blur);
  backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) 12px;
  box-shadow: 0 -4px 16px rgba(15,23,42,0.06);
}
.mobile-cta .inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mobile-cta .btn {
  padding: 12px 14px; font-size: 0.92rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-cta .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  body { padding-bottom: calc(var(--mobile-cta-h) + env(safe-area-inset-bottom)); }
}

/* Size cards (location pages) */
.size-cards {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.size-card {
  flex: 1 1 200px; max-width: 260px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 20px; transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  display: flex; flex-direction: column;
}
.size-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,111,184,0.08); }
.size-card .label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ochre-dark); margin-bottom: 4px;
}
.size-card .dims {
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1;
}
.size-card .visual {
  background: linear-gradient(135deg, #EAF1F8 0%, #DCE7F2 100%);
  border: 1px solid var(--blue-light);
  border-radius: 6px;
  height: 56px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.size-card .best-for {
  font-size: 0.92rem; color: var(--gray-dark);
  flex: 1;
}
.size-card .price {
  font-size: 1.05rem; color: var(--blue); font-weight: 700;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.size-card .price small { font-weight: 500; color: var(--gray); }

/* Locations grid */
.locations-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .locations-grid { grid-template-columns: 1fr; } }
.location-card {
  background: #fff; border: 1px solid var(--border-strong); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex; flex-direction: column;
}
.location-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,111,184,0.12); }
.location-card a.card-link { color: inherit; }
.location-card a.card-link:hover h3 { color: var(--blue); }
.location-card .card-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.location-card .card-actions .btn {
  padding: 10px 8px; font-size: 0.88rem; text-align: center;
  white-space: nowrap;
}
.location-card .img {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(30,111,184,0.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(30,111,184,0.08) 0 1px, transparent 1px 32px),
    linear-gradient(135deg, #E8F0F8 0%, #D4E3F0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-dark); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.location-card .img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.location-card .body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.location-card h3 {
  margin-bottom: 10px; line-height: 1.15;
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.015em;
}
.location-card .meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0 0 18px;
  font-size: 0;
}
.location-card .meta .chip {
  display: inline-block;
  padding: 5px 12px; border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--gray-dark);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.01em;
}
.location-card .meta .chip.accent {
  background: rgba(200, 160, 98, 0.12);
  border-color: rgba(200, 160, 98, 0.3);
  color: var(--ochre-dark);
}
.location-card .addr-wrap { flex: 1; margin-bottom: 14px; }

/* Address pill — link to Google Maps */
.address-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(30, 111, 184, 0.08);
  color: var(--blue-dark);
  border: 1px solid rgba(30, 111, 184, 0.18);
  font-weight: 600; font-size: 0.82rem; line-height: 1.3;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.address-pill:hover {
  background: rgba(30, 111, 184, 0.14);
  border-color: rgba(30, 111, 184, 0.32);
  color: var(--blue-dark);
  transform: translateY(-1px);
}
.address-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue); }
.address-pill .addr-text { display: flex; flex-direction: column; line-height: 1.25; }
.address-pill .addr-line2 { font-weight: 500; }
.location-card .meta { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; }

/* Features */
.features {
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature { text-align: center; }
.feature .icon {
  position: relative;
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F4F9FE 0%, #C5DAF0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 0 0 1px rgba(30,111,184,0.15),
    0 6px 16px rgba(30,111,184,0.12);
}
.feature .icon::after {
  content: ''; position: absolute;
  bottom: -3px; right: -3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ochre); opacity: 0.85;
  box-shadow: 0 0 0 3px #fff;
}
.feature .icon svg { width: 30px; height: 30px; stroke-width: 1.5; position: relative; z-index: 1; }
section.alt .feature .icon::after { box-shadow: 0 0 0 3px var(--bg-soft); }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--gray-dark); font-size: 0.95rem; margin: 0; }

/* Sizes table */
.sizes-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.sizes-table th, .sizes-table td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border);
}
.sizes-table th { background: var(--bg-soft); font-weight: 600; font-size: 0.9rem; color: var(--gray-dark); }
.sizes-table tr:last-child td { border-bottom: 0; }
.sizes-table td.price { color: var(--blue); font-weight: 600; }
.table-scroll { overflow-x: auto; }

/* Location page */
.loc-hero {
  background: linear-gradient(135deg, #F5F7FA 0%, #E8F1FA 100%);
  padding: 60px 0 50px; border-bottom: 1px solid var(--border);
}
.loc-hero .crumb { font-size: 0.9rem; color: var(--gray); margin-bottom: 12px; }
.loc-hero .kicker {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 8px;
}
.loc-hero h1 { margin-bottom: 12px; }
.loc-meta {
  display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 24px;
}
.loc-meta .item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin: 0 0 4px; font-weight: 600; }
.loc-meta .item p { margin: 0; color: var(--ink); font-weight: 500; }
.map-embed {
  width: 100%; aspect-ratio: 16/9; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.two-col {
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* FAQ */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq-item[open] { border-color: var(--blue); box-shadow: 0 4px 12px rgba(30,111,184,0.06); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px; padding-right: 48px;
  font-weight: 600; color: var(--ink);
  position: relative; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item p {
  margin: 0; padding: 0 22px 20px;
  color: var(--gray-warm); line-height: 1.6;
}
.faq-more { text-align: center; margin-top: 28px; }

/* Other locations cross-link block */
.other-locations { padding: 56px 0; border-top: 1px solid var(--border); }
.other-locations h3 {
  text-align: center; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-dark); margin-bottom: 24px;
}
.other-locations .grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 900px; margin: 0 auto;
}
.other-locations a {
  display: block; padding: 16px 18px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink); transition: border-color 0.15s ease, transform 0.15s ease;
}
.other-locations a:hover { border-color: var(--blue); transform: translateY(-2px); color: var(--ink); }
.other-locations a strong { display: block; color: var(--blue); margin-bottom: 4px; }
.other-locations a span { font-size: 0.88rem; color: var(--gray-dark); }

/* Tenant protection page */
.tp-intro { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.tp-intro p { color: var(--gray-warm); font-size: 1.05rem; }

.tp-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.tp-card {
  flex: 1 1 240px; max-width: 300px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.tp-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,111,184,0.08); }
.tp-card .tp-icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px;
  background: linear-gradient(135deg, #EAF1F8 0%, #D4E3F0 100%);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(30,111,184,0.12);
}
.tp-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.tp-card p { color: var(--gray-warm); font-size: 0.95rem; margin: 0; }

.tp-levels { display: flex; gap: 8px; justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
.tp-level { background: var(--blue-light); color: var(--blue-dark); font-weight: 700; border-radius: 999px; padding: 6px 14px; font-size: 0.95rem; }

.coverage-footnote { max-width: 800px; margin: 28px auto 0; text-align: center; font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* Exclusions */
.exclusions-grid { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .exclusions-grid { grid-template-columns: 1fr; } }
.exclusion-col h3 { margin-bottom: 8px; }
.exclusion-col > p { color: var(--gray-warm); margin-bottom: 16px; }
.exclusion-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.exclusion-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-warm); font-size: 0.95rem; }
.exclusion-list svg { color: #C0392B; flex-shrink: 0; margin-top: 2px; }
.exclusion-note { font-size: 0.85rem; color: var(--gray); margin-top: 16px; line-height: 1.6; }

/* Claim steps */
.claim-steps { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-bottom: 40px; }
@media (max-width: 880px) { .claim-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .claim-steps { grid-template-columns: 1fr; } }
.claim-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; }
.claim-step-number {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 14px;
}
.claim-step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.claim-step p { color: var(--gray-warm); font-size: 0.95rem; margin: 0; }

.claim-info-box { background: var(--blue-light); border-radius: var(--radius); padding: 32px; max-width: 900px; margin: 0 auto; }
.claim-info-box h3 { text-align: center; margin-bottom: 22px; }
.claim-info-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin-bottom: 24px; }
@media (max-width: 600px) { .claim-info-grid { grid-template-columns: 1fr; } }
.claim-info-item { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-warm); font-size: 0.95rem; }
.claim-info-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.claim-info-cta { text-align: center; }

.tp-disclaimer { max-width: 820px; margin: 0 auto; }
.tp-disclaimer p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* CTA strip */
.cta-strip {
  background: var(--blue); color: #fff; padding: 48px 0;
}
.cta-strip .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; margin: 0; }
.cta-strip .btn-primary { background: #fff; color: var(--blue); }
.cta-strip .btn-primary:hover { background: var(--blue-light); color: var(--blue-dark); }
.cta-strip .cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-outline-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; transition: all 0.15s ease;
  display: inline-block;
}
.cta-strip .btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* Footer */
.site-footer {
  background: #1A2330; color: #C7CDD6; padding: 56px 0 28px; font-size: 0.92rem;
}
.site-footer a { color: #C7CDD6; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 36px;
}
.site-footer h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-brand .lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .lockup img {
  height: 48px; width: auto;
  background: #fff; padding: 4px; border-radius: 6px;
}
.footer-brand .lockup .wordmark { display: flex; flex-direction: column; line-height: 1; font-weight: 700; }
.footer-brand .lockup .wordmark .name { font-size: 1.25rem; letter-spacing: -0.01em; color: #fff; }
.footer-brand .lockup .wordmark .name .gray { color: #C7CDD6; }
.footer-brand .lockup .wordmark .name .blue { color: #6CA8DC; }
.footer-brand .lockup .wordmark .sub { font-size: 0.65rem; letter-spacing: 0.32em; color: #8893A4; font-weight: 500; margin-top: 4px; text-align: center; padding-left: 0.32em; }
.footer-brand .veteran-badge { display: block; margin-top: 16px; text-align: left; }
.footer-brand .veteran-badge img { display: block; width: 72px; height: auto; margin: 0; }
.footer-bottom {
  border-top: 1px solid #2A3445; padding-top: 20px; color: #8893A4;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

@media (max-width: 820px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-blur); padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
    z-index: 60;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: flex-start; font-size: 0.95rem; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; padding: 8px 0 0 14px; min-width: 0; background: transparent;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 8px 0; }
  .nav-dropdown:hover .nav-dropdown-toggle svg { transform: none; }
  body.nav-open::before {
    content: ''; position: fixed; inset: 0;
    background: rgba(15,23,42,0.45);
    z-index: 49;
    backdrop-filter: blur(2px);
  }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip .inner { justify-content: center; text-align: center; }
}
@media (max-width: 720px) {
  section { padding: 56px 0; }
  .features { gap: 28px; }
  .feature .icon { width: 48px; height: 48px; }
  .feature .icon svg { width: 24px; height: 24px; }
  .location-card .img { aspect-ratio: 16/7; }
  .loc-meta .item h4 { font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid h4 { margin-bottom: 8px; }
  .address-pill { padding: 12px 18px; }
}
