/* ============================================================
   BLITZ — page-specific overrides on top of ../styles.css
   ============================================================ */

html { scroll-behavior: smooth; }

.blitz-body { scroll-padding-top: 72px; }

/* ===== HERO ===== */
.blitz-hero { padding: 128px 24px 72px; }

.blitz-hero .hero__title { margin-top: 24px; }
.blitz-hero .hero__sub { margin-top: 20px; }

.blitz-hero__reel {
  margin: 40px auto 0;
  max-width: 320px;
  width: 100%;
}
.blitz-hero__reel .video-container {
  aspect-ratio: 9 / 16;
}

.blitz-hero__ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.blitz-hero__ctas .btn { margin-top: 0; }
.blitz-hero__ctas--single { flex-direction: column; align-items: center; }

/* Trust strip beneath CTAs */
.blitz-trust-strip {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  letter-spacing: 0.02em;
}
.blitz-trust-strip span { white-space: nowrap; }

/* ===== SAMPLE REELS — tier labels above each reel ===== */
.reel-tier-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}
.reel-tier-label--gold {
  background: linear-gradient(135deg, #B8893A, #E0B45F);
  color: #1a1408;
}
.reel-tier-label--bronze {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* ===== STUDIO + PROCESS ===== */
.blitz-studio-addr {
  display: block;
  font-style: normal;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.blitz-studio-photo {
  margin: 40px 0 64px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(22, 53, 114, 0.25);
}
.blitz-studio-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 1066;
  object-fit: cover;
}

/* ===== PREVIEW GUARANTEE — soft callout box ===== */
.blitz-guarantee {
  background: linear-gradient(180deg, rgba(22, 53, 114, 0.10), rgba(22, 53, 114, 0.02));
  border: 1px solid rgba(30, 90, 170, 0.25);
  border-radius: 16px;
  padding: 48px 32px;
}

/* ===== SCARCITY BAR ===== */
.blitz-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.blitz-scarcity strong { color: var(--text-primary); font-weight: 600; }
.blitz-scarcity__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
  animation: blitzPulse 2s ease-in-out infinite;
}
@keyframes blitzPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ===== FAQ EMAIL FORM ===== */
.blitz-email-form {
  margin-top: 16px;
  text-align: left;
}
.blitz-email-form__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blitz-email-form__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blitz-email-form__input {
  flex: 1 1 220px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 200ms ease, background 200ms ease;
}
.blitz-email-form__input:focus {
  outline: none;
  border-color: var(--sapphire-accent, #1E5AAA);
  background: rgba(255, 255, 255, 0.06);
}
.blitz-email-form__btn {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: 15px;
}
.blitz-email-form__hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.blitz-email-form.is-success .blitz-email-form__row { display: none; }
.blitz-email-form.is-success .blitz-email-form__hint {
  color: var(--text-secondary);
}

/* ===== FINAL CTA AT BOTTOM OF FAQ ===== */
.blitz-final-cta {
  margin-top: 56px;
  text-align: center;
}

/* ===== STICKY CTA — mobile only on /blitz ===== */
@media (min-width: 769px) {
  .blitz-body .sticky-cta { display: none !important; }
}

/* ===== WELCOME (blitz/welcome) ===== */
.blitz-welcome {
  min-height: 100vh;
  background: var(--bg-void);
  padding: 112px 24px 64px;
  position: relative;
  overflow: hidden;
}
.blitz-welcome__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.blitz-welcome__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5.5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 24px;
}
.blitz-welcome__body {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 560px;
  margin: 24px auto 0;
}
.blitz-welcome__media {
  margin: 48px auto 0;
  max-width: 320px;
  width: 100%;
}
.blitz-welcome__media .video-container {
  aspect-ratio: 9 / 16;
}

.blitz-welcome-checklist {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 520px;
  text-align: left;
  display: grid;
  gap: 16px;
}
.blitz-welcome-checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.55;
}
.blitz-welcome-checklist__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #163572, #1E5AAA);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(30, 90, 170, 0.5);
  margin-top: 2px;
}
.blitz-welcome__signoff {
  margin-top: 56px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--text-primary);
}
.blitz-welcome__signature {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== RESERVE PAGE (/blitz/reserve) ===== */
.blitz-body--reserve { background: var(--bg-void); }

.reserve-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 24px;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.reserve-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.reserve-header__logo img { display: block; height: 28px; width: auto; }

.reserve {
  position: relative;
  padding: 40px 20px 80px;
  overflow: hidden;
}
.reserve__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30, 90, 170, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.reserve__shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* Top bar — full-width scarcity + urgency above the two columns */
.reserve-topbar {
  text-align: center;
  margin-bottom: 28px;
}
.reserve__scarcity { margin: 0 auto 10px; }
.reserve__urgency {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0;
}

/* Two-column grid (desktop ≥1024) — proof | action */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .reserve-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
  .reserve-action {
    position: sticky;
    top: 88px;
  }
}

/* ===== PROOF COLUMN ===== */
.reserve-proof { display: grid; gap: 24px; }
.reserve-proof__heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 26px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}
.reserve-proof__testimonial { display: grid; gap: 16px; }
.reserve-proof__reels {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.reserve-proof__reel { display: grid; gap: 8px; }
.reserve-proof__reel .reel-tier-label { margin-bottom: 0; align-self: start; justify-self: start; }
.reserve-proof__reel .video-container { aspect-ratio: 9 / 16; }
.reserve-proof__reel .reel-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Trust quote with stars (also used standalone) */
.reserve-trust {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0;
  text-align: center;
}
.reserve-trust__stars {
  color: #F5C75A;
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.reserve-trust__quote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.reserve-trust__attr {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== ACTION COLUMN ===== */
.reserve-action__header { margin-bottom: 24px; }
.reserve__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
}
.reserve__sub {
  font-size: clamp(14px, 1.7vw, 16px);
  color: var(--text-body);
  margin: 10px 0 0;
}

/* Form fields */
.reserve-form {
  display: grid;
  gap: 14px;
  text-align: left;
  margin-bottom: 24px;
}
.reserve-field { display: grid; gap: 6px; }
.reserve-field__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reserve-field__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.reserve-field__input::placeholder { color: rgba(255, 255, 255, 0.32); }
.reserve-field__input:focus {
  outline: none;
  border-color: #1E5AAA;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(30, 90, 170, 0.18);
}
.reserve-field__input.is-invalid {
  border-color: #E66B6B;
  box-shadow: 0 0 0 3px rgba(230, 107, 107, 0.18);
}
.reserve-field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%), linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.reserve-form__error {
  margin: 0;
  font-size: 13px;
  color: #F08A8A;
  letter-spacing: 0.01em;
}

/* ===== TIER ACCORDIONS ===== */
.reserve-pricing__heading {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.reserve-tiers {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.tier-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.tier-card--gold {
  background: linear-gradient(180deg, rgba(184, 137, 58, 0.12), rgba(224, 180, 95, 0.04));
  border-color: rgba(224, 180, 95, 0.32);
}
.tier-card--gold.is-expanded { box-shadow: 0 0 32px rgba(224, 180, 95, 0.18); }
.tier-card--bronze.is-expanded { border-color: rgba(255, 255, 255, 0.24); }

/* The action button (the actual CTA) */
.tier-card__cta {
  position: relative;
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #163572, #1E5AAA);
  border: 0;
  border-radius: 8px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  box-shadow: 0 0 24px rgba(30, 90, 170, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}
.tier-card__cta:hover:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(30, 90, 170, 0.55);
}
.tier-card__cta[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(0.15);
  box-shadow: none;
}
.tier-card__cta.is-loading { opacity: 0.7; cursor: wait; }
.tier-card__cta-text { display: inline-block; }
.tier-card--gold .tier-card__cta {
  background: linear-gradient(135deg, #B8893A, #E0B45F);
  color: #1a1408;
  box-shadow: 0 0 24px rgba(224, 180, 95, 0.35);
}
.tier-card--gold .tier-card__cta:hover:not([disabled]) {
  box-shadow: 0 0 36px rgba(224, 180, 95, 0.55);
}

/* "Most Popular" badge — top-right of the card */
.tier-card__badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(135deg, #B8893A, #E0B45F);
  color: #1a1408;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.tier-card__summary {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text-body);
  text-align: center;
}
.tier-card__nudge {
  margin: 4px 0 0;
  font-size: 12px;
  color: #E0B45F;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Toggle row */
.tier-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 8px 12px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 180ms ease;
}
.tier-card__toggle:hover { color: var(--text-secondary); }
.tier-card__toggle-icon {
  display: inline-block;
  transition: transform 220ms ease;
  font-size: 14px;
  line-height: 1;
}
.tier-card.is-expanded .tier-card__toggle-icon { transform: rotate(180deg); }

/* Details panel — animated max-height */
.tier-card__details {
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease;
}
.tier-card.is-expanded .tier-card__details {
  /* JS sets max-height to scrollHeight; this rule just ensures the element is visible */
}
.tier-card__details-label {
  margin: 14px 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tier-card__list {
  margin: 0 0 14px;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}
.tier-card__list li { margin-bottom: 4px; }
.tier-card__cta--repeat { margin-top: 4px; }

.reserve-trust-strip {
  margin: 8px 0 18px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
}
.reserve-whatsapp {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.reserve-whatsapp a { color: var(--text-secondary); }
.reserve-whatsapp a:hover { color: #fff; }

/* ===== Client metric tiles ===== */
.reserve-metrics {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
}
.reserve-metrics__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.reserve-metrics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.reserve-metric {
  background: rgba(22, 53, 114, 0.18);
  border: 1px solid rgba(30, 90, 170, 0.28);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.reserve-metric__value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.05;
}
.reserve-metric__label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}
.reserve-metrics__footnote {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
  font-style: italic;
}

/* ===== "More client reels" sub-block ===== */
.reserve-proof__samples-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Mini value-stack anchor (inside action column) ===== */
.reserve-anchor {
  background: linear-gradient(180deg, rgba(22, 53, 114, 0.14), rgba(22, 53, 114, 0.04));
  border: 1px solid rgba(30, 90, 170, 0.28);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.reserve-anchor__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reserve-anchor__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.reserve-anchor__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.4;
}
.reserve-anchor__list li em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 12px;
  margin-left: 4px;
}
.reserve-anchor__check {
  color: #1E5AAA;
  font-weight: 700;
  font-size: 13px;
}
.reserve-anchor__totals {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.reserve-anchor__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--text-body);
}
.reserve-anchor__strike {
  color: var(--text-muted);
  text-decoration: line-through;
}
.reserve-anchor__row--price {
  font-size: 16px;
  margin-top: 2px;
  color: var(--text-primary);
  font-weight: 600;
}
.reserve-anchor__price {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* ===== Funnel progress strip (1→6 step tracker) ===== */
.funnel-progress {
  list-style: none;
  margin: 0 auto 32px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.funnel-progress__step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}
.funnel-progress__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.funnel-progress__step.is-done {
  color: var(--text-secondary);
}
.funnel-progress__step.is-done .funnel-progress__num {
  background: rgba(30, 90, 170, 0.4);
  color: var(--text-primary);
}
.funnel-progress__step.is-current {
  background: linear-gradient(135deg, rgba(22, 53, 114, 0.65), rgba(30, 90, 170, 0.65));
  color: var(--text-primary);
}
.funnel-progress__step.is-current .funnel-progress__num {
  background: var(--text-primary);
  color: #163572;
}
.funnel-progress__label { white-space: nowrap; }

@media (max-width: 768px) {
  .funnel-progress {
    border-radius: 16px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
  }
  .funnel-progress__step {
    justify-content: flex-start;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 8px;
  }
  /* On mobile, only show the current + adjacent steps to keep the strip compact. */
  .funnel-progress__step:not(.is-current):not(.is-done) {
    display: none;
  }
  .funnel-progress__step:not(.is-current):not(.is-done):nth-of-type(-n+3) {
    display: flex;
    opacity: 0.6;
  }
}

/* ===== "Lock In My Reservation" submit button ===== */
.reserve-submit {
  margin-top: 18px;
  padding: 18px 28px;
  font-size: 16px;
}
.reserve-submit:disabled, .reserve-submit.is-loading {
  opacity: 0.7;
  cursor: wait;
  filter: saturate(0.7);
}
.reserve-step__safety {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}
.reserve-step__safety svg { color: #6FA3E8; flex-shrink: 0; }

/* "What happens next" journey list inside Step 2 */
.reserve-journey {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.reserve-journey li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
}
.reserve-journey li strong { color: var(--text-primary); }
.reserve-journey__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(30, 90, 170, 0.4);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}

/* ===== Step headings ===== */
.reserve-step { margin: 22px 0 12px; }
.reserve-step--submit {
  background: rgba(30, 90, 170, 0.10);
  border: 1px solid rgba(30, 90, 170, 0.32);
  border-radius: 12px;
  padding: 18px 20px 20px;
  margin-top: 26px;
  margin-bottom: 14px;
}
.reserve-step__num {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1E5AAA;
}
.reserve-step--submit .reserve-step__num { color: #6FA3E8; }
.reserve-step__title {
  margin: 0 0 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 19px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.25;
}
.reserve-step__sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}
.reserve-step__sub strong { color: var(--text-primary); }

/* ============================================================
   CHECKOUT PAGE (/blitz/checkout)
   ============================================================ */
.checkout__shell { max-width: 920px; }
.checkout__title {
  margin: 8px 0 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  text-align: center;
}
.checkout__sub {
  margin: 0 auto 32px;
  max-width: 540px;
  font-size: 15px;
  color: var(--text-body);
  text-align: center;
  line-height: 1.55;
}

.checkout-tiers {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .checkout-tiers { grid-template-columns: 1fr 1fr; }
}

.checkout-tier {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.checkout-tier--gold {
  background: linear-gradient(180deg, rgba(184, 137, 58, 0.14), rgba(224, 180, 95, 0.04));
  border-color: rgba(224, 180, 95, 0.36);
  box-shadow: 0 0 32px rgba(224, 180, 95, 0.18);
}
.checkout-tier__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #B8893A, #E0B45F);
  color: #1a1408;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 999px;
}
.checkout-tier__label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.checkout-tier__price {
  margin: 0 0 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.05;
}
.checkout-tier__sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-body);
}
.checkout-tier__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
  display: grid;
  gap: 8px;
}
.checkout-tier__list li {
  position: relative;
  padding-left: 22px;
}
.checkout-tier__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #6FA3E8;
  font-weight: 700;
}
.checkout-tier--gold .checkout-tier__list li::before { color: #E0B45F; }

.checkout-tier__cta {
  margin-top: auto;
  padding: 16px 22px;
  font-size: 16px;
}
.checkout-tier--gold .checkout-tier__cta {
  background: linear-gradient(135deg, #B8893A, #E0B45F);
  color: #1a1408;
  box-shadow: 0 0 24px rgba(224, 180, 95, 0.4);
}
.checkout-tier--gold .checkout-tier__cta:hover {
  box-shadow: 0 0 36px rgba(224, 180, 95, 0.6);
}
.checkout-tier__cta:disabled, .checkout-tier__cta.is-loading {
  opacity: 0.65;
  cursor: wait;
  filter: saturate(0.7);
}
.checkout-tier__nudge {
  margin: 10px 0 0;
  font-size: 12px;
  color: #E0B45F;
  text-align: center;
  letter-spacing: 0.02em;
}

.checkout__safety {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.checkout__safety svg { color: #6FA3E8; }

.checkout__noscript {
  margin: 18px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.checkout__noscript a { color: var(--text-secondary); }
.checkout__noscript a:hover { color: #fff; }

/* On mobile, swap order so Gold (popular) appears above Bronze */
@media (max-width: 767px) {
  .checkout-tiers { display: flex; flex-direction: column; }
  .checkout-tier--gold { order: 1; }
  .checkout-tier--bronze { order: 2; }
}

/* ===== Mobile order: scarcity → headline → proof block (testimonial/metrics/samples) → anchor → step1 → form → step2 → tiers ===== */
@media (max-width: 1023px) {
  .reserve-grid { gap: 28px; }
  .reserve-action { display: contents; }
  .reserve-action__header { order: 1; margin: 0; }
  .reserve-proof { order: 2; }
  .reserve-anchor { order: 3; margin-bottom: 0; }
  .reserve-step[data-step="1"] { order: 4; }
  .reserve-form { order: 5; margin-top: 0; }
  .reserve-step[data-step="2"] { order: 6; }
  .reserve-tiers { order: 7; }
  .reserve-trust-strip { order: 8; }
  .reserve-whatsapp { order: 9; }
}

@media (min-width: 1024px) {
  .reserve-metrics__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .blitz-hero { padding: 104px 20px 56px; }
  .blitz-hero__ctas .btn { width: 100%; }
  .blitz-email-form__btn { width: 100%; }

  .reserve { padding: 28px 18px 64px; }
  .reserve-proof__reels { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tier-card__cta { font-size: 15px; }
}

@media (max-width: 420px) {
  .reserve-proof__reels { grid-template-columns: 1fr; }
}
