/* Cards, together section, trust shell, process, final CTA, and footer */
/* ── 9. INSIGHT CARDS — 5-col health concern cards ─────────
       ── 10. LIFESTYLE GRID — 6-col tiles (JS-rendered) ─────── */
.insight-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.lifestyle-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 991px) {
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 580px) {
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 14. TOGETHER — 2-col photo + copy block ──────────────── */
.together-shell {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  align-items: stretch;
}

.together-photo {
  order: 1;
  flex: 0 0 calc(52% - 14px);
  min-width: 0;
  max-width: calc(52% - 14px);
}

.together-copy {
  order: 2;
  flex: 0 0 calc(48% - 14px);
  min-width: 0;
  max-width: calc(48% - 14px);
}

.together-photo {
  min-height: 400px;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.together-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.together-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 39, 51, 0.07);
  box-shadow: var(--shadow-md);
}

.together-copy h2 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 500;
}

.together-copy p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .together-shell {
    flex-direction: column;
  }

  .together-photo,
  .together-copy {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .together-photo {
    min-height: 220px;
    height: 220px;
  }
}

/* ── 15. APOLLO TRUST SHELL — dark teal branded section ───── */
.bullet-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.bullet-item,
.final-point {
  display: flex;
  gap: 10px;
  align-items: start;
  color: #49626d;
}

.bullet-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--raspberry);
  flex: 0 0 auto;
}

.final-point::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}

.apollo-shell-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 40px;
  border-radius: 36px;
  background: linear-gradient(135deg, #0d7390 0%, #095d74 100%);
  color: #fff;
}

.apollo-video-panel {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: #000;
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
  z-index: 2;
}

.video-wrapper:hover .play-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.play-button-icon {
  width: 68px;
  height: 48px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 12px;
  position: relative;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-wrapper:hover .play-button-icon {
  transform: scale(1.1);
  background: #ff0000;
}

.play-button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

.apollo-v2-heading {
  font-size: 32px;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.apollo-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .apollo-trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-mini-card {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.trust-mini-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--raspberry);
  font-weight: 700;
}

.trust-mini-card p {
  font-size: 14px;
  color: #4a5f6a;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .apollo-shell-v2 {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .apollo-video-panel {
    order: 1;
  }

  .apollo-content-panel {
    order: 2;
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
}

.apollo-header {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.apollo-chip {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.apollo-header h2 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
}

.apollo-sub {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.45;
}

.apollo-summary {
  margin: 16px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.75;
}

.apollo-proof-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .apollo-proof-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.apollo-shell .proof-card {
  padding: 24px 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

@media (max-width: 767px) {
  .apollo-shell .proof-card {
    padding: 16px;
  }

  .apollo-shell .proof-card strong {
    font-size: 32px !important;
  }

  .apollo-shell .proof-card span {
    font-size: 13px;
  }
}

.apollo-shell .proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 0.95;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.apollo-shell .proof-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
  margin-top: 0;
}

.apollo-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .apollo-showcase {
    grid-template-columns: 1fr;
  }
}

.apollo-story {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.apollo-story-kicker {
  color: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.apollo-story-copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.apollo-story-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.apollo-story-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
}

.apollo-story-item svg {
  width: 18px;
  height: 18px;
  color: #f4c84a;
  flex: 0 0 auto;
  margin-top: 3px;
}

.apollo-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 767px) {
  .apollo-grid-premium {
    grid-template-columns: 1fr;
  }
}

.apollo-grid-premium .apollo-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  box-shadow: 0 18px 36px rgba(55, 12, 33, 0.12);
}

.apollo-grid-premium .apollo-card p {
  max-width: 26ch;
}

.apollo-social-strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-proof-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.social-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.social-proof-item svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.proof-card {
  text-align: center;
}

.proof-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--raspberry);
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

/* ── 16. PROCESS STEPS — 4-step "how it works" grid ─────── */
.process-card .step-no {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--raspberry-soft);
  color: var(--raspberry);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── 18. FINAL CTA ─ gradient section + lead form panel ───── */
.final-section {
  padding: 40px 0 110px;
  background: linear-gradient(135deg, #005f79, #007c9d 46%, #86194a);
}

.final-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 39, 51, 0.06);
  box-shadow: var(--shadow-lg);
}

.final-copy h2 {
  color: var(--ink);
}

.final-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.final-form {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7fbfc, #edf6f8);
  border: 1px solid #d4e3e8;
}

/* ── 19. FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 30px 0 90px;
  background: #fff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 124, 157, 0.045), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(166, 33, 89, 0.028), transparent 22%),
    radial-gradient(circle at 50% 78%, rgba(0, 124, 157, 0.025), transparent 26%);
  z-index: -1;
}

.section {
  padding: 72px 0;
}

.hero-copy h1 {
  letter-spacing: -0.032em;
  line-height: 0.92;
}

.section-head h2,
.insight-section-head h2,
.apollo-header h2,
.final-copy h2 {
  letter-spacing: -0.04em;
}

.insight-section-head {
  margin-bottom: 56px;
}

.insight-section-head .section-chip,
.section-head .section-chip,
.apollo-header .section-chip {
  margin-inline: auto;
}

.insight-section-head h2 {
  max-width: 11.5ch;
  font-weight: 300;
}

.city-selector-shell {
  margin-bottom: 46px;
}

.city-picker-box {
  position: relative;
  width: min(100%, 760px);
  gap: 14px;
  padding: 18px 20px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 56px rgba(10, 42, 52, 0.09), 0 4px 10px rgba(10, 42, 52, 0.04);
}

.city-picker-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 252, 0.82));
  z-index: 0;
}

.city-picker-copy,
.city-picker-box .field {
  position: relative;
  z-index: 1;
}

.city-picker-copy strong {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.city-picker-copy span {
  max-width: 52ch;
  font-size: 13px;
}

.city-picker-box .field select {
  min-height: 50px;
  border-radius: 18px;
  background: #fff;
}

.pricing-grid {
  align-items: stretch;
  gap: 12px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.pricing-grid.is-refreshing {
  opacity: 0.72;
  transform: translateY(3px);
}

.pricing-card {
  position: relative;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 30px;
  box-shadow: 0 22px 46px rgba(10, 42, 52, 0.07), 0 4px 10px rgba(10, 42, 52, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(10, 42, 52, 0.09), 0 10px 20px rgba(10, 42, 52, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.pricing-card.featured {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 124, 157, 0.16);
}

.pricing-visual {
  border-radius: 24px;
  aspect-ratio: 1 / 0.58;
}

.pricing-card h3 {
  margin: 12px 0 8px;
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.pricing-summary {
  font-size: 11px;
  line-height: 1.46;
}

.test-highlights {
  gap: 8px;
}

.test-highlight {
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
}

.pricing-meta {
  gap: 8px;
}

.pricing-meta span {
  min-height: 30px;
}

.pricing-card-actions {
  gap: 12px;
}

.pricing-card-actions .primary-button,
.pricing-card-actions .secondary-button {
  min-height: 54px;
  border-radius: 18px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.primary-button {
  position: relative;
  overflow: hidden;
}

.primary-button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -120%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: left 360ms ease;
}

.primary-button:hover::after {
  left: 140%;
}

.primary-button:hover,
.sticky-lead:hover {
  transform: translateY(-1px) scale(1.02);
}

.insight-grid {
  gap: 20px;
}

.insight-card {
  border-radius: 32px;
  aspect-ratio: 0.88 / 1;
}

.insight-copy {
  min-height: 166px;
  padding: 24px 18px 20px;
}

.insight-copy h3 {
  font-size: 1.16rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.insight-copy .secondary-button {
  min-width: 156px;
  min-height: 48px;
  border-radius: 16px;
  font-size: 15px;
}

.apollo-card h3,
.process-card h3,
.coverage-card h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.apollo-proof-row,
.apollo-showcase,
.coverage-grid,
.process-grid {
  margin-top: 28px;
}

/* ── HOW IT WORKS SECTION ────────────────────────────────── */
.how-section {
  padding: 40px 0;
  background: #fff;
}

.how-section h2 {
  margin-block-start: 0;
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.how-media {
  height: 400px;
}

.how-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(10, 42, 52, 0.12);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 400px;
}

.how-steps::before {
  display: none;
}

.how-step {
  background: #fff;
  padding: 24px 28px;
  border-radius: 32px;
  border: 1px solid rgba(0, 124, 157, 0.08);
  box-shadow: 0 15px 30px rgba(0, 124, 157, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 124, 157, 0.12);
}

.how-step-marker {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.how-step-body h4 {
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
}

.how-step-body p {
  color: #5e7681;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .how-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
  }

  .how-media {
    height: auto;
    order: -1;
  }

  .how-media img {
    height: auto;
    border-radius: 24px;
  }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
    gap: 12px;
  }

  .how-step {
    padding: 16px;
    border-radius: 20px;
    gap: 12px;
  }

  .how-step-marker {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 6px;
  }

  .how-step-body h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .how-step-body p {
    font-size: 12px;
    line-height: 1.4;
  }
}