/* California Roof Pro — Shared Stylesheet
   Brand: navy #0a1f44, red #d42b2b, gold #f5a623, light #f4f6fa
   Fonts: Montserrat (headings), Inter (body) via Google Fonts
*/

:root {
  --navy: #0a1f44;
  --navy-2: #122a5c;
  --navy-3: #1a3a78;
  --red: #d42b2b;
  --red-hover: #b81f1f;
  --gold: #f5a623;
  --white: #ffffff;
  --light: #f4f6fa;
  --light-2: #e7ecf3;
  --text: #1a1a2e;
  --text-muted: #4a5168;
  --border: #d8dee9;
  --shadow-sm: 0 1px 2px rgba(10,31,68,.06), 0 1px 3px rgba(10,31,68,.08);
  --shadow-md: 0 4px 12px rgba(10,31,68,.08), 0 8px 24px rgba(10,31,68,.06);
  --shadow-lg: 0 12px 32px rgba(10,31,68,.12), 0 24px 48px rgba(10,31,68,.10);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

img, svg { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); color: #e9eef7; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

/* ---------- Alert bar ---------- */
.alert-bar {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 60;
  text-align: center;
}
.alert-bar a { color: #fff; text-decoration: underline; font-weight: 800; }
.alert-bar .live-dot {
  display: inline-block; width: 10px; height: 10px; background: #43e97b; border-radius: 50%;
  margin-right: 8px; vertical-align: middle; animation: livepulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(67, 233, 123, .8);
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(67,233,123,.8); }
  70% { box-shadow: 0 0 0 12px rgba(67,233,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,233,123,0); }
}

/* ---------- Sticky nav ---------- */
.nav-wrap {
  position: sticky;
  top: 36px;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
}
.brand:hover { text-decoration: none; color: var(--navy); }
.brand-mark { width: 44px; height: 44px; display:block; }
.brand-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  line-height: 1; letter-spacing: -.01em;
}
.brand-text small { display:block; font-weight: 500; font-size:.7rem; color: var(--red); margin-top: 4px; letter-spacing:.05em; text-transform:uppercase; }
.nav-items { display: flex; align-items: center; gap: 6px; margin-left: 12px; list-style: none; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--text); font-weight: 600; font-size: .95rem;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.nav-link:hover { background: var(--light); color: var(--navy); text-decoration: none; }
.nav-link.active { color: var(--red); }
.nav-link .chev { width: 12px; height: 12px; transition: transform .18s ease; }
.has-mega.open > .nav-link .chev,
.has-mega:focus-within > .nav-link .chev { transform: rotate(180deg); }

.nav-cta {
  margin-left: auto;
  display: flex; align-items: center; gap: 12px;
}
.btn-call {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 11px 18px;
  border-radius: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 6px 18px rgba(212,43,43,.35);
  animation: pulseRed 2s ease-in-out infinite;
  font-size: .95rem;
  line-height: 1.15;
  letter-spacing: .01em;
  min-height: 52px;
  max-width: 260px;
  white-space: normal;
  text-align: left;
}
.btn-call:hover { background: var(--red-hover); color: #fff; text-decoration: none; transform: translateY(-1px); }
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 6px 18px rgba(212,43,43,.35), 0 0 0 0 rgba(212,43,43,.5); }
  50%      { box-shadow: 0 6px 18px rgba(212,43,43,.35), 0 0 0 14px rgba(212,43,43,0); }
}
.btn-call .phone-ico { width: 18px; height: 18px; }

/* Hamburger */
.hamburger {
  display: none;
  background: transparent; border: none; cursor: pointer; padding: 8px;
  color: var(--navy);
}
.hamburger svg { width: 28px; height: 28px; }

/* ---------- Mega menu ---------- */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  width: min(1200px, 96vw);
  background: var(--navy);
  color: #e9eef7;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s cubic-bezier(.2,.7,.2,1), transform .2s cubic-bezier(.2,.7,.2,1), visibility .2s;
  z-index: 70;
  overflow: hidden;
}
.nav-item.open .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 6px);
}
.mega-inner { padding: 28px 28px 22px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.mega-col h4 {
  color: #fff;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.mega-col ul { list-style: none; padding: 0; margin: 0 0 12px; }
.mega-col li { margin: 6px 0; }
.mega-col li a {
  color: #c8d0e0;
  font-size: .87rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
  transition: color .15s ease, transform .15s ease;
}
.mega-col li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
  flex: 0 0 7px;
  margin-right: 1px;
}
.mega-col li a:hover { color: var(--red); transform: translateX(3px); text-decoration: none; }
.mega-col a { text-decoration: none; }
.mega-col .cta-small {
  display: inline-block;
  font-weight: 700;
  color: var(--gold);
  font-size: .82rem;
  margin-top: 4px;
}
.mega-cta-strip {
  background: var(--red);
  color: #fff;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700;
}
.mega-cta-strip a { color: #fff; font-weight: 800; text-decoration: underline; }

.mega-areas .city-filter {
  margin-bottom: 18px;
}
.mega-areas .city-filter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
}
.mega-areas .city-filter input::placeholder { color: #9ba6bd; }

.mega-areas .region-cta {
  display: inline-block;
  background: rgba(245,166,35,.18);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid rgba(245,166,35,.3);
}

/* ---------- Mobile nav ---------- */
.mobile-overlay {
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212,43,43,.18), transparent 34%),
    linear-gradient(160deg, #061634 0%, var(--navy) 58%, #071329 100%);
  color: #e9eef7;
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: calc(18px + env(safe-area-inset-top)) 22px calc(104px + env(safe-area-inset-bottom));
}
.mobile-overlay.open { display: flex; }
.mobile-overlay .close {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  padding: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mobile-overlay .close:hover { background: rgba(255,255,255,.14); }
.mobile-overlay .close svg { width: 22px; height: 22px; flex: 0 0 22px; }
.mobile-nav-link, .mobile-acc-trigger {
  padding: 17px 8px;
  color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.08rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: transparent; border-left: 0; border-right: 0; border-top: 0;
  width: 100%; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  min-height: 56px;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible,
.mobile-acc-trigger:hover,
.mobile-acc-trigger:focus-visible {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.06);
}
.mobile-acc-trigger .chev {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke-width: 3;
  transition: transform .18s ease;
}
.mobile-acc-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}
.mobile-acc-body { display: none; padding: 8px 8px 18px; }
.mobile-acc-body.open { display: block; }
.mobile-acc-label {
  display: block;
  color: var(--gold); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .08em; margin: 16px 0 7px;
}
.mobile-acc-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: #e4ebf8;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.28;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-acc-body a::after {
  content: "›";
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}
.mobile-acc-body a:hover { color: #fff; text-decoration: none; }
.mobile-overlay .btn-call-giant {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding: 18px 20px;
  font-size: 1.18rem;
  text-align: center;
}
.mobile-overlay .btn-call-giant .phone-ico {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--red);
  color: #fff;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-head); font-weight: 800;
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.1;
  box-shadow: 0 -6px 18px rgba(0,0,0,.18);
}
.mobile-call-bar:hover { color: #fff; text-decoration: none; }
.mobile-call-bar svg { width: 22px; height: 22px; flex: 0 0 22px; }
.mobile-call-bar span {
  flex: 1;
  letter-spacing: .04em;
}
.mobile-call-bar strong {
  font-size: 1rem;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-items { display: none; }
  .nav-cta .btn-call { display: none; }
  .nav { height: 72px; gap: 10px; }
  .nav-cta { margin-left: auto; gap: 8px; }
  .hamburger {
    display: inline-flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 70px; }
  .alert-bar { font-size: .82rem; line-height: 1.35; padding: 7px 12px; }
  .brand { min-width: 0; gap: 9px; }
  .brand-mark { width: 38px; height: 38px; flex: 0 0 38px; }
  .brand-text { font-size: .98rem; }
  .brand-text small { font-size: .62rem; line-height: 1.05; max-width: 190px; }
}

@media (max-width: 430px) {
  .mobile-overlay { padding-left: 18px; padding-right: 18px; }
  .mobile-call-bar { font-size: .78rem; }
  .mobile-call-bar strong { font-size: .9rem; }
  .brand-text { font-size: .9rem; }
  .brand-text small { max-width: 170px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  background: linear-gradient(135deg, #050d20 0%, #0a1f44 45%, #122a5c 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to bottom right, rgba(212,43,43,.08), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 110px;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 18px; }
.hero .lead { font-size: 1.15rem; color: #cad3e6; max-width: 560px; margin-bottom: 28px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 12px; border-radius: 999px;
  font-size: .82rem; color: #e2e8f4; font-weight: 600;
}
.badge .star { color: var(--gold); }
.hero-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.btn-call-giant {
  background: var(--red); color: #fff;
  padding: 22px 32px; border-radius: 14px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.45rem;
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  animation: pulseRed 2s ease-in-out infinite;
  box-shadow: 0 14px 36px rgba(212,43,43,.45);
}
.btn-call-giant .phone-ico {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.btn-call-giant small { display:block; font-size:.7rem; font-weight: 600; letter-spacing:.1em; text-transform:uppercase; opacity:.85; }
.btn-call-giant:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: #fff;
  border: 2px solid #fff;
  padding: 16px 24px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: background .18s ease;
}

@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .hero { min-height: auto; overflow-x: hidden; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 64px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: -.025em;
    margin-bottom: 14px;
  }
  .hero .lead {
    font-size: .98rem;
    line-height: 1.58;
    margin-bottom: 20px;
  }
  .hero-badges {
    gap: 8px;
    margin-bottom: 18px;
  }
  .badge {
    font-size: .76rem;
    padding: 6px 10px;
    max-width: 100%;
    line-height: 1.25;
  }
  .hero-cta { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .btn-call-giant,
  .page-hero .btn-call-giant {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 18px;
    font-size: 1.08rem;
  }
  .btn-call-giant .phone-ico,
  .page-hero .btn-call-giant .phone-ico {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 15px 18px;
  }
  .hero-visual-photo > img { height: 210px; }
  .mobile-call-bar {
    justify-content: space-between;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    line-height: 1.25;
  }
}
.btn-secondary:hover { background: rgba(255,255,255,.12); color: #fff; text-decoration: none; }
.hero-stars { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: #cad3e6; font-size: .9rem; }
.hero-stars .stars { color: var(--gold); letter-spacing: 2px; }

.hero-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(8px);
}
.hero-visual-photo {
  padding: 0;
  overflow: hidden;
  background: #08162f;
}
.hero-visual-photo > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.hero-visual-photo h3,
.hero-visual-photo ul {
  padding-left: 28px;
  padding-right: 28px;
}
.hero-visual-photo h3 { padding-top: 24px; }
.hero-visual-photo ul { padding-bottom: 24px !important; }
.hero-visual h3 { color: #fff; margin-bottom: 16px; }
.hero-visual ul { list-style: none; padding: 0; margin: 0; }
.hero-visual li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  color: #d6deef; font-size: .95rem;
}
.hero-visual li:last-child { border-bottom: none; }
.hero-visual .check {
  width: 22px; height: 22px; flex: 0 0 22px;
  background: rgba(67,233,123,.18); color: #43e97b;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0 84px; }
  .hero { min-height: auto; }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--red);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerMove 38s linear infinite;
  padding: 14px 0;
  font-weight: 700;
  font-size: .98rem;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker-track .dot {
  color: var(--gold);
  font-size: 0;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-right: 2px;
  vertical-align: middle;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Cards / grids ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; margin-bottom: 10px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-6, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #8c1d1d);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800;
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card ul.svc-list { list-style: none; padding: 0; margin: 12px 0 16px; }
.card ul.svc-list li {
  padding: 5px 0;
  font-size: .92rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}
.card ul.svc-list li::before {
  content: "▸";
  position: absolute; left: 0; color: var(--red); font-weight: 700;
}
.card .card-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.link-arrow { color: var(--red); font-weight: 700; font-size: .92rem; }
.link-arrow:hover { color: var(--red-hover); }
.btn-mini-call {
  background: var(--red); color: #fff; padding: 8px 14px; border-radius: 8px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-mini-call:hover { background: var(--red-hover); color: #fff; text-decoration: none; }

/* ---------- Stats block ---------- */
.stats { padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
}
.stat .label { color: #cad3e6; font-weight: 600; margin-top: 6px; letter-spacing: .04em; }
.stat-bullets {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  margin: 36px 0 26px; color: #cad3e6; font-weight: 600;
}
.stat-bullets span { display: inline-flex; align-items: center; gap: 8px; }
.stat-bullets .gold { color: var(--gold); font-weight: 800; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.why-visual {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(10,31,68,.65), rgba(212,43,43,.55)),
    repeating-linear-gradient(45deg, #122a5c 0 22px, #0a1f44 22px 44px);
  position: relative;
  display: flex; align-items: flex-end; padding: 28px; color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.why-visual-photo {
  background: #0a1f44;
  padding: 0;
  align-items: stretch;
  position: relative;
}
.why-visual-photo > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.why-visual-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,.04), rgba(10,31,68,.72));
  z-index: 1;
}
.why-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 80px);
}
.why-visual .lic-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--navy);
  border-radius: 12px; padding: 16px 18px; max-width: 280px;
  box-shadow: var(--shadow-md);
}
.why-visual-photo .lic-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: none;
}
.why-visual .lic-card strong { display: block; color: var(--red); font-size: .8rem; letter-spacing: .08em; }
.why-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.why-list li {
  position: relative; padding-left: 30px; font-weight: 600; color: var(--text);
}
.why-list li::before {
  content: "✓"; position: absolute; left: 0; top: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 10px; }
.review-card .quote { font-size: .98rem; color: var(--text); margin-bottom: 18px; }
.review-card .reviewer {
  display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border);
}
.review-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--red));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-head);
}
.review-card .reviewer .meta strong { display: block; color: var(--navy); font-weight: 700; }
.review-card .reviewer .meta small { color: var(--text-muted); font-size: .82rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.step {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 30px 26px;
  position: relative; text-align: center;
}
.step .num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  box-shadow: 0 6px 14px rgba(212,43,43,.4);
}
.step h3 { margin-top: 18px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Insurance ---------- */
.ins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ins-step {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
}
.ins-step .step-n { color: var(--gold); font-weight: 800; font-family: var(--font-head); font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.ins-step h4 { color: #fff; margin-bottom: 6px; }
.ins-step p { color: #cad3e6; font-size: .92rem; margin: 0; }
.ins-carriers { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; margin: 30px 0; color: #e6ecf7; font-weight: 600; font-size: .92rem; }
.ins-carriers span {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  padding: 7px 14px; border-radius: 999px;
}
@media (max-width: 880px) { .ins-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .ins-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq-item.open { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
}
.faq-q .ico {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--light); color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; flex: 0 0 30px;
  transition: transform .2s ease;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
  color: var(--text-muted);
}
.faq-item.open .faq-a {
  max-height: 700px;
  padding: 4px 22px 20px;
}
.faq-a p { margin: 0 0 .6em; }
.faq-a .cta-inline { color: var(--red); font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, #8c1d1d 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #ffe4e4; max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; }
.callback-form {
  max-width: 560px; margin: 26px auto 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  text-align: left;
}
.callback-form label { display: block; font-size: .82rem; color: #ffd9d9; font-weight: 600; margin-bottom: 4px; }
.callback-form input, .callback-form select, .callback-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.95);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
}
.callback-form .full { grid-column: 1 / -1; }
.callback-form button {
  width: 100%; background: var(--navy); color: #fff;
  padding: 14px; border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
}
.callback-form button:hover { background: var(--navy-2); }
.callback-form .err { color: #ffd0d0; font-size: .82rem; margin-top: 4px; display: none; }
.callback-form .err.show { display: block; }
.callback-form .ok { color: #d4ffd4; text-align: center; padding: 14px; font-weight: 700; }

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(212,43,43,.22), transparent 30%),
    linear-gradient(180deg, #071634 0%, #06122c 58%, #030a1a 100%);
  color: #c8d0e0;
  padding: 72px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 38px;
}
.footer-top p,
.footer p {
  color: #c8d0e0;
  font-size: .94rem;
  margin: 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 26px; }
.mega-footer-grid {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h5 { color: #fff; font-family: var(--font-head); font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 7px 0; }
.footer a { color: #dce5f5; font-size: .92rem; font-weight: 600; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .brand-foot { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #fff; }
.footer .brand-foot .brand-mark { width: 40px; height: 40px; }
.footer .brand-foot .brand-text { color: #fff; }
.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  background: var(--red);
  color: #fff !important;
  border-radius: 14px;
  padding: 15px 18px;
  box-shadow: 0 10px 28px rgba(212,43,43,.34);
  text-decoration: none;
}
.footer-call svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.footer-call span {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .06em;
}
.footer-call strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.1;
}
.footer-service-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.footer-service-box strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 8px;
}
.footer-service-box span {
  display: block;
  color: #c8d0e0;
  font-size: .95rem;
  margin-bottom: 16px;
}
.footer-service-box a {
  display: inline-flex;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
}
.footer-legal-panel {
  margin-top: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  padding: 24px;
}
.footer-legal-panel h5 {
  margin-bottom: 12px;
}
.footer-legal-panel p {
  font-size: .82rem;
  line-height: 1.65;
  color: #aeb9cf;
  margin: 0 0 12px;
}
.footer-legal-panel p:last-child { margin-bottom: 0; }
.footer-legal-panel strong { color: #fff; }
.footer-bottom {
  margin-top: 24px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .85rem; color: #8c98b3;
}
.footer-disclaimer { max-width: 760px; font-size: .82rem; color: #8c98b3; margin: 14px 0 0; }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 54px; }
  .footer-legal-panel,
  .footer-service-box { padding: 20px; }
  .footer-call { width: 100%; justify-content: center; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 14px 0; background: var(--light); border-bottom: 1px solid var(--border); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .88rem; }
.crumbs li { color: var(--text-muted); }
.crumbs li + li::before { content: "›"; margin-right: 6px; color: var(--text-muted); }
.crumbs a { color: var(--navy); font-weight: 600; }
.crumbs a:hover { color: var(--red); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #050d20 100%);
  color: #fff;
  padding: 56px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 22px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p.lead { color: #cad3e6; font-size: 1.1rem; max-width: 720px; margin-bottom: 22px; }
.page-hero .hero-cta { gap: 14px; }
.page-hero .btn-call-giant { font-size: 1.2rem; padding: 18px 26px; }

/* ---------- Real page imagery ---------- */
.page-photo {
  padding: 34px 0 0;
  background: var(--white);
}
.page-photo + .section { padding-top: 48px; }
.photo-frame {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--light);
}
.photo-frame img {
  width: 100%;
  height: clamp(240px, 38vw, 460px);
  object-fit: cover;
}
/* ---------- Service / city page sections ---------- */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm);
  position: sticky; top: 130px;
}
.sidebar-card h3 { color: var(--navy); margin-bottom: 12px; }
.sidebar-card .btn-call-giant { font-size: 1.1rem; padding: 16px 20px; width: 100%; justify-content: center; }

.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.benefit-list li { position: relative; padding-left: 30px; font-weight: 500; }
.benefit-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem;
}
@media (max-width: 600px) { .benefit-list { grid-template-columns: 1fr; } }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  background: var(--light);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 22px;
}
.process-step .n { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 1.4rem; }
.process-step h4 { color: var(--navy); margin: 8px 0; }
.process-step p { font-size: .92rem; color: var(--text-muted); margin: 0; }
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

.price-box {
  background: linear-gradient(135deg, var(--navy), #122a5c);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
}
.price-box h4 { color: var(--gold); margin-bottom: 8px; }
.price-box .range { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff; margin-bottom: 6px; }
.price-box p { color: #cad3e6; margin: 0; font-size: .92rem; }

/* ---------- Related cards (small) ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; text-decoration: none; color: var(--navy);
  transition: border-color .18s ease, transform .18s ease;
  display: block;
}
.related-card:hover { border-color: var(--red); transform: translateY(-2px); text-decoration: none; color: var(--navy); }
.related-card h4 { color: var(--navy); margin-bottom: 4px; }
.related-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- City links list ---------- */
.city-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 20px; list-style: none; padding: 0; margin: 0; }
.city-list a { display: block; padding: 6px 0; color: var(--navy); font-weight: 500; font-size: .92rem; }
.city-list a:hover { color: var(--red); }
@media (max-width: 800px) { .city-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .city-list { grid-template-columns: 1fr; } }

/* ---------- Region cards ---------- */
.region-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.region-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.region-card h3 { color: var(--navy); display: flex; align-items: center; gap: 10px; }
.region-card .badge-r { display: inline-block; background: var(--red); color: #fff; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.region-card ul { list-style: none; padding: 0; margin: 14px 0; }
.region-card li { padding: 4px 0; }
.region-card li a { color: var(--text); font-weight: 500; font-size: .94rem; }
.region-card li a:hover { color: var(--red); }
.region-card .region-cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 700; margin-top: 10px;
}

/* ---------- Back-to-top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 86px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--navy-2); transform: translateY(-2px); }
@media (min-width: 981px) { .to-top { bottom: 22px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Misc ---------- */
.center { text-align: center; }
.muted { color: var(--text-muted); }
.spacer-sm { height: 24px; }
.spacer { height: 48px; }
.divider { height: 1px; background: var(--border); margin: 28px 0; }

.phone-cta-block {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.phone-cta-block h3 { color: #fff; margin: 0; font-size: 1.4rem; }
.phone-cta-block p { color: #cad3e6; margin: 4px 0 0; }
.phone-cta-block small { color: #dbe5f5; display: inline-block; margin-top: 8px; }

/* ---------- Blog ---------- */
.blog-hero {
  background:
    linear-gradient(110deg, rgba(10,31,68,.96), rgba(10,31,68,.78)),
    radial-gradient(circle at 80% 20%, rgba(245,166,35,.18), transparent 34%);
  color: #fff;
  padding: clamp(76px, 9vw, 132px) 0 clamp(42px, 6vw, 78px);
}
.blog-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.045em; max-width: 900px; }
.blog-hero .lead { color: #e5edf8; max-width: 780px; }
.blog-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .82fr); gap: clamp(26px, 4vw, 58px); align-items: center; }
.blog-hero-image { margin: 0; }
.blog-hero-image img,
.blog-card img {
  width: 100%; height: auto; display: block; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); background: #fff;
}
.blog-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.blog-meta span,
.blog-card-kicker {
  display: inline-flex; align-items: center; border-radius: 999px;
  font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.blog-meta span { background: rgba(255,255,255,.12); color: #fff; padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); }
.blog-content { max-width: 1010px; }
.blog-section {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px); margin: 26px 0; box-shadow: var(--shadow-sm);
}
.blog-section h2 { color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.35rem); margin-bottom: 14px; }
.blog-section h3 { color: var(--navy); font-size: 1.15rem; margin: 0 0 10px; }
.blog-section p { color: var(--text); font-size: 1.04rem; line-height: 1.82; }
.blog-callout {
  margin-top: 22px; padding: 18px 20px; border-radius: var(--radius-md);
  background: #fff7e7; color: var(--navy); border: 1px solid rgba(245,166,35,.35);
}
.blog-table-wrap { overflow-x: auto; margin: 22px 0; }
.blog-table { width: 100%; border-collapse: collapse; min-width: 680px; background: #fff; }
.blog-table th { background: var(--navy); color: #fff; text-align: left; }
.blog-table th,
.blog-table td { padding: 14px 16px; border: 1px solid var(--border); vertical-align: top; }
.blog-table td:nth-child(2) { font-weight: 800; color: var(--red); white-space: nowrap; }
.blog-steps { display: grid; gap: 10px; padding-left: 1.25rem; }
.blog-steps li { padding: 10px 0; color: var(--text); line-height: 1.55; }
.blog-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.blog-link-grid > div {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; background: var(--light);
}
.blog-link-grid ul { margin: 0; padding-left: 1.1rem; }
.blog-link-grid li { margin: 8px 0; }
.blog-faq { max-width: 980px; }
.blog-category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.blog-category-pills a {
  padding: 10px 14px; border-radius: 999px; background: var(--navy); color: #fff;
  font-weight: 800; text-decoration: none; font-size: .86rem;
}
.blog-category-pills a:hover { background: var(--red); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card img { border-radius: 0; box-shadow: none; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-kicker { color: var(--red); margin-bottom: 10px; }
.blog-card h2 { font-size: 1.15rem; line-height: 1.22; margin-bottom: 10px; }
.blog-card h2 a { color: var(--navy); text-decoration: none; }
.blog-card h2 a:hover { color: var(--red); }
.blog-card p { color: var(--text-muted); font-size: .94rem; line-height: 1.55; }
@media (max-width: 1050px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-hero-grid { grid-template-columns: 1fr; }
  .blog-hero-image { max-width: 760px; }
}
@media (max-width: 680px) {
  .blog-grid,
  .blog-link-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 22px; }
  .blog-meta span { width: 100%; justify-content: center; }
}

/* Blog pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.pagination .pg-link,
.pagination .pg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.pagination a.pg-link:hover,
.pagination a.pg-num:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.pagination a.pg-link:focus-visible,
.pagination a.pg-num:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.pagination .pg-num.is-current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  cursor: default;
}
.pagination .is-disabled {
  opacity: .45;
  cursor: not-allowed;
  background: var(--light);
  color: var(--text-muted);
}
.pagination .pg-prev,
.pagination .pg-next {
  gap: 6px;
  padding: 0 18px;
}
@media (max-width: 520px) {
  .pagination { gap: 6px; }
  .pagination .pg-link,
  .pagination .pg-num {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: .88rem;
  }
  .pagination .pg-prev,
  .pagination .pg-next { padding: 0 12px; }
}

/* selection */
::selection { background: var(--gold); color: var(--navy); }

/* visually-hidden */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
