/* ==========================================================================
   Coaching checkout — teal / navy / cream
   ========================================================================== */

.checkout-page {
  background: var(--color-sand, #faf8f5);
  min-height: 100vh;
}

.checkout-nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
}

.checkout-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

@media (min-width: 800px) {
  .checkout-nav {
    display: flex;
  }
}

.checkout-hero {
  background: linear-gradient(160deg, var(--color-teal-800) 0%, var(--color-navy-900) 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.checkout-hero .section__eyebrow {
  color: var(--color-teal-500);
}

.checkout-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}

.checkout-hero__lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1.35rem;
}

.checkout-hero__lead strong {
  color: #fff;
  font-weight: 600;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.checkout-trust li::before {
  content: "✓ ";
  color: var(--color-teal-500);
  font-weight: 700;
}

.checkout-trust a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-tiers {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.checkout-grid {
  margin-bottom: 2.5rem;
}

/* Stripe CTA buttons */
.btn--stripe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1.25;
  padding: 1rem 1.25rem;
}

.btn--stripe-sub {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn--primary.btn--stripe:hover {
  color: #fff;
}

/* Live Stripe buttons — not disabled placeholders */
.checkout-page .btn--stripe {
  cursor: pointer;
  text-decoration: none;
}

.checkout-page .price-card--featured .btn--stripe {
  box-shadow: var(--shadow-teal);
}

/* Phase overview */
.checkout-phases {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.checkout-phases__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-navy-900);
  margin: 0 0 1.25rem;
  text-align: center;
}

.checkout-phases__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .checkout-phases__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.checkout-phase {
  padding: 1.15rem 1.25rem;
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
}

.checkout-phase__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal-700);
  margin-bottom: 0.4rem;
}

.checkout-phase h4 {
  font-size: 1.05rem;
  color: var(--color-navy-900);
  margin: 0 0 0.45rem;
}

.checkout-phase p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.checkout-guarantee {
  background: var(--color-teal-50);
  border: 1px solid rgba(13, 115, 119, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.checkout-guarantee h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-navy-900);
  margin: 0 0 0.85rem;
}

.checkout-guarantee ol {
  margin: 0 0 1rem 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.checkout-guarantee li {
  margin-bottom: 0.4rem;
}

.checkout-guarantee p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.checkout-help {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0 1rem;
}

.checkout-help p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 899px) {
  .checkout-page .pricing-grid {
    display: flex;
    flex-direction: column;
  }

  .checkout-page .price-card--featured {
    order: -1;
  }
}
