/* =============================================
   offer.css — Public Offer page (coach acquisition)
   ============================================= */

.offer-page {
  position: relative;
  padding: 24px 0 0;
}

/* ── Trial banner ──────────────────────────────────────────── */
.offer-trial {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.offer-trial__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(255,255,0,0.08) 0%, rgba(255,255,0,0.02) 50%, transparent 100%);
  border: 1px solid var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 48px -20px rgba(255,255,0,0.18), 0 8px 24px -16px rgba(0,0,0,0.6);
}
.offer-trial__inner::after {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255,255,0,0.08), transparent 60%),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(0,207,255,0.04), transparent 60%);
}
.offer-trial__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  background: var(--accent);
  color: #000;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 0.85;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-align: center;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(255,255,0,0.35), inset 0 -4px 12px rgba(0,0,0,0.15);
  transform: rotate(-3deg);
}
.offer-trial__copy { min-width: 0; }
.offer-trial__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.offer-trial__desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.offer-trial__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255,255,0,0.22);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.offer-trial__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,0,0.35);
}

@media (max-width: 760px) {
  .offer-trial__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
    gap: 18px;
  }
  .offer-trial__badge { margin: 0 auto; transform: none; }
  .offer-trial__cta { justify-self: center; }
}

/* ── Features section adjustments (uses .seg--coach styling) ── */
.offer-features-section {
  padding-top: 80px;
}
.offer-features-section .coach-features { margin-top: 48px; }

/* ── Pricing CTA note below the main CTA ── */
.offer-pricing__note {
  margin: 14px auto 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── Contact (replaces previous coach-finale on offer page) ── */
.offer-contact {
  position: relative;
  max-width: 640px;
  margin: 80px auto 0;
  padding: 44px 36px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
.offer-contact::before {
  content: '';
  position: absolute; top: -1px; left: 30%; right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .55;
}
.offer-contact::after {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,255,0,0.05) 0%, transparent 60%);
}
.offer-contact__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  background: rgba(255,255,0,0.05);
  color: var(--accent);
  box-shadow: 0 0 24px rgba(255,255,0,0.08) inset;
}
.offer-contact__icon svg { width: 28px; height: 28px; }
.offer-contact__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.offer-contact__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 460px;
  margin: 0 auto 24px;
}
.offer-contact__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  word-break: break-all;
  transition: background .25s, color .25s, box-shadow .25s, transform .25s;
}
.offer-contact__btn:hover {
  background: var(--accent); color: #000;
  box-shadow: 0 0 32px rgba(255,255,0,0.4);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .offer-contact { padding: 36px 22px; }
  .offer-contact__btn { font-size: 12px; padding: 12px 18px; }
}

/* ── Override : bouton "Commencer" — même style que offer-trial__cta ── */
button.coach-pricing__cta {
  background: var(--accent);
  color: #000;
  border: none;
  box-shadow: 0 8px 24px rgba(255,255,0,0.22);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
button.coach-pricing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,0,0.35);
  opacity: 1;
}

/* ── Coach Platform Modal ───────────────────────────────────────── */
@keyframes cpOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cpModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cp-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: cpOverlayIn 0.22s ease forwards;
}
.cp-overlay.is-hidden { display: none; }

.cp-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 36px 32px 32px;
  animation: cpModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cp-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.cp-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: flex; align-items: center; justify-content: center;
}
.cp-modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.cp-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.cp-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--text-1);
  margin: 0 0 6px;
  line-height: 1;
}

.cp-subtitle {
  font-size: 13px;
  color: var(--text-3);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Qty selector grid */
.cp-qty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.cp-qty-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
  user-select: none;
}
.cp-qty-btn:hover {
  border-color: rgba(255,255,0,0.35);
  background: rgba(255,255,0,0.05);
  transform: translateY(-1px);
}
.cp-qty-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,0,0.28);
}
.cp-qty-btn__count {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  color: var(--text-1);
  transition: color 0.18s;
}
.cp-qty-btn.is-active .cp-qty-btn__count { color: #000; }
.cp-qty-btn__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.18s;
}
.cp-qty-btn.is-active .cp-qty-btn__label { color: rgba(0,0,0,0.65); }

/* 50+ option */
.cp-qty-btn--sales {
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
}
.cp-qty-btn--sales .cp-qty-btn__count { font-size: 17px; }
.cp-qty-btn--sales:hover {
  border-color: rgba(255,255,0,0.4);
  border-style: solid;
}

/* Price display */
.cp-price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  min-height: 52px;
}
.cp-price-amount {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 52px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #FFE040, #FFFF00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.cp-price-suffix {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
  padding-bottom: 4px;
}

.cp-proceed-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  box-shadow: 0 6px 20px rgba(255,255,0,0.2);
}
.cp-proceed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,255,0,0.32);
}
.cp-proceed-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* Step 2 — Stripe Elements */
.cp-step-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.18s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cp-step-back:hover { color: var(--text-1); }

.cp-stripe-price-recap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,0,0.05);
  border: 1px solid rgba(255,255,0,0.12);
  border-radius: 8px;
  margin-bottom: 20px;
}
.cp-stripe-price-recap__label {
  font-size: 13px;
  color: var(--text-2);
}
.cp-stripe-price-recap__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
}

#cpPaymentElement { margin-bottom: 16px; }

.cp-error-msg {
  font-size: 13px;
  color: #ff5555;
  margin: 8px 0 0;
  min-height: 18px;
}

/* Step 3 — Contact sales */
.cp-sales-state {
  text-align: center;
  padding: 12px 0 8px;
}
.cp-sales-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,0,0.07);
  border: 1px solid rgba(255,255,0,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
}
.cp-sales-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-1);
  margin: 0 0 10px;
}
.cp-sales-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 24px;
}
.cp-sales-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
}
.cp-sales-btn:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 28px rgba(255,255,0,0.36);
  transform: translateY(-2px);
}

/* Step 4 — Success */
.cp-success-state {
  text-align: center;
  padding: 12px 0 8px;
}
.cp-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0, 200, 100, 0.12);
  border: 1px solid rgba(0, 200, 100, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #00c864;
}
.cp-success-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-1);
  margin: 0 0 8px;
}
.cp-success-body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 26px;
}
.cp-success-cta {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 20px rgba(255,255,0,0.2);
}
.cp-success-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,255,0,0.32);
}

/* Responsive */
@media (max-width: 520px) {
  .cp-modal { padding: 28px 20px 24px; }
  .cp-qty-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .cp-qty-btn { padding: 12px 4px; }
  .cp-qty-btn__count { font-size: 18px; }
}

/* ────────────────────────────────────────────────────────────────
 * Referrer code field (Step 1, optional)
 * ──────────────────────────────────────────────────────────────── */
.cp-referrer-field {
  margin: 20px 0 22px;
  padding: 16px 16px 14px;
  background: rgba(255, 255, 0, 0.02);
  border: 1px dashed rgba(255, 255, 0, 0.18);
  border-radius: 10px;
}

.cp-referrer-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.75);
  margin: 0 0 8px 0;
}

.cp-referrer-label__optional {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 240, 0.35);
  text-transform: none;
  font-size: 11px;
}

.cp-referrer-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cp-referrer-input {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #f5f5f0;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
  letter-spacing: 0.04em;
}

.cp-referrer-input:focus {
  outline: none;
  border-color: rgba(255, 255, 0, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 0, 0.08);
}

.cp-referrer-input::placeholder {
  color: rgba(245, 245, 240, 0.32);
}

.cp-referrer-status {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  margin-top: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.18s;
}

.cp-referrer-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
}

.cp-referrer-status--loading {
  color: rgba(245, 245, 240, 0.4);
}
.cp-referrer-status--loading::before {
  background: rgba(245, 245, 240, 0.4);
  animation: cpReferrerPulse 1s ease-in-out infinite;
}

.cp-referrer-status--ok {
  color: #00FF88;
}
.cp-referrer-status--ok::before {
  background: #00FF88;
  box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
}

.cp-referrer-status--err {
  color: #FF5555;
}
.cp-referrer-status--err::before {
  background: #FF5555;
}

@keyframes cpReferrerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.cp-referrer-hint {
  margin: 8px 0 0 0;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────────
 * Step 0 — Already-subscribed guard
 * ──────────────────────────────────────────────────────────────── */
.cp-current-sub-recap {
  margin: 18px 0 18px;
  padding: 14px 16px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 0, 0.18);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-current-sub-recap__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cp-current-sub-recap__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cp-current-sub-recap__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.45);
}

.cp-current-sub-recap__tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #f5f5f0;
  letter-spacing: 0.02em;
}

.cp-current-sub-recap__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #FFFF00;
  letter-spacing: 0.02em;
}

.cp-current-sub-recap__ending {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFA500;
}

.cp-current-sub-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 245, 240, 0.6);
  margin: 0 0 18px 0;
}

.cp-current-sub-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.cp-current-sub-upgrade-btn {
  width: 100%;
  margin: 0 !important;
}

.cp-current-sub-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.55);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.cp-current-sub-profile-link:hover {
  color: #f5f5f0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* ───────────────────────────────────────────────────────────────
   Tier 50+ "Contact sales" — full-width row below the 5-col grid
   ─────────────────────────────────────────────────────────────── */
.coach-pricing .tier.tier--sales {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 720px;
  margin: 18px auto 36px;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1.5px dashed rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 0, 0.025));
  text-align: center;
  color: #f5f5f0;
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.coach-pricing .tier.tier--sales:hover {
  border-color: rgba(255, 255, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.04), rgba(255, 255, 0, 0.07));
  transform: translateY(-2px);
}

.tier--sales__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 0, 0.4);
  color: #ffff00;
  flex-shrink: 0;
}

.tier--sales__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.tier--sales__count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f5f5f0;
}

.tier--sales__label {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(245, 245, 240, 0.6);
}

.tier--sales__arrow {
  font-size: 22px;
  color: rgba(255, 255, 0, 0.7);
  transition: transform 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}

.coach-pricing .tier.tier--sales:hover .tier--sales__arrow {
  color: #ffff00;
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .coach-pricing .tier.tier--sales {
    padding: 14px 16px;
    gap: 12px;
    margin-top: 14px;
  }
  .tier--sales__icon { width: 36px; height: 36px; }
  .tier--sales__count { font-size: 19px; }
  .tier--sales__label { font-size: 12px; }
}

/* ───────────────────────────────────────────────────────────────
   Trial Confirm / Info Modal
   ─────────────────────────────────────────────────────────────── */
.trial-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: trialFadeIn 0.18s ease;
}

.trial-overlay.is-hidden { display: none; }

@keyframes trialFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.trial-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 38px 28px 26px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: trialSlideUp 0.24s ease;
}

@keyframes trialSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.trial-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: rgba(245, 245, 240, 0.5);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.18s, background 0.18s;
}

.trial-modal__close:hover {
  color: #f5f5f0;
  background: rgba(255, 255, 255, 0.06);
}

.trial-modal__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.trial-modal__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.trial-overlay--confirm .trial-modal__icon {
  color: #ffff00;
  border: 2px solid rgba(255, 255, 0, 0.55);
  box-shadow: 0 0 22px rgba(255, 255, 0, 0.18);
}

.trial-overlay--info .trial-modal__icon {
  color: #5bb6ff;
  border: 2px solid rgba(91, 182, 255, 0.5);
  box-shadow: 0 0 22px rgba(91, 182, 255, 0.18);
  text-transform: lowercase;
}

.trial-modal__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f5f0;
  margin: 0 0 10px;
}

.trial-modal__msg {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(245, 245, 240, 0.72);
  margin: 0 auto 24px;
  max-width: 380px;
}

.trial-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.trial-modal__btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.trial-modal__btn--cancel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 245, 240, 0.7);
}

.trial-modal__btn--cancel:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #f5f5f0;
}

.trial-modal__btn--ok {
  background: #ffff00;
  border: 1px solid #ffff00;
  color: #0a0a0a;
}

.trial-modal__btn--ok:hover {
  background: #ffea00;
  transform: translateY(-1px);
}

.trial-modal__btn--ok:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Info variant : single OK button, hide cancel */
.trial-overlay--info .trial-modal__btn--cancel { display: none; }
.trial-overlay--info .trial-modal__btn--ok {
  background: rgba(91, 182, 255, 0.18);
  border-color: rgba(91, 182, 255, 0.5);
  color: #5bb6ff;
  flex: 0 1 auto;
  min-width: 140px;
}
.trial-overlay--info .trial-modal__btn--ok:hover {
  background: rgba(91, 182, 255, 0.28);
}

@media (max-width: 480px) {
  .trial-modal { padding: 32px 20px 22px; }
  .trial-modal__title { font-size: 21px; }
  .trial-modal__actions { flex-direction: column-reverse; }
  .trial-modal__btn { width: 100%; }
}
