/* ═══════════════════════════════════════════════════
   OPTIMIZED HEALTH — LANDING PAGE SHARED STYLES
   Design System: Precision Vitality
   Scope: /lp/* ad landing pages only
   ═══════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --navy: #1A3663;
  --navy-dark: #111E36;
  --green: #038442;
  --green-hover: #026830;
  --gold: #D4A853;
  --cream: #F7F5F2;
  --cream-dark: #EFEDE9;
  --slate: #5A6A80;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Google Fonts (loaded in HTML <head>) ─── */
/* Playfair Display 400,400i,700 | DM Sans 400,500,700 | Space Grotesk 400,500,700 */

/* ═══════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════ */
.lp-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 54, 99, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.lp-topbar-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1;
}
.lp-topbar-logo em {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}
.lp-topbar-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-topbar-phone:hover { opacity: 1; }
.lp-topbar-phone svg { width: 16px; height: 16px; }

@media (max-width: 480px) {
  .lp-topbar { padding: 0 16px; }
  .lp-topbar-logo { font-size: 18px; }
  .lp-topbar-phone { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════
   HERO SECTION — Split Layout (copy left, photo right)
   ═══════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  padding-top: 56px; /* topbar offset */
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 56px);
  overflow: hidden;
}

/* ─── Left Column: Copy ─── */
.lp-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 5vw;
  background: linear-gradient(
    135deg,
    rgba(10, 16, 30, 0.98) 0%,
    rgba(26, 54, 99, 0.92) 100%
  );
}

/* ─── Right Column: Photo ─── */
.lp-hero-photo {
  position: relative;
  overflow: hidden;
}
.lp-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Left-edge gradient blend */
.lp-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 16, 30, 0.7) 0%,
    rgba(26, 54, 99, 0.3) 25%,
    transparent 50%
  );
  z-index: 1;
}
/* Top/bottom vignette */
.lp-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 30, 0.4) 0%,
    transparent 20%,
    transparent 80%,
    rgba(10, 16, 30, 0.5) 100%
  );
  z-index: 1;
}

/* ─── Glassmorphism Stat Badge ─── */
.lp-hero-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.8s;
}
.lp-hero-badge .badge-stat {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.lp-hero-badge .badge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Hero Eyebrow ─── */
.lp-eyebrow {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  margin-bottom: 24px;
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.1s;
}
.lp-eyebrow .eyebrow-bar {
  width: 3px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}
.lp-eyebrow .eyebrow-content {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.lp-eyebrow .eyebrow-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.3;
}
.lp-eyebrow .eyebrow-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}

/* ─── Hero Headline ─── */
.lp-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}
.lp-hero h1 em {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}

/* ─── Hero Subhead ─── */
.lp-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  margin-bottom: 24px;
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.35s;
}

/* ─── Trust Signals Row ─── */
.lp-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.45s;
}
.lp-trust-row .lp-trust-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Hero CTA ─── */
.lp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.3s;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(3, 132, 66, 0.3);
  position: relative;
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.55s;
}
.lp-hero-cta:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(3, 132, 66, 0.4);
}
.lp-hero-cta svg { width: 16px; height: 16px; }

/* ─── Hero Reassurance ─── */
.lp-hero-reassurance {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: lpFadeUp 0.6s ease forwards;
  animation-delay: 0.65s;
}

/* ─── Mobile: Stack hero, hide photo ─── */
@media (max-width: 768px) {
  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lp-hero-photo {
    display: none;
  }
  .lp-hero-copy {
    padding: 40px 24px 48px;
    text-align: center;
    align-items: center;
  }
  .lp-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .lp-hero-sub {
    max-width: 100%;
  }
  .lp-hero h1 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .lp-trust-row {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════
   QUIZ SECTION
   ═══════════════════════════════════════════════════ */
.lp-quiz-section {
  background: var(--cream);
  padding: 64px 24px 80px;
  border-top: 3px solid var(--green);
}
.lp-quiz-container {
  max-width: 640px;
  margin: 0 auto;
}

/* Progress bar */
.lp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 16px;
}
.lp-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}
.lp-progress-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(90, 106, 128, 0.25);
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.lp-progress-step.completed .lp-progress-dot {
  background: var(--green);
  border-color: var(--green);
}
.lp-progress-step.active .lp-progress-dot {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(3, 132, 66, 0.15);
  animation: lpPulse 1.5s ease-in-out infinite;
}
.lp-progress-line {
  width: 48px;
  height: 2px;
  background: rgba(90, 106, 128, 0.15);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.lp-progress-line.filled {
  background: var(--green);
}
.lp-progress-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0;
  margin-top: 8px;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.lp-progress-step.active .lp-progress-label {
  opacity: 0.6;
}

@media (max-width: 480px) {
  .lp-progress-line { width: 28px; }
  .lp-progress-dot { width: 10px; height: 10px; }
  .lp-progress-label { font-size: 9px; }
}

/* Quiz step container */
.lp-quiz-step {
  display: none;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lp-quiz-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.lp-quiz-step.exit-left {
  display: block;
  opacity: 0;
  transform: translateX(-40px);
}

/* Step question heading */
.lp-quiz-question {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.25;
}

/* Step number label */
.lp-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.5;
  text-align: center;
  margin-bottom: 12px;
}

/* Answer cards grid */
.lp-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-answers.single-col {
  grid-template-columns: 1fr;
}

@media (max-width: 480px) {
  .lp-answers { grid-template-columns: 1fr; }
}

/* Individual answer card */
.lp-answer-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid rgba(26, 54, 99, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}
.lp-answer-card:hover {
  border-color: rgba(3, 132, 66, 0.3);
  border-left: 3px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 54, 99, 0.08);
  padding-left: 17px;
}
.lp-answer-card.selected {
  border-color: var(--green);
  border-left: 3px solid var(--green);
  background: rgba(3, 132, 66, 0.05);
  padding-left: 17px;
}
.lp-answer-card.selected::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Answer card icon */
.lp-answer-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(26, 54, 99, 0.06);
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}
.lp-answer-card.selected .lp-answer-icon {
  background: rgba(3, 132, 66, 0.1);
}

/* Answer card label */
.lp-answer-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
}

/* Multi-select hint */
.lp-multi-hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--slate);
  opacity: 0.6;
  text-align: center;
  margin-bottom: 20px;
}

/* Next/Back buttons */
.lp-quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}
.lp-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  margin-left: auto;
}
.lp-btn-next:hover { background: var(--green-hover); transform: translateY(-1px); }
.lp-btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.lp-btn-next svg { width: 14px; height: 14px; }

.lp-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(90, 106, 128, 0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lp-btn-back:hover { border-color: var(--navy); color: var(--navy); }
.lp-btn-back svg { width: 14px; height: 14px; }

/* Auto-advance for single-select: hide next button */
.lp-quiz-step[data-type="single"] .lp-btn-next { display: none; }

/* ═══════════════════════════════════════════════════
   CONTACT FORM (final quiz step)
   ═══════════════════════════════════════════════════ */
.lp-form-card {
  background: var(--white);
  border: 1px solid rgba(26, 54, 99, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(26, 54, 99, 0.06);
}
.lp-form-intro {
  text-align: center;
  margin-bottom: 32px;
}
.lp-form-intro h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.lp-form-intro p {
  font-size: 14px;
  color: var(--slate);
  opacity: 0.7;
}

.lp-form-group {
  margin-bottom: 20px;
}
.lp-form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.lp-form-group input[type="text"],
.lp-form-group input[type="email"],
.lp-form-group input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid rgba(26, 54, 99, 0.12);
  border-radius: 8px;
  transition: border-color 0.2s;
  outline: none;
}
.lp-form-group input:focus {
  border-color: var(--green);
}
.lp-form-group input.error {
  border-color: #c0392b;
}
.lp-form-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}
.lp-form-group input.error + .lp-form-error { display: block; }

/* Consent checkboxes */
.lp-consent-group {
  margin-bottom: 24px;
}
.lp-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.lp-consent-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer;
}
.lp-consent-item label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate);
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-body);
  font-weight: 400;
}
.lp-consent-item label a {
  color: var(--green);
  text-decoration: underline;
}

/* Submit button */
.lp-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.lp-form-submit:hover { background: var(--green-hover); transform: translateY(-1px); }
.lp-form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.lp-form-submit svg { width: 16px; height: 16px; }

/* Loading spinner state */
.lp-form-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}
.lp-form-submit.loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: lpSpin 0.6s linear infinite;
  margin-left: 8px;
}

/* ═══════════════════════════════════════════════════
   CONFIRMATION STATE
   ═══════════════════════════════════════════════════ */
.lp-confirmation {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.lp-confirmation.visible { display: block; }

.lp-check-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  position: relative;
}
.lp-check-circle svg {
  width: 100%;
  height: 100%;
}
.lp-check-circle .circle-bg {
  fill: none;
  stroke: rgba(3, 132, 66, 0.15);
  stroke-width: 3;
}
.lp-check-circle .circle-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: lpCircleDraw 0.6s ease forwards 0.2s;
}
.lp-check-circle .check-mark {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: lpCheckDraw 0.4s ease forwards 0.7s;
}

.lp-confirmation h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.lp-confirmation p {
  font-size: 15px;
  color: var(--slate);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* What happens next steps */
.lp-next-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto 32px;
  text-align: left;
}
.lp-next-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lp-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(3, 132, 66, 0.1);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-step-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
  padding-top: 5px;
}

/* Learn more link */
.lp-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  transition: gap 0.2s;
}
.lp-learn-more:hover { gap: 10px; }
.lp-learn-more svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════
   DISQUALIFICATION STATE (out-of-state)
   ═══════════════════════════════════════════════════ */
.lp-disqualified {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.lp-disqualified.visible { display: block; }

.lp-disqualified h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.lp-disqualified p {
  font-size: 15px;
  color: var(--slate);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

/* Waitlist mini-form */
.lp-waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.lp-waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid rgba(26, 54, 99, 0.12);
  border-radius: 8px;
  outline: none;
}
.lp-waitlist-form input:focus { border-color: var(--green); }
.lp-waitlist-form button {
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.lp-waitlist-form button:hover { background: var(--navy-dark); }

@media (max-width: 480px) {
  .lp-waitlist-form { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   BELOW-FOLD TRUST SECTION
   ═══════════════════════════════════════════════════ */
.lp-trust-section {
  background: var(--white);
  padding: 64px 24px;
}
.lp-trust-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Testimonial card */
.lp-testimonial {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.lp-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.lp-testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}
.lp-testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 16px;
}
.lp-testimonial-author {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--slate);
  opacity: 0.7;
}

/* Provider card */
.lp-provider-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 560px;
  width: 100%;
}
.lp-provider-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.lp-provider-info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.lp-provider-info p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.45;
}

/* Trust badges row */
.lp-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.6;
}
.lp-badge svg { width: 18px; height: 18px; }
.lp-badge img { height: 32px; width: auto; }

/* Reassurance footer line */
.lp-trust-disclaimer {
  font-size: 12px;
  color: var(--slate);
  opacity: 0.5;
  text-align: center;
  max-width: 520px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .lp-provider-card { flex-direction: column; text-align: center; padding: 24px; }
  .lp-badges { gap: 16px; }
}


/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(3, 132, 66, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(3, 132, 66, 0); }
}
@keyframes lpSpin {
  to { transform: rotate(360deg); }
}
@keyframes lpCircleDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes lpCheckDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes lpBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(3px, 3px); }
}
@keyframes lpCtaGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(3, 132, 66, 0); }
  50% { box-shadow: 0 0 24px rgba(3, 132, 66, 0.35); }
}

/* ═══════════════════════════════════════════════════
   MOBILE STICKY CTA BAR (hero only)
   ═══════════════════════════════════════════════════ */
.lp-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid rgba(26, 54, 99, 0.1);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.lp-sticky-bar.visible { display: flex; gap: 10px; }
.lp-sticky-bar .lp-hero-cta {
  flex: 1;
  justify-content: center;
  margin-bottom: 0;
  opacity: 1;
  animation: none;
  font-size: 14px;
  padding: 14px 16px;
}
.lp-sticky-bar .lp-topbar-phone {
  flex-shrink: 0;
  padding: 14px 16px;
  border: 1px solid rgba(26, 54, 99, 0.15);
  border-radius: 8px;
  font-size: 13px;
  opacity: 1;
}

@media (min-width: 769px) {
  .lp-sticky-bar { display: none !important; }
}
