/* ============================================================
   DriveShield USA — Main Stylesheet
   Professional CPA Marketing Website
============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy-900: #0D1B3E;
  --navy-800: #132244;
  --navy-700: #1B3A6B;
  --navy-500: #2756A8;
  --gold-500: #D4A843;
  --gold-400: #E8C06A;
  --gold-300: #F2D898;
  --teal-500: #16A394;
  --teal-400: #1EBFAE;
  --cream-100: #FAF7F2;
  --cream-200: #F2EDE4;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E8EBF0;
  --gray-400: #9BA3B0;
  --gray-600: #5C6470;
  --gray-800: #2D3340;
  --text-primary: #1A1F2E;
  --text-secondary: #4A5568;
  --text-muted: #718096;

  --container-max: 1280px;
  --section-pad: 100px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(13,27,62,0.08);
  --shadow-md: 0 6px 24px rgba(13,27,62,0.12);
  --shadow-lg: 0 16px 48px rgba(13,27,62,0.18);
  --transition: 0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream-100);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
::selection { background: var(--gold-300); color: var(--navy-900); }

/* ── Typography ── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-secondary); }
em { font-style: italic; color: var(--gold-500); }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Sections ── */
.content-section { padding: var(--section-pad) 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy-900); color: rgba(255,255,255,0.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white) !important; }
.section-dark p, .section-dark .section-subtext { color: rgba(255,255,255,0.85) !important; }
.section-dark .highlight-box h3, .section-dark .highlight-box h4 { color: var(--gold-400) !important; }
.section-dark .highlight-box p { color: rgba(255,255,255,0.85) !important; }
.section-cream { background: var(--cream-200); }

/* ── Section Headers ── */
.section-header { margin-bottom: 4rem; }
.section-header.text-center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold-500);
}
.section-eyebrow.light { color: var(--gold-300); }
.section-eyebrow.light::before { background: var(--gold-300); }
.section-header.text-center .section-eyebrow { padding-left: 0; }
.section-header.text-center .section-eyebrow::before { display: none; }
.section-subtext { max-width: 580px; margin-top: 1rem; font-size: 1.05rem; }
.section-header.text-center .section-subtext { margin: 1rem auto 0; }

/* Featured / professional section header */
.section-header--featured {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.25rem;
  text-align: center;
}
.section-header--featured .section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.section-header--featured .section-eyebrow::before {
  position: static;
  transform: none;
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
  flex-shrink: 0;
}
.section-header--featured .section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  flex-shrink: 0;
}
.section-header--featured h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0;
}
.section-header--featured h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin: 1.1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.section-header--featured .section-subtext {
  margin-top: 1.35rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); box-shadow: 0 6px 20px rgba(212,168,67,0.35); }

.btn-primary { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); box-shadow: var(--shadow-md); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy { background: transparent; color: var(--navy-900); border-color: var(--navy-900); }
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }

.btn-phone::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M22 16.92V19.92C22 20.48 21.61 20.97 21.06 21.08C9.27 22.78 2.22 15.73 3.92 3.94C4.03 3.39 4.52 3 5.08 3H8.08C8.68 3 9.18 3.43 9.25 4.02C9.4 5.08 9.72 6.12 10.22 7.11C10.43 7.52 10.3 8.01 9.95 8.29L8.42 9.49C9.68 11.94 12.06 14.32 14.51 15.58L15.71 14.05C15.99 13.7 16.48 13.57 16.89 13.78C17.88 14.28 18.92 14.6 19.98 14.75C20.57 14.82 21 15.32 21 15.92H22V16.92Z' stroke='%230D1B3E' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-outline-white.btn-phone::before,
.btn-outline-navy.btn-phone::before { filter: invert(1); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,62,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .logo { color: var(--navy-900); }
.logo-icon { flex-shrink: 0; }
.logo-text strong { color: var(--gold-500); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-item { position: relative; }

/* DROPDOWN FIX: invisible bridge using padding */
.nav-item.has-dropdown { padding-bottom: 24px; }
.nav-item.has-dropdown .dropdown-menu { margin-top: -24px; padding-top: 24px; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text-primary); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold-400); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--gold-500); }

/* Dropdown chevron */
.nav-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Mega Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  z-index: 1000;
}
.nav-item.has-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}
.dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  color: var(--text-primary);
}
.dropdown-card:hover { background: var(--navy-900); color: var(--white); }
.dropdown-card:hover .dropdown-card-title { color: var(--white); }
.dropdown-card:hover .dropdown-card-desc { color: rgba(255,255,255,0.7); }
.dropdown-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: background var(--transition), color var(--transition);
}
.dropdown-card:hover .dropdown-icon { background: rgba(255,255,255,0.15); color: var(--gold-400); }
.dropdown-card-title { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); display: block; margin-bottom: 0.2rem; }
.dropdown-card-desc { font-size: 0.8rem; color: var(--text-muted); display: block; line-height: 1.4; }

/* Nav CTA */
.nav-cta-group { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-cta { padding: 0.55rem 1.2rem; font-size: 0.875rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  gap: 5px;
  padding: 0;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar.scrolled .hamburger-line { background: var(--navy-900); }

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,0.6);
  z-index: 997;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 998;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 0.5rem;
  border-radius: 6px;
}
.mobile-menu-close:hover { background: var(--gray-100); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
}
.mobile-services-toggle { width: 100%; background: none; border: none; text-align: left; }
.mobile-services-dropdown { display: none; padding: 0.5rem 0 0.5rem 1rem; }
.mobile-services-dropdown.open { display: block; }
.mobile-sub-link {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-sub-link:hover { color: var(--navy-700); }
.mobile-menu-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu-cta .btn { justify-content: center; }

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,62,0.88) 0%, rgba(13,27,62,0.6) 50%, rgba(13,27,62,0.3) 100%);
}
.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  width: 100%;
}
.hero-content {
  max-width: 620px;
  padding: 5rem 0 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.hero-title em { color: var(--gold-400); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--gold-500); width: 24px; border-radius: 4px; }

/* Hero Badge */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.hero-badge strong { display: block; font-size: 0.9rem; font-weight: 700; }
.hero-badge span { display: block; font-size: 0.75rem; opacity: 0.8; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-900);
  padding: 3.5rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.stat-item { text-align: center; flex: 1; }
.stat-item strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold-500);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Services Section ── */
.services-section {
  padding: 4.5rem 0;
}
.services-header {
  max-width: 680px;
  margin-bottom: 2rem;
}
.services-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.services-header-line {
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 1px;
  flex-shrink: 0;
}
.services-header-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.services-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 0.65rem;
}
.services-header h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--navy-700);
}
.services-header-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  max-width: 580px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--teal-500); transform: translateY(-4px); }
.service-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--gray-200);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--cream-200), var(--gray-100));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  margin-bottom: 1.25rem;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, rgba(22,163,148,0.15), rgba(22,163,148,0.08)); color: var(--teal-500); }
.service-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.25rem; }
.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
  transition: color var(--transition), gap var(--transition);
}
.service-link:hover { color: var(--teal-500); gap: 0.7rem; }

/* ── Process Section (Homepage) ── */
.process-section {
  padding: 4.5rem 0;
}
.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.process-header-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.process-header-line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
  border-radius: 1px;
}
.process-header-line:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.process-header-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  white-space: nowrap;
}
.process-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
}
.process-header h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--navy-700);
}
.process-header-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  padding: 0 0.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 1.85rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500), var(--navy-700));
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.process-item {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.process-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.4);
}

.process-item-num-wrap {
  display: flex;
  justify-content: center;
  padding: 1.15rem 1.25rem 0;
}
.process-item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500), 0 4px 16px rgba(13, 27, 62, 0.15);
  flex-shrink: 0;
}

.process-item-content {
  padding: 0.85rem 1.35rem 1.35rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-item-step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.35rem;
}
.process-item-content h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.process-item-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Features Section ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.features-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.features-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.features-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}
.features-image-badge strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.features-image-badge span { font-size: 0.78rem; color: var(--text-muted); }
.features-intro { font-size: 1.05rem; margin-bottom: 2rem; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.features-list li { display: flex; align-items: flex-start; gap: 1rem; }
.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.feature-check::after { content: '✓'; color: var(--navy-900); font-size: 0.75rem; font-weight: 700; }
.features-list li div strong { display: block; font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.2rem; }
.features-list li div p { font-size: 0.9rem; margin: 0; }
.features-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Testimonials ── */
.testimonials-section {
  padding: 3.25rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-100) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.testimonials-head-copy {
  max-width: 520px;
}
.testimonials-head-copy .section-eyebrow {
  margin-bottom: 0.65rem;
}
.testimonials-head-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}
.testimonials-head-copy h2 em {
  color: var(--gold-500);
  font-style: italic;
}
.testimonials-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.testimonials-score {
  text-align: center;
  padding: 1rem 1.35rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 14px;
  min-width: 148px;
  box-shadow: var(--shadow-md);
}
.testimonials-score-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-400);
}
.testimonials-score-stars {
  color: var(--gold-400);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin: 0.35rem 0;
}
.testimonials-score p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: 0.03em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,168,67,0.35);
}
.review-card--featured {
  border-color: var(--gold-500);
  box-shadow: 0 10px 28px rgba(13,27,62,0.1);
  background: linear-gradient(180deg, #fffdf8 0%, var(--white) 100%);
}
.review-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(212,168,67,0.14);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-card--featured .review-card-badge {
  background: var(--gold-500);
  color: var(--navy-900);
}
.review-card-stars {
  color: var(--gold-500);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}
.review-card-text {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--text-primary);
  font-weight: 500;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.review-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}
.review-card-author span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ── States Section ── */
.states-section {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #0a1628 0%, var(--navy-900) 45%, #132a52 100%);
  position: relative;
  overflow: hidden;
}
.states-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(212,168,67,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(22,163,148,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.states-section .container {
  position: relative;
  z-index: 1;
}
.states-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.states-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
}
.states-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 1px;
}
.states-title {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.states-title em {
  color: var(--gold-400);
  font-style: italic;
}
.states-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.states-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}
.states-stat {
  flex: 1;
  min-width: 100px;
  padding: 0.65rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.states-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.1;
  font-family: 'DM Serif Display', Georgia, serif;
}
.states-stat span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.states-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}
.states-list span {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.states-list span:hover {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.35);
  color: var(--gold-300);
}
.states-list-more {
  background: rgba(212,168,67,0.18) !important;
  color: var(--gold-300) !important;
  border-color: rgba(212,168,67,0.35) !important;
  font-weight: 600 !important;
}
.states-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.states-visual {
  display: flex;
  justify-content: center;
}
.states-map-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.states-map-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.states-map-wrap {
  position: relative;
  z-index: 1;
}
.usa-map-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}
.states-map-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
  animation: mapPinPulse 2.5s ease-in-out infinite;
}
.map-pin--gold {
  background: var(--gold-500);
}
.map-pin--teal {
  background: var(--teal-400);
  animation-delay: 0.6s;
}
.map-pin:nth-child(2) { animation-delay: 0.3s; }
.map-pin:nth-child(4) { animation-delay: 0.9s; }
.map-pin:nth-child(6) { animation-delay: 1.2s; }
@keyframes mapPinPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.usa-map-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.states-map-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0.75rem 0 0;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ── Blog Preview Section ── */
.blog-preview-section {
  padding: 4.5rem 0;
}
.blog-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.blog-header-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-header-line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
  border-radius: 1px;
}
.blog-header-line:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.blog-header-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  white-space: nowrap;
}
.blog-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
}
.blog-header h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold-500);
}
.blog-header-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  padding: 0 0.5rem;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-image-wrap { position: relative; overflow: hidden; height: 220px; display: block; }
.blog-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image { transform: scale(1.06); }
.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-200), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy-900);
  color: var(--gold-400);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-title { font-size: 1.1rem; margin: 0.5rem 0 0.75rem; line-height: 1.4; }
.blog-card-title a { color: var(--text-primary); transition: color var(--transition); }
.blog-card-title a:hover { color: var(--navy-700); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-author { font-size: 0.8rem; color: var(--text-muted); }
.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition), gap var(--transition);
}
.blog-card-link:hover { color: var(--teal-500); gap: 0.5rem; }
.section-cta-row { text-align: center; margin-top: 2rem; }
.blog-preview-section .section-cta-row { margin-top: 2.25rem; }

/* Blog Filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.blog-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.blog-filter-btn:hover { border-color: var(--navy-700); color: var(--navy-700); }
.blog-filter-btn.active { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

/* Blog Pagination */
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.pagination-btn { @extend .btn; }
.pagination-info { font-size: 0.9rem; color: var(--text-muted); }

/* Blog Post Layout — legacy aliases */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: flex-start;
}

/* ═══════════════════════════════════════════
   BLOG POST DETAIL PAGE
═══════════════════════════════════════════ */

.post-header {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(13, 27, 62, 0.06);
}
.post-header__inner {
  max-width: 820px;
}

.post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  font-size: 0.82rem;
}
.post-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.post-breadcrumb a:hover { color: var(--navy-700); }
.post-breadcrumb span { color: var(--gray-400); }
.post-breadcrumb [aria-current="page"] { color: var(--gold-500); font-weight: 600; }

.post-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.post-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: rgba(212, 168, 67, 0.18);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.post-meta-dot { opacity: 0.5; }

.post-header__title {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.18;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
}
.post-header__excerpt {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-500);
}

.post-header__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.15rem;
}
.post-author-strip__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500);
}
.post-author-strip__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.post-author-strip__name {
  font-size: 0.95rem;
  color: var(--navy-900);
}

/* Article body */
.post-body { padding: 2rem 0 3.5rem; }
.post-article { min-width: 0; }

.post-article__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.post-article__hero {
  margin: 0;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.post-article__hero-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.post-article__inner {
  padding: 2rem 2.25rem 2.25rem;
}

.post-prose {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.post-prose > *:first-child { margin-top: 0; }
.post-prose > *:last-child { margin-bottom: 0; }
.post-prose h2 {
  font-size: 1.55rem;
  color: var(--navy-900);
  margin: 2.25rem 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--cream-200);
}
.post-prose h3 {
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 1.75rem 0 0.65rem;
}
.post-prose p { margin-bottom: 1.2rem; }
.post-prose ul, .post-prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.4rem;
}
.post-prose ul { list-style: disc; }
.post-prose ol { list-style: decimal; }
.post-prose li { margin-bottom: 0.45rem; }
.post-prose a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-prose a:hover { color: var(--teal-500); }
.post-prose blockquote {
  margin: 1.75rem 0;
  padding: 1.1rem 1.35rem;
  background: var(--cream-200);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy-900);
}
.post-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.post-prose strong { color: var(--text-primary); font-weight: 600; }

.post-article__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.post-tags { margin-bottom: 1.75rem; }
.post-tags__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.post-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.post-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.post-author-box {
  display: flex;
  gap: 1.15rem;
  padding: 1.35rem 1.25rem;
  background: var(--cream-200);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.post-author-box__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.post-author-box__name {
  display: block;
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}
.post-author-box__bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
  transition: color var(--transition), gap var(--transition);
}
.post-back-link:hover {
  color: var(--teal-500);
  gap: 0.75rem;
}

/* Sidebar */
.post-aside { min-width: 0; }
.post-aside__sticky {
  position: sticky;
  top: 96px;
}

.post-aside-cta {
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  color: var(--white);
  margin-bottom: 1.15rem;
  box-shadow: var(--shadow-md);
}
.post-aside-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.post-aside-cta__title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.55rem;
  font-family: 'DM Serif Display', Georgia, serif;
}
.post-aside-cta p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.15rem;
}
.post-aside-cta__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.55rem;
}
.post-aside-cta__btn:last-child { margin-bottom: 0; }
.post-aside-cta .btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.post-aside-cta .btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.post-aside-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.post-aside-widget__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--gray-200);
}

.post-aside-links { list-style: none; }
.post-aside-links li { border-bottom: 1px solid var(--gray-100); }
.post-aside-links li:last-child { border-bottom: none; }
.post-aside-links a {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition), padding-left var(--transition);
}
.post-aside-links a::before {
  content: '→';
  margin-right: 0.5rem;
  color: var(--gold-500);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.post-aside-links a:hover {
  color: var(--navy-700);
  padding-left: 0.25rem;
}
.post-aside-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.post-aside-trust { list-style: none; }
.post-aside-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-100);
}
.post-aside-trust li:last-child { border-bottom: none; }
.post-aside-trust svg { color: var(--teal-500); flex-shrink: 0; }

/* Sidebar search */
.post-search-form { display: flex; flex-direction: column; gap: 0.65rem; }
.post-search-form__field {
  position: relative;
  display: flex;
  align-items: center;
}
.post-search-form__icon {
  position: absolute;
  left: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}
.post-search-form__field input {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.post-search-form__field input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}
.post-search-form__btn {
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.post-search-form__btn:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
}

/* Sidebar related posts */
.post-related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.post-related-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.post-related-item:hover { background: var(--gray-100); }
.post-related-item__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-200);
  border: 1px solid var(--gray-200);
}
.post-related-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-related-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}
.post-related-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.post-related-item__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.post-related-item__title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-related-item:hover .post-related-item__title { color: var(--navy-700); }
.post-related-item__date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Blog listing search */
.blog-hero-search {
  display: flex;
  max-width: 480px;
  margin-top: 1.5rem;
  gap: 0.5rem;
}
.blog-hero-search input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
}
.blog-hero-search input::placeholder { color: rgba(255, 255, 255, 0.55); }
.blog-hero-search input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.18);
}
.blog-hero-search__btn {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.blog-hero-search__btn:hover { background: var(--gold-400); }

.blog-search-results {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.blog-search-results a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: underline;
}

.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;
}

/* Related — legacy section */
.post-related { padding: 4rem 0; }

/* Legacy post classes (other pages) */
.post-content { min-width: 0; }
.post-tags strong { font-size: 0.875rem; color: var(--text-secondary); }
.post-tags .blog-card-category { position: static; }
.author-box {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--cream-200);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold-500);
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 1rem; display: block; margin-bottom: 0.4rem; }
.author-bio { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.post-sidebar { position: sticky; top: 100px; }
.sidebar-cta-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.sidebar-cta-icon { color: var(--gold-400); margin-bottom: 1rem; }
.sidebar-cta-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem; }
.sidebar-cta-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--gray-200);
}
.sidebar-widget-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--gray-100); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 0.65rem 0; font-size: 0.9rem; color: var(--text-secondary); transition: color var(--transition), padding-left var(--transition); }
.sidebar-links a:hover { color: var(--navy-700); padding-left: 0.5rem; }
.sidebar-trust-list { list-style: none; }
.sidebar-trust-list li { padding: 0.45rem 0; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--gray-100); }
.sidebar-trust-list li:last-child { border-bottom: none; }
.post-hero-meta { margin-bottom: 0.75rem; }
.post-hero-info { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(165deg, #fffefb 0%, var(--cream-100) 42%, var(--cream-200) 100%);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold-500);
  border-bottom: 1px solid rgba(13,27,62,0.08);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.14) 0%, transparent 70%),
    radial-gradient(circle at 95% 90%, rgba(27,58,107,0.06) 0%, transparent 45%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.45), transparent);
  pointer-events: none;
}
.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner-content h1,
.cta-banner-content h2,
.cta-banner-content h3,
.cta-banner .text-white {
  color: var(--navy-900) !important;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem) !important;
  line-height: 1.22;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cta-banner-content > p:not(.section-eyebrow):not(.cta-disclaimer) {
  color: var(--text-secondary) !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  max-width: 540px;
  margin: 0 auto 1.25rem !important;
  font-weight: 400;
}
.cta-banner .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--navy-700);
  padding-left: 0;
  font-weight: 700;
}
.cta-banner .section-eyebrow::before {
  position: static;
  transform: none;
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  flex-shrink: 0;
}
.cta-banner .section-eyebrow.light {
  color: var(--navy-700);
}
.cta-banner .section-eyebrow.light::before {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}
.cta-banner-actions,
.cta-btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.7rem;
  margin-top: 0.25rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.cta-banner .btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  min-height: 46px;
  border-radius: 10px;
  font-weight: 700;
}
.cta-banner .btn-gold {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 100%);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(212,168,67,0.3);
}
.cta-banner .btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-400) 100%);
  border-color: var(--gold-400);
  color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(212,168,67,0.38);
  transform: translateY(-2px);
}
.cta-banner a.btn.btn-outline-white {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 2px 8px rgba(13,27,62,0.08);
}
.cta-banner a.btn.btn-outline-white:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(13,27,62,0.18);
  transform: translateY(-2px);
}
.cta-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Page Hero ── */
.page-hero {
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,62,0.9) 0%, rgba(13,27,62,0.65) 60%, rgba(13,27,62,0.4) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 600px; }
.page-hero-post { padding: 160px 0 100px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb [aria-current="page"] { color: var(--gold-400); }

/* ── Prose / Rich Content ── */
.prose { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.prose h2 { color: var(--text-primary); margin: 2.5rem 0 1rem; font-size: 1.9rem; }
.prose h3 { color: var(--text-primary); margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--navy-700); text-decoration: underline; }
.prose a:hover { color: var(--teal-500); }
.prose blockquote {
  border-left: 4px solid var(--gold-500);
  padding: 1rem 1.5rem;
  background: var(--cream-200);
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* Coverage Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.coverage-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.coverage-icon { color: var(--navy-700); display: flex; justify-content: center; margin-bottom: 1rem; }
.coverage-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.coverage-card p { font-size: 0.875rem; color: var(--text-muted); }

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(22,163,148,0.06));
  border: 1px solid rgba(212,168,67,0.25);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.highlight-box h3, .highlight-box h4 { color: var(--navy-900); margin-bottom: 0.5rem; }
.highlight-box p { margin: 0; font-size: 0.95rem; }

/* State Table */
.state-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.state-table th {
  background: var(--navy-900);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
}
.state-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-secondary);
}
.state-table tr:nth-child(even) td { background: var(--gray-100); }
.state-table tr:hover td { background: var(--cream-200); }

/* Coverage Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.tier-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tier-header { background: var(--navy-900); color: var(--white); padding: 1.5rem; text-align: center; }
.tier-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.25rem; }
.tier-header p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; }
.tier-card.featured .tier-header { background: linear-gradient(135deg, var(--gold-500), #b8892e); }
.tier-card.featured .tier-header h3, .tier-card.featured .tier-header p { color: var(--navy-900); }
.tier-body { padding: 1.5rem; background: var(--white); }
.tier-body ul { list-style: none; }
.tier-body li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tier-body li::before { content: '✓'; color: var(--teal-500); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover { border-color: rgba(212, 168, 67, 0.35); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: transparent;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  font-family: inherit;
  line-height: 1.45;
  transition: color var(--transition), background var(--transition);
}
.faq-question:hover { background: rgba(212, 168, 67, 0.06); }
.faq-item.open {
  border-color: rgba(212, 168, 67, 0.45);
  box-shadow: 0 4px 18px rgba(13, 27, 62, 0.06);
}
.faq-item.open .faq-question {
  background: rgba(13, 27, 62, 0.03);
  color: var(--navy-900);
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--gold-500);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 27, 62, 0.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  color: var(--navy-700);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: transparent;
}
.faq-answer p,
.faq-answer-inner {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}
.faq-item.open .faq-answer p,
.faq-item.open .faq-answer-inner {
  padding-top: 1rem;
}

/* Contact Cards — legacy */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2rem 0 0; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold-400);
}
.contact-card-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.contact-card-value { font-size: 1.35rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; font-family: 'DM Serif Display', serif; }
.contact-card-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   SERVICE DETAIL PAGES
═══════════════════════════════════════════ */

.svc-hero { padding: 140px 0 72px; }
.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}
.svc-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color var(--transition); }
.svc-breadcrumb a:hover { color: var(--gold-400); }
.svc-breadcrumb span { color: rgba(255, 255, 255, 0.45); }
.svc-breadcrumb [aria-current="page"] { color: var(--gold-400); }

.svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.svc-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.svc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1rem;
}
.svc-hero h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold-400);
}
.svc-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 0 1.75rem;
}
.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.svc-section { padding: 4.5rem 0; }

.svc-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}
.svc-prose {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.svc-prose p { margin-bottom: 1.1rem; }
.svc-prose p:last-child { margin-bottom: 0; }
.svc-prose strong { color: var(--navy-900); }
.svc-prose ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}
.svc-prose li { margin-bottom: 0.65rem; }

.svc-aside { display: flex; flex-direction: column; gap: 1rem; }
.svc-aside-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.svc-aside-card--accent {
  border-left: 4px solid var(--gold-500);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(22, 163, 148, 0.04));
}
.svc-aside-card--warn {
  border-left: 4px solid #e11d48;
  background: rgba(225, 29, 72, 0.04);
}
.svc-aside-card h3,
.svc-aside-card h4 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 0.65rem;
}
.svc-aside-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.svc-aside-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.svc-aside-card li { margin-bottom: 0.4rem; }
.svc-aside-card .btn { width: 100%; justify-content: center; margin-top: 1rem; }

.svc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.svc-stat {
  text-align: center;
  padding: 1rem 0.5rem;
}
.svc-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.svc-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svc-feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.svc-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.35);
}
.svc-feature-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.6;
}
.svc-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.svc-feature-card h3 {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}
.svc-feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.svc-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-audience-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.svc-audience-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 168, 67, 0.35);
}
.svc-audience-card__icon {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.svc-audience-card h3 {
  font-size: 1rem;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}
.svc-audience-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.svc-process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.svc-process__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  z-index: 0;
}
.svc-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.75rem;
}
.svc-process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  color: var(--navy-900);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-sm);
}
.svc-process-step h4 {
  font-size: 0.92rem;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}
.svc-process-step p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.svc-process-list { max-width: 760px; margin: 0 auto; }
.svc-process-list .svc-process-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.svc-process-list .svc-process-item:last-child { border-bottom: none; }
.svc-process-item__num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.svc-process-item h4 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}
.svc-process-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.svc-tips__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.svc-tip-card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.svc-tip-card__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-tip-card h3 {
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}
.svc-tip-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.svc-comp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-comp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-top: 3px solid var(--teal-500);
}
.svc-comp-card h4 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.svc-comp-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.svc-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-table-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.svc-calc-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  margin: 0.75rem 0;
}
.svc-calc-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.svc-calc-table tr:last-child td { border-bottom: none; }
.svc-calc-table .svc-calc-savings {
  font-weight: 700;
  color: var(--gold-500);
  font-size: 1.05rem;
}

.svc-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.svc-tier-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-tier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-tier-card--featured {
  border-color: var(--gold-500);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.2);
}
.svc-tier-card__head {
  background: var(--navy-900);
  color: var(--white);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.svc-tier-card--featured .svc-tier-card__head {
  background: linear-gradient(135deg, var(--gold-500), #b8892e);
  color: var(--navy-900);
}
.svc-tier-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.svc-tier-card--featured .svc-tier-card__badge {
  background: rgba(13, 27, 62, 0.15);
  color: var(--navy-900);
}
.svc-tier-card__head h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: inherit;
}
.svc-tier-card__head p {
  font-size: 0.82rem;
  opacity: 0.75;
  margin: 0;
}
.svc-tier-card__body {
  flex: 1;
  padding: 1.35rem 1.25rem;
}
.svc-tier-card__body > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.svc-tier-card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-tier-card__body li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.svc-tier-card__body li::before {
  content: '✓';
  color: var(--teal-500);
  font-weight: 700;
  flex-shrink: 0;
}

.svc-faq .container {
  max-width: 820px;
}
.svc-faq .about-section-head {
  margin-bottom: 2rem;
}
.svc-faq .faq-list {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(13, 27, 62, 0.07);
  overflow: hidden;
}
.svc-faq .faq-item {
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--gray-200);
}
.svc-faq .faq-item:last-child { border-bottom: none; }
.svc-faq .faq-item:hover { border-color: var(--gray-200); }
.svc-faq .faq-item.open {
  border-color: var(--gray-200);
  box-shadow: none;
  background: rgba(212, 168, 67, 0.04);
}
.svc-faq .faq-question {
  padding: 1.1rem 1.35rem;
}
.svc-faq .faq-answer p,
.svc-faq .faq-answer-inner {
  padding: 0 1.35rem 1.2rem;
  background: transparent;
}
.svc-faq .faq-item.open .faq-answer p,
.svc-faq .faq-item.open .faq-answer-inner {
  padding-top: 0.15rem;
  border-top: none;
}
.svc-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-200);
}
.svc-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.svc-trust-row svg { color: var(--teal-500); flex-shrink: 0; }

.section-dark .about-section-head h2 { color: var(--white); }
.section-dark .about-section-head h2 em { color: var(--gold-400); }
.section-dark .about-section-head__lead { color: rgba(255, 255, 255, 0.78); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

.contact-hero { padding: 140px 0 72px; }
.contact-hero .post-breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.contact-hero .post-breadcrumb a:hover { color: var(--gold-400); }
.contact-hero .post-breadcrumb span { color: rgba(255, 255, 255, 0.45); }
.contact-hero .post-breadcrumb [aria-current="page"] { color: var(--gold-400); }

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.contact-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1rem;
}
.contact-hero h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold-400);
}
.contact-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0;
}

.contact-main { padding: 4rem 0; }

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.contact-panel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.85rem;
  border-right: 1px solid var(--gray-200);
}
.contact-panel__item:last-child { border-right: none; }
.contact-panel__item--featured {
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.08) 0%, var(--white) 55%);
}
.contact-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.contact-panel__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 0.45rem;
}
.contact-panel__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 0.35rem;
  max-width: 240px;
}
.contact-panel__text--email {
  font-size: 0.82rem;
  font-weight: 600;
  word-break: break-all;
}
.contact-panel__text a {
  color: var(--navy-700);
  transition: color var(--transition);
}
.contact-panel__text a:hover { color: var(--teal-500); }
.contact-panel__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}
.contact-panel__btn {
  width: 100%;
  max-width: 200px;
  justify-content: center;
  margin-top: auto;
}
.contact-panel__tag {
  display: inline-block;
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-500);
  background: rgba(22, 163, 148, 0.1);
  border: 1px solid rgba(22, 163, 148, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* Legacy contact cards */
.contact-cta-strip { display: none; }

.contact-method-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-method-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.35);
}
.contact-method-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(13, 27, 62, 0.15);
}
.contact-method-card__icon--teal {
  background: linear-gradient(135deg, #0f766e, var(--teal-500));
  color: var(--white);
}
.contact-method-card__icon--gold {
  background: linear-gradient(135deg, #b8892e, var(--gold-500));
  color: var(--navy-900);
}
.contact-method-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.contact-method-card__value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.contact-method-card__value a { color: inherit; transition: color var(--transition); }
.contact-method-card__value a:hover { color: var(--navy-700); }
.contact-method-card__value--email {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-all;
}
.contact-method-card__note {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}
.contact-method-card__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-500);
  background: rgba(22, 163, 148, 0.1);
  border: 1px solid rgba(22, 163, 148, 0.25);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.contact-method-card .btn { margin-top: auto; }

.contact-trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13, 27, 62, 0.07);
}
.contact-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.contact-trust-row svg { color: var(--teal-500); flex-shrink: 0; }
.contact-trust-row strong { color: var(--navy-900); }

/* Contact services */
.contact-services { padding: 4rem 0; }
.contact-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.contact-service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.contact-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.35);
}
.contact-service-card__num {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gray-200);
  user-select: none;
}
.contact-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-200), var(--gray-100));
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.contact-service-card h3 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 0.55rem;
}
.contact-service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.contact-service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition), gap var(--transition);
}
.contact-service-card__link:hover {
  color: var(--teal-500);
  gap: 0.55rem;
}

/* Contact FAQ */
.contact-faq { padding: 4rem 0; }
.contact-faq__inner { max-width: 760px; margin: 0 auto; }
.contact-faq__list {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(13, 27, 62, 0.07);
  overflow: hidden;
}
.contact-faq__list .faq-item {
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--gray-200);
}
.contact-faq__list .faq-item:last-child { border-bottom: none; }
.contact-faq__list .faq-item.open {
  background: rgba(212, 168, 67, 0.04);
}
.contact-faq__list .faq-question {
  padding: 1.1rem 1.35rem;
  font-size: 0.95rem;
}
.contact-faq__list .faq-item.open .faq-question {
  background: transparent;
  color: var(--navy-900);
}
.contact-faq__list .faq-answer p,
.contact-faq__list .faq-answer-inner {
  border-top: none;
  padding-top: 0.15rem;
}
.contact-faq__list .faq-chevron {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 27, 62, 0.12);
  background: var(--white);
  color: var(--navy-700);
}
.contact-faq__list .faq-item.open .faq-chevron {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

/* About Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.team-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-title { font-size: 0.85rem; color: var(--gold-500); font-weight: 600; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.875rem; color: var(--text-muted); }

/* Trust Badges */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-badge svg { color: var(--gold-500); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */

/* Shared section headers */
.about-section-head { margin-bottom: 2.5rem; }
.about-section-head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.about-section-head--left { max-width: 100%; }

.about-section-head__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.about-section-head__eyebrow--center { justify-content: center; }

.about-section-head__line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
  border-radius: 1px;
  flex-shrink: 0;
}
.about-section-head__line--right {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.about-section-head--left .about-section-head__line {
  background: var(--gold-500);
  width: 28px;
}

.about-section-head__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  white-space: nowrap;
}

.about-section-head h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 0;
}
.about-section-head h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--navy-700);
}

.about-section-head__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0.85rem auto 0;
  max-width: 520px;
}

/* Hero */
.about-hero { padding: 140px 0 72px; }
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.about-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.about-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 1.1rem;
}
.about-hero h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold-400);
}
.about-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0;
}

/* Mission */
.about-mission { padding: 4.5rem 0; }
.about-mission__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}
.about-prose {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.about-prose p { margin-bottom: 1.1rem; }
.about-prose p:last-child { margin-bottom: 0; }
.about-prose__highlight {
  padding: 1.1rem 1.25rem;
  background: rgba(212, 168, 67, 0.1);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy-900) !important;
  font-weight: 500;
}

.about-stats-panel {
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}
.about-stats-panel__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  text-align: center;
}
.about-stats-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-stat {
  background: rgba(13, 27, 62, 0.6);
  padding: 1.35rem 1rem;
  text-align: center;
}
.about-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--gold-500);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.about-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

/* Values */
.about-values { padding: 4.5rem 0; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.about-value-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.85rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.about-value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.35);
}
.about-value-card__num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gray-200);
  user-select: none;
  pointer-events: none;
}
.about-value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(13, 27, 62, 0.15);
}
.about-value-card h3 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}
.about-value-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* Team */
.about-team { padding: 4.5rem 0; }
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.about-team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
  opacity: 0;
  transition: opacity var(--transition);
}
.about-team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.about-team-card:hover::before { opacity: 1; }
.about-team-card--featured {
  border-color: rgba(212, 168, 67, 0.45);
  box-shadow: var(--shadow-md);
}
.about-team-card--featured::before { opacity: 1; }

.about-team-card__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin: 0 auto 1.15rem;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500), 0 6px 20px rgba(13, 27, 62, 0.15);
}
.about-team-card__name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.3rem;
  font-family: 'DM Serif Display', Georgia, serif;
}
.about-team-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.85rem;
}
.about-team-card__bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* Credentials */
.about-credentials { padding: 4.5rem 0; }
.about-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.about-cred-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.about-cred-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 163, 148, 0.3);
  transform: translateY(-3px);
}
.about-cred-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-500);
  margin-bottom: 0.35rem;
}
.about-cred-card strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}
.about-cred-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.empty-state svg { margin: 0 auto 1.25rem; color: var(--gray-400); }
.empty-state h3 { margin-bottom: 0.75rem; }
.empty-state p { margin-bottom: 1.5rem; }

/* Process Steps (Service pages) */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.process-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.process-step h4 { margin-bottom: 0.35rem; }
.process-step p { font-size: 0.9rem; margin: 0; }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-200), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--navy-700);
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

/* ── Footer ── */
.site-footer { background: var(--navy-900); }
.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo-icon { color: var(--gold-500); }
.footer-logo strong { color: var(--gold-500); }
.footer-tagline { font-size: 0.875rem; color: var(--gold-400); margin-bottom: 0.75rem; font-weight: 500; }
.footer-description { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-400);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold-300); }
.footer-col-heading { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition), padding-left var(--transition); display: block; }
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact-info { list-style: none; }
.footer-contact-info li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.85rem; color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.footer-contact-info svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-500); }
.footer-contact-info a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--gold-400); }
.footer-cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 2rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 0.75rem; text-align: center; }
.footer-copyright { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); max-width: 900px; margin: 0 auto; line-height: 1.6; }

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-500); color: var(--navy-900); }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ── Utilities ── */
.text-gold { color: var(--gold-500) !important; }
.text-navy { color: var(--navy-900) !important; }
.text-teal { color: var(--teal-500) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  :root { --section-pad: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
  .nav-links, .nav-cta-group { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .states-grid { grid-template-columns: 1fr; gap: 2rem; }
  .states-visual { order: -1; }
  .states-map-card { max-width: 100%; }
  .states-stat { min-width: calc(33% - 0.5rem); flex: 1 1 auto; }
  .process-section { padding: 3.5rem 0; }
  .blog-preview-section { padding: 3.5rem 0; }
  .services-section { padding: 3.5rem 0; }
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-grid::before { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; gap: 2rem; }
  .post-aside__sticky { position: static; }
  .post-article__inner { padding: 1.5rem 1.25rem 1.75rem; }
  .post-article__hero,
  .post-article__hero-img { max-height: 260px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .about-mission__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats-panel { position: static; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-team__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-cred-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-features__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-audience__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .svc-process__grid::before { display: none; }
  .svc-comp__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-tiers__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .svc-tips__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .process-section { padding: 2.75rem 0; }
  .blog-preview-section { padding: 2.75rem 0; }
  .services-section { padding: 2.75rem 0; }
  .about-mission,
  .about-values,
  .about-team,
  .about-credentials { padding: 2.75rem 0; }
  .about-hero { padding: 120px 0 56px; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-cred-grid { grid-template-columns: 1fr; }
  .contact-hero { padding: 120px 0 56px; }
  .svc-hero { padding: 120px 0 56px; }
  .svc-section { padding: 2.75rem 0; }
  .svc-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-stats-row { grid-template-columns: repeat(2, 1fr); }
  .svc-features__grid { grid-template-columns: 1fr; }
  .svc-audience__grid { grid-template-columns: 1fr; }
  .svc-process__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-process__grid::before { display: none; }
  .svc-tips__grid { grid-template-columns: 1fr; }
  .svc-comp__grid { grid-template-columns: 1fr; }
  .svc-tiers__grid { grid-template-columns: 1fr; }
  .contact-main,
  .contact-services,
  .contact-faq { padding: 2.75rem 0; }
  .contact-services__grid { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel__item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.75rem 1.25rem;
  }
  .contact-panel__item:last-child { border-bottom: none; }
  .post-header { padding: 2rem 0 1.5rem; }
  .post-header__title { font-size: 1.75rem; }
  .post-body { padding: 1.75rem 0 2.5rem; }
  .post-related { padding: 2.75rem 0; }
  .post-author-box { flex-direction: column; text-align: center; align-items: center; }
  .post-article__hero,
  .post-article__hero-img { max-height: 200px; }
  .blog-hero-search { flex-direction: column; max-width: 100%; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero-content { padding: 4rem 0; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-badge { display: none; }
  .stats-grid { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 80px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .hero-dots { left: 1.5rem; transform: none; }
  .cta-banner { padding: 1.75rem 0; }
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .review-card--featured { order: -1; }
  .features-img { height: 300px; }
}

@media (max-width: 576px) {
  .container { padding: 0 1.25rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .coverage-grid { grid-template-columns: 1fr; }
  .blog-filters { gap: 0.4rem; }
  .blog-filter-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .cta-banner-actions,
  .cta-btn-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-banner-actions .btn,
  .cta-btn-group .btn { width: 100%; max-width: none; justify-content: center; }
}
