/* ============================================================
   CST Academy — PPC Landing Page Overrides
   Built on top of styles.css (shared design system tokens)
   ============================================================ */

/* ============================================================
   PPC overrides — arrows always white, no yellow on page
   ============================================================ */
.btn-primary .arrow img,
.center-cta .btn .arrow img,
.faq-cta-row .btn-primary .arrow img,
.ppc-final-cta .btn-gold span,
.btn .arrow img {
  filter: brightness(0) invert(1);
}
.btn-secondary .arrow img { filter: none; }

/* ----- Minimal header ----- */
.ppc-header {
  background: var(--white);
  border-bottom: 1px solid var(--pale);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 1px 0 rgba(22, 58, 76, 0.04), 0 2px 12px rgba(22, 58, 76, 0.06);
}
/* Spacer to offset fixed header height so content doesn't jump under it */
body { padding-top: 72px; }
@media (max-width: 700px) { body { padding-top: 64px; } }
/* Anchor jump offset so smooth-scroll lands below the fixed header */
section[id], [id="hero-form"], [id="insurance"] { scroll-margin-top: 88px; }
.ppc-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  flex-wrap: nowrap;
}
.ppc-header .logo img { max-width: 64px; height: auto; }
.anchor-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
}
.anchor-nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 0 14px;
  white-space: nowrap;
  line-height: 1;
}
.anchor-nav a:hover { color: var(--blue); }
.ppc-header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ppc-header .header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.ppc-header .header-phone img { width: 16px; height: 16px; }
@media (min-width: 1100px) {
  .anchor-nav { display: flex; }
  .ppc-header .header-phone { display: inline-flex; }
}
@media (min-width: 900px) and (max-width: 1099.98px) {
  /* Compact desktop: hide the wordy anchor nav, keep phone + CTA */
  .ppc-header .header-phone { display: inline-flex; }
}

/* ============================================================
   HERO — split layout, form in right column (navy bg per Figma)
   ============================================================ */
.ppc-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.ppc-hero::before {
  /* subtle background ornament — soft blue glow */
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 126, 171, 0.28) 0%, rgba(59, 126, 171, 0) 65%);
  top: -240px;
  right: -180px;
  z-index: 0;
  pointer-events: none;
}
.ppc-hero .wrap { position: relative; z-index: 1; }
.ppc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 1000px) {
  .ppc-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: start;
  }
}
.ppc-hero-eyebrow {
  display: inline-block;
  font-family: 'Quicksand', 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 14px;
  border-radius: 999px;
}
.ppc-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.ppc-hero h1 .accent { color: var(--powder); }
.ppc-hero .subhead {
  font-family: 'Source Serif 4', 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 18px;
  max-width: 36ch;
}
.ppc-hero .lede {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px;
  max-width: 52ch;
}
.ppc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.ppc-hero-trust .trust-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.ppc-hero-trust .trust-chip .ck {
  color: var(--powder);
  font-weight: 800;
  font-size: 14px;
}
.ppc-hero .secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--powder);
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-right: 16px;
}
.ppc-hero .secondary-action:hover { color: var(--white); }
.ppc-hero .phone-inline {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ppc-hero .phone-inline strong { font-weight: 800; color: var(--white); }
.ppc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
  margin-top: 30px;
}

/* ----- Hero form card (Figma: solid steel-blue card, white inputs) ----- */
.hero-form-card {
  --form-blue: #355C72;
  --form-blue-deep: #2A4A5C;
  background: var(--form-blue);
  border-radius: var(--radius-card);
  border: none;
  box-shadow: 0 22px 50px rgba(22, 58, 76, 0.18), 0 6px 16px rgba(22, 58, 76, 0.08);
  padding: 32px 32px 30px;
  overflow: hidden;
  position: relative;
  color: var(--white);
}
.hero-form-card .form-head {
  background: transparent;
  padding: 0 0 22px;
  color: var(--white);
}
.hero-form-card .form-head h2 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 8px;
}
.hero-form-card .form-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}
.hero-form-card .form-body {
  padding: 0;
}
.hero-form-card .form-body form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form-card .form-body .field {
  margin: 0;
  position: relative;
}
.hero-form-card .form-body .field + .submit-btn,
.hero-form-card .form-body .submit-btn {
  margin-top: 6px;
}
.hero-form-card .form-body .field label {
  /* Use placeholder text inside the field; keep label for a11y only */
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.hero-form-card .form-body input,
.hero-form-card .form-body select {
  display: block;
  width: 100%;
  margin: 0;
  background: var(--white);
  border: none;
  border-radius: 10px;
  padding: 18px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--body);
  line-height: 1.2;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
  transition: box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.hero-form-card .form-body input::placeholder { color: #8A949C; font-weight: 500; }
.hero-form-card .form-body select { color: #8A949C; font-weight: 500; }
.hero-form-card .form-body select option { color: var(--body); }
.hero-form-card .form-body select:not(:invalid):not(:focus) { color: var(--body); }
.hero-form-card .form-body select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23355C72' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.hero-form-card .form-body input:focus,
.hero-form-card .form-body select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.hero-form-card .submit-btn {
  width: 100%;
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border-radius: 10px;
  border: none;
  padding: 18px 20px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
  line-height: 1.2;
  text-wrap: balance;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.hero-form-card .submit-btn:hover { background: #000; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35); }
.hero-form-card .submit-btn .arrow { font-size: 18px; line-height: 1; }
.hero-form-card .micro {
  text-align: center;
  margin: 14px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.hero-form-card .trust-line {
  margin: 8px 0 0;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  opacity: 0.9;
}
.hero-form-card .trust-line .star { color: var(--white); }
@media (max-width: 700px) {
  .hero-form-card { padding: 26px 24px 24px; }
  .hero-form-card .form-head h2 { font-size: 22px; }
  .hero-form-card .form-body input,
  .hero-form-card .form-body select { min-height: 52px; padding: 16px; font-size: 14.5px; }
  .hero-form-card .submit-btn { min-height: 54px; font-size: 15px; }
}

/* ============================================================
   SIGNS GRID (Section 3) — reuses .sym-grid with small tweaks
   ============================================================ */
.ppc-signs {
  background: var(--white);
  padding: 80px 0;
}
.ppc-signs .section-head h2 { color: var(--purple); }
.ppc-signs .sym-card {
  padding: 24px 22px;
}
.ppc-signs .sym-card h3 {
  font-size: 17px;
  line-height: 1.35;
}
.ppc-signs .sym-card p {
  font-size: 14.5px;
  line-height: 22px;
  letter-spacing: 0.2px;
}
.ppc-signs .sym-icon-bullet {
  width: 36px;
  height: 36px;
  background: var(--pale-deep);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}
.ppc-signs .center-cta .helper {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   3-STEP TIMELINE (Section 4)
   ============================================================ */
.ppc-steps {
  background: var(--pale);
  padding: 80px 0;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 44px;
  position: relative;
}
@media (min-width: 850px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.steps-row .step-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.steps-row .step-card .step-badge {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  border: 4px solid var(--white);
  outline: 2px solid var(--navy);
  outline-offset: 0;
}
.steps-row .step-card.s2 .step-badge { background: var(--blue); outline-color: var(--blue); }
.steps-row .step-card.s3 .step-badge { background: var(--purple); outline-color: var(--purple); }
.steps-row .step-card .step-meta {
  font-family: 'Quicksand', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.steps-row .step-card.s2 .step-meta { color: var(--blue); }
.steps-row .step-card.s3 .step-meta { color: var(--purple); }
.steps-row .step-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  color: var(--navy);
}
.steps-row .step-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 25px;
  color: var(--body);
  opacity: 0.85;
}
.steps-insurance-line {
  margin: 36px auto 0;
  max-width: 880px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 18px 24px;
  border: 1px dashed var(--powder);
}
.steps-insurance-line strong { color: var(--navy); }

/* ============================================================
   SOCIAL PROOF (Section 5) — stat bar + 3 testimonials
   ============================================================ */
.ppc-social {
  background: var(--white);
  padding: 80px 0;
}
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  background: var(--pale);
  border-radius: 999px;
  padding: 14px 28px;
  margin: 0 auto 40px;
  max-width: fit-content;
  border: 1px solid var(--pale-deep);
}
.stat-bar .stars {
  color: var(--blue);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}
.stat-bar .stat-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.3;
}
.stat-bar .stat-text strong { font-weight: 800; }
.ppc-social .t-grid { margin-top: 0; }
.ppc-social .t-card { padding: 28px 26px; }
.ppc-social .t-quote { font-size: 15px; line-height: 1.6; }
.ppc-social .t-attr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.ppc-social .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pale-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.ppc-social .t-attr-stack { display: flex; flex-direction: column; gap: 2px; }
.ppc-social .t-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}
.ppc-social .t-loc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.2;
}
.ppc-social .t-card .t-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(73, 38, 79, 0.08);
  color: var(--purple);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.3;
}
.ppc-social .t-card .t-tag::before {
  content: "✓";
  font-weight: 800;
  color: var(--purple);
}
.ppc-social .t-stars {
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================================
   WHY CST (Section 6) — 3 cards
   ============================================================ */
.ppc-why {
  background: var(--pale);
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 44px;
}
@media (min-width: 850px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.why-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.why-card:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,0.12); }
.why-card .why-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--blue);
  text-transform: uppercase;
}
.why-card h3 {
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
}
.why-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 25px;
  color: var(--body);
  opacity: 0.85;
}
.why-card .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pale-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.why-card .why-icon img { width: 32px; height: 32px; }

/* ============================================================
   FAQ (Section 7) — reuses .faq with PPC styling
   ============================================================ */
.ppc-faq {
  background: var(--white);
  padding: 80px 0;
}
.ppc-faq .faq { max-width: 920px; }
.ppc-faq .faq details {
  border-radius: 12px;
  border: 1px solid rgba(22, 58, 76, 0.18);
  border-top: 1px solid rgba(22, 58, 76, 0.18);
  margin-bottom: 12px;
  padding: 20px 24px;
}
.ppc-faq .faq summary { font-size: 17px; line-height: 1.4; }
.ppc-faq .faq .answer { font-size: 16px; padding-right: 24px; }
.ppc-faq .faq-cta {
  margin: 40px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ppc-faq .faq-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   FINAL CTA BANNER (Section 8) — purple
   ============================================================ */
.ppc-final-cta {
  background: var(--purple);
  color: var(--white);
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ppc-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 88% 80%, rgba(59, 126, 171, 0.28) 0%, transparent 40%);
  pointer-events: none;
}
.ppc-final-cta .wrap { position: relative; z-index: 1; }
.ppc-final-cta h2 {
  color: var(--white);
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ppc-final-cta .lede {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 32px;
  text-wrap: balance;
  font-size: 18px;
}
.ppc-final-cta .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.ppc-final-cta .btn-gold {
  background: var(--white);
  color: var(--purple);
  font-weight: 800;
  padding: 16px 28px;
  font-size: 17px;
  min-height: 54px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ppc-final-cta .btn-gold:hover { background: var(--pale); color: var(--purple); transform: translateY(-1px); }
.ppc-final-cta .phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: var(--radius-btn);
  padding: 15px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  min-height: 54px;
}
.ppc-final-cta .phone-pill:hover { background: rgba(255, 255, 255, 0.2); color: var(--white); }
.ppc-final-cta .phone-pill img { width: 18px; height: 18px; }
.ppc-final-cta .trust-line {
  margin: 28px auto 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  max-width: 60ch;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .ppc-final-cta { padding: 64px 0 72px; }
  .ppc-final-cta h2 { font-size: 30px; }
  .ppc-final-cta .lede { font-size: 16px; }
}

/* ============================================================
   MINIMAL FOOTER
   ============================================================ */
.ppc-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
}
.ppc-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 850px) {
  .ppc-footer .footer-top { grid-template-columns: 1.3fr 2fr; }
}
.ppc-footer .footer-brand img { max-width: 90px; margin-bottom: 16px; }
.ppc-footer .footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
  max-width: 38ch;
}
.ppc-footer .footer-brand .hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}
.ppc-footer .locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .ppc-footer .locations-grid { grid-template-columns: repeat(3, 1fr); } }
.ppc-footer .loc-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ppc-footer .loc-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ppc-footer .loc-pin {
  width: 14px; height: 14px;
  color: var(--powder);
  flex-shrink: 0;
}
.ppc-footer .loc-addr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}
.ppc-footer .also-serving {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}
.ppc-footer .also-serving strong { color: rgba(255, 255, 255, 0.85); font-weight: 700; }
.ppc-footer .legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.ppc-footer .legal-row a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-left: 16px;
}
.ppc-footer .legal-row a:first-of-type { margin-left: 0; }
.ppc-footer .legal-row a:hover { color: var(--white); }

/* ============================================================
   Photo placeholder utility (subtle striped + monospace label)
   ============================================================ */
.photo-ph {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(22, 58, 76, 0.06) 0,
      rgba(22, 58, 76, 0.06) 10px,
      rgba(22, 58, 76, 0.10) 10px,
      rgba(22, 58, 76, 0.10) 20px
    ),
    var(--pale-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
}

/* ============================================================
   Responsive trims
   ============================================================ */
@media (max-width: 900px) {
  .ppc-hero h1 { font-size: 2rem; }
  .ppc-hero .subhead { font-size: 1.05rem; }
}
@media (max-width: 700px) {
  .ppc-hero { padding: 40px 0 48px; }
  .ppc-hero h1 { font-size: 1.7rem; }
  .ppc-hero .subhead { font-size: 1rem; }
  .ppc-hero .lede { font-size: 16px; }
  .ppc-signs, .ppc-steps, .ppc-social, .ppc-why, .ppc-faq { padding: 56px 0; }
  .hero-form-card .form-head { padding: 18px 22px 16px; }
  .hero-form-card .form-head h2 { font-size: 20px; }
  .hero-form-card .form-body { padding: 20px 22px 22px; }
  .ppc-header .wrap { padding: 10px 0; }
  .ppc-header .logo img { max-width: 56px; }
  .steps-row .step-card { padding: 26px 22px; }
  .steps-insurance-line { font-size: 14px; padding: 16px 18px; }
  .ppc-final-cta .btn-gold, .ppc-final-cta .phone-pill { font-size: 16px; padding: 13px 20px; min-height: 50px; }
}

/* Header CTA pill */
.ppc-header .header-cta {
  background: var(--purple);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.ppc-header .header-cta:hover { background: #5e3266; color: var(--white); }

/* Hero testimonial quote — full-width, below the hero grid */
.hero-quote {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 960px;
  margin: 56px auto 4px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-quote .hq-avatar {
  flex-shrink: 0;
  width: 92px; height: 92px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(158,199,228,0.18);
  border: 2px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-quote .hq-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-quote .hq-em { font-style: italic; font-weight: 800; color: var(--powder); }
.hero-quote .hq-body { position: relative; }
.hero-quote .hq-body::before {
  content: "\201C";
  position: absolute;
  top: -34px; left: -10px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: rgba(158,199,228,0.4);
  pointer-events: none;
}
.hero-quote blockquote {
  margin: 0 0 14px;
  font-family: 'Source Serif 4', 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--white);
  text-wrap: pretty;
  border: 0;
}
.hero-quote .hq-attr {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-quote .hq-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.hero-quote .hq-loc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 700px) {
  .hero-quote { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 40px; padding-top: 34px; }
  .hero-quote .hq-avatar { width: 72px; height: 72px; font-size: 24px; }
  .hero-quote blockquote { font-size: 1.15rem; }
  .hero-quote .hq-body::before { top: -26px; font-size: 56px; }
}

/* Hero phone pill — call CTA on the left, on navy */
.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 12px 24px 12px 12px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-phone-pill:hover { background: rgba(255,255,255,0.14); border-color: rgba(158,199,228,0.5); transform: translateY(-1px); }
.hero-phone-pill .hpp-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-phone-pill .hpp-icon svg { width: 20px; height: 20px; }
.hero-phone-pill .hpp-text { display: flex; flex-direction: column; gap: 1px; }
.hero-phone-pill .hpp-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}
.hero-phone-pill .hpp-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
}

/* Hero promise pill — social proof moved out of the form, on navy */
.hero-promise-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--white);
}
.hero-promise-pill .star {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   HERO STATS STRIP (Option 1 — animated counters) · Diamonds page
   Now lives in its own light band below the hero
   ============================================================ */
.ppc-stats-band {
  background: var(--pale);
  border-top: 1px solid var(--pale-deep);
  border-bottom: 1px solid var(--pale-deep);
  padding: 40px 0;
}
.ppc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.phs-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 8px 22px rgba(22,58,76,0.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.phs-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(22,58,76,0.13); }
.phs-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--pale-deep);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.phs-icon svg { width: 24px; height: 24px; }
.phs-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.phs-num .suffix { font-size: 22px; color: var(--blue); }
.phs-label { margin-top: 8px; font-size: 13.5px; line-height: 1.4; color: var(--body); opacity: 0.8; font-weight: 500; }
@media (max-width: 1000px) {
  .ppc-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .ppc-stats-band { padding: 32px 0; }
}
@media (max-width: 520px) {
  .ppc-hero-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO BADGE STRIP (Option 2 — insurance & rating) · Main page
   Full-width row anchoring the bottom of the navy hero
   ============================================================ */
.ppc-hero-badges {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.phb-badge {
  flex: 1 1 0;
  min-width: 210px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.phb-badge:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.26); }
.phb-mark {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800;
}
.phb-mark.bcbs { background: #0067b1; color: #fff; font-size: 13px; letter-spacing: 0.04em; }
.phb-mark.google { background: #fff; border: 1px solid var(--pale-deep); }
.phb-mark.google svg { width: 25px; height: 25px; }
.phb-mark.cert { background: var(--purple); color: #fff; }
.phb-mark.clock { background: var(--blue); color: #fff; }
.phb-mark.cert svg, .phb-mark.clock svg { width: 25px; height: 25px; }
.phb-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.phb-txt .phb-title { font-family:'Poppins',sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); line-height: 1.2; }
.phb-txt .phb-sub { font-size: 13px; color: var(--muted); line-height: 1.3; }
.phb-stars { color: #f5a623; font-size: 15px; letter-spacing: 1px; line-height: 1; }
@media (max-width: 1000px) {
  .ppc-hero-badges { margin-top: 36px; }
  .phb-badge { flex: 1 1 44%; min-width: 0; }
}
@media (max-width: 560px) {
  .phb-badge { flex: 1 1 100%; }
}

/* ============================================================
   TRUST BANNER (under hero) — 4 visual proof points
   ============================================================ */
.trust-banner {
  background: var(--white);
  border-bottom: 1px solid var(--pale-deep);
  padding: 0;
}
.trust-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.trust-banner .trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-left: 1px solid var(--pale-deep);
}
.trust-banner .trust-item:first-child { border-left: none; }
.trust-banner .trust-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pale-deep);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-banner .trust-item-icon svg { width: 26px; height: 26px; }
.trust-banner .trust-item-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-banner .trust-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.25;
  color: var(--navy);
  text-wrap: balance;
}
.trust-banner .trust-item-sub {
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
}
@media (max-width: 980px) {
  .trust-banner-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-banner .trust-item:nth-child(3) { border-left: none; }
  .trust-banner .trust-item:nth-child(3),
  .trust-banner .trust-item:nth-child(4) { border-top: 1px solid var(--pale-deep); }
}
@media (max-width: 560px) {
  .trust-banner-grid { grid-template-columns: 1fr; }
  .trust-banner .trust-item { border-left: none; border-top: 1px solid var(--pale-deep); padding: 18px 20px; }
  .trust-banner .trust-item:first-child { border-top: none; }
}

/* PPC-only: bump section-head eyebrows by 1pt (Codrin's request) */
.ppc-signs .eyebrow,
.ppc-steps .eyebrow,
.ppc-social .eyebrow,
.ppc-why .eyebrow,
.ppc-faq .eyebrow { font-size: 17px; }

/* ============================================================
   PPC button height: +35% across all buttons on the page
   ============================================================ */
.btn {
  min-height: 62px;
  padding: 18px 24px;
}
.ppc-header .header-cta {
  padding: 10px 18px;
}
.hero-form-card .submit-btn {
  min-height: 78px;
  padding: 24px 20px;
}
.ppc-final-cta .btn-gold,
.ppc-final-cta .phone-pill {
  min-height: 73px;
  padding: 22px 28px;
}
.sticky-bar .sticky-call,
.sticky-bar .sticky-book {
  min-height: 73px;
}
@media (max-width: 700px) {
  .btn { padding: 15px 18px; min-height: 56px; }
  .ppc-final-cta .btn-gold,
  .ppc-final-cta .phone-pill { min-height: 68px; padding: 18px 20px; }
  .hero-form-card .submit-btn { min-height: 70px; padding: 20px 18px; }
}
