/* AEO Site — Insurance Authority Design System */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #1a3a5c;
  --accent-dark: color-mix(in srgb, #1a3a5c 80%, #1a0000);
  --accent-light: color-mix(in srgb, #1a3a5c 7%, #fff);
  --accent-mid: color-mix(in srgb, #1a3a5c 12%, #fff);
  --accent-glow: color-mix(in srgb, #1a3a5c 25%, transparent);
  --text: #1c1c21;
  --text-secondary: #44444d;
  --text-muted: #71717a;
  --bg: #faf9f7;
  --bg-warm: #f3f1ec;
  --bg-card: #ffffff;
  --bg-dark: #1c1c21;
  --border: #e4e2dc;
  --border-light: #eceae5;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-elevated: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --max-width: 880px;
  --wide-width: 1120px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════
   Top Brand Bar
   ═══════════════════════════════════════════════ */

.brand-bar {
  height: 4px;
  background: var(--accent);
  position: relative;
}

.brand-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

/* ═══════════════════════════════════════════════
   Layout
   ═══════════════════════════════════════════════ */

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

.container-wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════
   Header — Sticky nav with brand bar
   ═══════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header-brand a {
  color: var(--text);
  text-decoration: none;
}

.header-brand a:hover {
  color: var(--accent);
}

.header-brand .brand-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.header-brand .brand-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s var(--ease);
}

.header-phone:hover {
  color: var(--accent);
}

.header-phone svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s var(--ease);
  box-shadow: 0 1px 3px var(--accent-glow);
}

.header-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 12px var(--accent-glow);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════
   Hero Section — Index page
   ═══════════════════════════════════════════════ */

.hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, var(--accent-light) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, var(--accent-light) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero h1 strong {
  font-weight: 600;
  color: var(--accent);
}

.hero .hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 520px;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.15rem 1rem;
  position: relative;
}

.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.hero-stat .stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════
   Page Hero — Cluster & city pages
   ═══════════════════════════════════════════════ */

.page-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2.25rem;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent-glow), transparent 90%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--border);
  font-size: 0.65rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.015em;
  max-width: 720px;
}

.page-hero .page-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.page-hero .page-meta .meta-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   Section Labels
   ═══════════════════════════════════════════════ */

.section-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   Topic Grid — Index page cards
   ═══════════════════════════════════════════════ */

.topics-section {
  padding: 3.5rem 0 2rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.875rem;
}

.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.topic-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.topic-card:hover {
  border-color: color-mix(in srgb, #1a3a5c 30%, var(--border));
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--text);
}

.topic-card:hover::after {
  transform: scaleX(1);
}

.topic-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.005em;
}

.topic-card .card-preview {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex-grow: 1;
}

.topic-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.topic-card .question-count {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topic-card .card-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}

.topic-card:hover .card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   Q&A Blocks — Cluster pages
   ═══════════════════════════════════════════════ */

.qa-section {
  padding: 2.5rem 0 1rem;
}

.qa-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.875rem;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.qa-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.qa-block:hover {
  border-color: color-mix(in srgb, #1a3a5c 20%, var(--border));
  box-shadow: var(--shadow-card);
}

.qa-block:hover::before {
  opacity: 1;
}

.qa-block h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  padding: 1.15rem 1.5rem;
  line-height: 1.35;
  cursor: default;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  letter-spacing: -0.005em;
}

.qa-block h2::before {
  content: 'Q';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 0.08rem;
}

.qa-block .answer {
  padding: 0 1.5rem 1.35rem;
  margin-left: calc(26px + 0.75rem);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 1.15rem;
}

/* ═══════════════════════════════════════════════
   Business Card — CTA aside
   ═══════════════════════════════════════════════ */

.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.business-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.business-card .biz-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.business-card .biz-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.business-card .biz-info a {
  color: var(--accent);
  font-weight: 500;
}

.business-card .biz-info a:hover {
  color: var(--accent-dark);
}

.business-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px var(--accent-glow);
  white-space: nowrap;
}

.business-card .cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
  text-decoration: none;
  color: #fff !important;
}

.business-card .cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════ */

.site-footer {
  background: var(--bg-dark);
  color: #a1a1aa;
  padding: 3.5rem 0 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
}

.footer-brand .footer-phone {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  transition: color 0.2s var(--ease);
}

.footer-brand .footer-phone:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: #a1a1aa;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════
   Format-specific answer styles
   ═══════════════════════════════════════════════ */

.answer p {
  margin-bottom: 0.5rem;
}

.answer p:last-child {
  margin-bottom: 0;
}

.answer ol,
.answer ul {
  margin: 0.6rem 0 0.5rem 1.15rem;
  line-height: 1.8;
}

.answer ol li,
.answer ul li {
  margin-bottom: 0.35rem;
  padding-left: 0.2rem;
}

.answer ul li::marker {
  color: var(--accent);
}

.answer ol li::marker {
  color: var(--accent);
  font-weight: 700;
}

.answer .verdict {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.02em;
}

.answer .price-range {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.08em;
  font-family: var(--font-display);
}

.answer .definition {
  font-weight: 600;
  color: var(--text);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0.85rem 0;
  font-size: 0.85rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
  padding: 0.6rem 0.9rem;
  text-align: left;
}

.comparison-table th {
  background: var(--bg-warm);
  font-weight: 700;
  color: var(--text);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--border);
}

.comparison-table td {
  border-bottom: 1px solid var(--border-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--bg);
}

/* ═══════════════════════════════════════════════
   Internal Links within answers
   ═══════════════════════════════════════════════ */

.answer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, #1a3a5c 25%, transparent);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s var(--ease);
}

.answer a:hover {
  text-decoration-color: var(--accent);
}

/* ═══════════════════════════════════════════════
   City / Service Area styles
   ═══════════════════════════════════════════════ */

.city-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 2rem;
}

.service-areas {
  margin: 2rem 0 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.city-link {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
}

.city-link:hover {
  background: var(--accent-light);
  border-color: color-mix(in srgb, #1a3a5c 30%, var(--border));
  color: var(--accent);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.qa-block {
  animation: fadeUp 0.35s var(--ease) both;
}

.qa-block:nth-child(1) { animation-delay: 0s; }
.qa-block:nth-child(2) { animation-delay: 0.04s; }
.qa-block:nth-child(3) { animation-delay: 0.08s; }
.qa-block:nth-child(4) { animation-delay: 0.12s; }
.qa-block:nth-child(5) { animation-delay: 0.16s; }
.qa-block:nth-child(6) { animation-delay: 0.2s; }
.qa-block:nth-child(7) { animation-delay: 0.24s; }
.qa-block:nth-child(8) { animation-delay: 0.28s; }
.qa-block:nth-child(9) { animation-delay: 0.32s; }
.qa-block:nth-child(10) { animation-delay: 0.36s; }

.topic-card {
  animation: fadeUp 0.3s var(--ease) both;
}

.topic-card:nth-child(1) { animation-delay: 0.03s; }
.topic-card:nth-child(2) { animation-delay: 0.07s; }
.topic-card:nth-child(3) { animation-delay: 0.11s; }
.topic-card:nth-child(4) { animation-delay: 0.15s; }
.topic-card:nth-child(5) { animation-delay: 0.19s; }
.topic-card:nth-child(6) { animation-delay: 0.23s; }
.topic-card:nth-child(7) { animation-delay: 0.27s; }
.topic-card:nth-child(8) { animation-delay: 0.31s; }
.topic-card:nth-child(9) { animation-delay: 0.35s; }
.topic-card:nth-child(10) { animation-delay: 0.39s; }
.topic-card:nth-child(11) { animation-delay: 0.43s; }
.topic-card:nth-child(12) { animation-delay: 0.47s; }
.topic-card:nth-child(13) { animation-delay: 0.51s; }

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-stats {
    max-width: 100%;
    flex-direction: column;
  }

  .hero-stat + .hero-stat::before {
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
  }

  .page-hero h1 {
    font-size: 1.55rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .business-card .cta {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .qa-block h2 {
    font-size: 1rem;
    padding: 1rem 1.15rem;
  }

  .qa-block .answer {
    margin-left: 0;
    padding: 1rem 1.15rem 1.15rem;
  }

  .qa-block h2::before {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .header-phone {
    display: none;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }
}