/* ============================================================
   ACG Insurance — SR22/FR44 Landing Page
   Brand colors: Navy #213254 | Yellow #fdce2b | Periwinkle #7ca7e4 | Gray #f2f2f2
   ============================================================ */

:root {
  --yellow:          #fdce2b;
  --yellow-hover:    #e8b800;
  --navy:            #213254;
  --navy-light:      #2d4270;
  --periwinkle:      #7ca7e4;
  --periwinkle-bg:   #eef3fc;
  --gray-bg:         #f2f2f2;
  --white:           #ffffff;
  --text-body:       #444444;
  --text-muted:      #888888;
  --border:          #e0e0e0;
  --shadow-card:     0 4px 24px rgba(33, 50, 84, 0.10);
  --shadow-form:     0 8px 40px rgba(33, 50, 84, 0.14);
  --radius-sm:       8px;
  --radius:          14px;
  --radius-lg:       24px;
  --max-width:       1140px;
  --header-h:        72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Buttons ──────────────────────────────────────────────── */

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-transform: uppercase;
  text-align: center;
}

.btn-yellow:hover { background: var(--yellow-hover); transform: translateY(-1px); }
.btn-yellow:active { transform: translateY(0); }

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
}

.btn-navy:hover { background: var(--navy-light); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  text-align: center;
}

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

/* ── Logo ─────────────────────────────────────────────────── */

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}

.logo__mark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo__line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.logo__acg {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo__sub {
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 2px;
}

/* ── Header ───────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: var(--header-h);
}

.header--scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(33, 50, 84, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.header__phone:hover { background: var(--yellow-hover); }

.header__phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  background: var(--white);
  padding: 56px 0 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.hero__content {
  padding-bottom: 0;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 12px;
}

.hero__headline {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero__states {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--periwinkle);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero__body {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 520px;
}

.hero__body strong { color: var(--navy); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--periwinkle-bg);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(124, 167, 228, 0.3);
}

.trust-chip svg {
  width: 15px;
  height: 15px;
  color: var(--periwinkle);
  flex-shrink: 0;
}

.trust-chip--star { background: #fffbea; border-color: rgba(253, 206, 43, 0.5); }
.trust-chip--star svg { color: var(--yellow); }

.hero__photo-wrap {
  position: relative;
  margin-top: 8px;
}

.hero__photo {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
}

/* ── Quote Card (Hero Form) ───────────────────────────────── */

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-form);
  padding: 32px 28px 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--border);
}

.quote-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.quote-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  line-height: 1.25;
}

/* ── Form Styles ──────────────────────────────────────────── */

.quote-form { display: flex; flex-direction: column; gap: 12px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group { display: flex; flex-direction: column; gap: 4px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--periwinkle); }

.form-group textarea { min-height: 90px; resize: vertical; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-submit {
  margin-top: 4px;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-card__or {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.quote-card__phone-link {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

.quote-card__phone-link:hover { color: var(--periwinkle); }

.quote-card__disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 10px;
  text-align: center;
}

/* ── Form success state ───────────────────────────────────── */

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success__body {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Proof Bar ────────────────────────────────────────────── */

.proof-bar {
  background: var(--navy);
  padding: 20px 0;
  margin-top: 48px;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 28px;
}

.proof-bar__item + .proof-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  flex-shrink: 0;
}

.proof-bar__stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ── Agents Section ───────────────────────────────────────── */

.agents {
  padding: 80px 0;
  background: var(--white);
}

.agents__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.agents__photo-wrap { position: relative; }

.agents__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.agents__content { }

.agents__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 10px;
}

.agents__headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.agents__body {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.agents__body strong { color: var(--navy); font-weight: 700; }

.agents__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.agents__phone-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Pillars (3 columns trust) ────────────────────────────── */

.pillars {
  background: var(--gray-bg);
  padding: 72px 0;
}

.pillars__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(124,167,228,0.15);
}

.pillar__icon {
  width: 64px;
  height: 64px;
  background: var(--periwinkle-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pillar__icon svg {
  width: 28px;
  height: 28px;
  color: var(--periwinkle);
}

.pillar__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.pillar__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── What Is SR22 ─────────────────────────────────────────── */

.what-is {
  padding: 80px 0;
  background: var(--white);
}

.what-is__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-is__content { }

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 10px;
}

.section-headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-underline {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 24px;
}

.what-is__body {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.what-is__body strong { color: var(--navy); font-weight: 700; }

.what-is__photo-wrap {
  position: relative;
}

.what-is__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.what-is__deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.25;
  z-index: -1;
}

/* ── Steps (How It Works) ─────────────────────────────────── */

.steps {
  background: var(--periwinkle-bg);
  padding: 80px 0;
  overflow: hidden;
}

.steps__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.steps__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 20px;
}

.steps__agent-photo {
  max-height: 480px;
  object-fit: contain;
}

.steps__content { }

.steps__headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.steps__body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 32px;
}

.steps__body strong { color: var(--navy); }

.step-list { display: flex; flex-direction: column; gap: 16px; }

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
}

.step__content { }

.step__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.step__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step__desc strong { color: var(--navy); }

/* ── Reviews ──────────────────────────────────────────────── */

.reviews {
  background: var(--white);
  padding: 80px 0;
}

.reviews__header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews__headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.reviews__sub {
  font-size: 1rem;
  color: var(--periwinkle);
  font-weight: 600;
  margin-bottom: 12px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  align-items: start;
}

.review-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.review-card__stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}

.review-card__author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.reviews__cta {
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────── */

.faq {
  background: var(--gray-bg);
  padding: 80px 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.faq__header {
  margin-bottom: 32px;
}

.faq__headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.15s;
}

.faq__question:hover { background: var(--periwinkle-bg); }

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--periwinkle-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.15s;
}

.faq__icon svg {
  width: 12px;
  height: 12px;
  color: var(--periwinkle);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  background: var(--yellow);
}

.faq__item--open .faq__icon svg { color: var(--navy); }

.faq__answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  border-top: 1px solid var(--border);
}

.faq__answer strong { color: var(--navy); font-weight: 700; }

.faq__item--open .faq__answer { display: block; }

.faq__photo-wrap {
  position: relative;
  padding-top: 16px;
}

.faq__agent-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.faq__deco {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.35;
  z-index: -1;
}

/* ── Final CTA Section ────────────────────────────────────── */

.cta-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.08;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: var(--periwinkle);
  border-radius: 50%;
  opacity: 0.1;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.cta-section__headline {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-section__body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-section__body strong { color: var(--white); }

.cta-section__phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-section__phone svg {
  width: 22px;
  height: 22px;
}

.cta-section__phone-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-top: 4px;
}

.cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.25);
}

.cta-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer__brand-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.footer__office-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--periwinkle);
  margin-bottom: 10px;
}

.footer__address {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.footer__address a {
  color: var(--navy);
  font-weight: 600;
}

.footer__address a:hover { color: var(--periwinkle); }

.footer__legal {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__legal a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer__legal a:hover { color: var(--navy); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__qa-link {
  color: var(--periwinkle);
  font-weight: 600;
}

/* ── Mobile sticky phone bar ──────────────────────────────── */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--yellow);
  padding: 14px 24px;
  text-align: center;
}

.mobile-cta-bar a {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__headline { font-size: 2.2rem; }

  .quote-card {
    position: static;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero__photo { border-radius: var(--radius-lg); }

  .agents__inner,
  .what-is__inner,
  .steps__inner,
  .faq__inner,
  .cta-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .pillars__inner { grid-template-columns: 1fr; gap: 16px; }

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

  .agents__photo-wrap { order: -1; }
  .steps__visual { display: none; }

  .cta-section__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: block; }

  body { padding-bottom: 60px; }

  .proof-bar__inner { flex-direction: column; gap: 4px; }
  .proof-bar__item + .proof-bar__item { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 600px) {
  .hero { padding-top: 32px; }
  .hero__headline { font-size: 1.85rem; }
  .form-row { grid-template-columns: 1fr; }
  .agents__cta { flex-direction: column; align-items: flex-start; }
  .cta-section__phone { font-size: 1.2rem; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__photo-wrap { display: none; }
  .header__phone span.header__phone-text { display: none; }
  .section-headline, .reviews__headline, .steps__headline, .faq__headline { font-size: 1.6rem; }
}
