/* ═══════════════════════════════════════════
   SUPERBAD MEDIA — FUNNEL STYLES
   1970s retro-warm · Melbourne · $297 intro shoot
   ═══════════════════════════════════════════ */

/* ── BRAND TOKENS ── */
:root {
  --red:         #B22848;
  --red-dark:    #8E1F39;
  --cream:       #FDF5E6;
  --warm-white:  #FFF9F0;
  --pink:        #F4A0B0;
  --hot-pink:    #E8466A;
  --orange:      #F28C52;
  --yellow:      #F5D76E;
  --dark-brown:  #3D2B1F;
  --warm-gray:   #8B7E74;
  --soft-black:  #2A1F14;
  --light-gray:  #E8DDD3;

  /* Typography */
  --font-hero:    'Black Han Sans', sans-serif;
  --font-heading: 'Righteous', cursive;
  --font-quote:   'Playfair Display', serif;
  --font-logo:    'Pacifico', cursive;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--warm-white);
  color: var(--dark-brown);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── RETRO DOT TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(178,40,72,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* All content above texture */
section, .page-wrapper, header, main, footer { position: relative; z-index: 1; }

/* ── SHARED SECTION LAYOUT ── */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

@media (min-width: 768px) {
  .section-inner { padding: 100px var(--space-lg); }
}

/* ── SECTION HEADING (Righteous) ── */
.section-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark-brown);
  line-height: 1.3;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-heading { font-size: 36px; }
}

/* ── CTA BUTTONS ── */
.cta-button {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.2s var(--ease-bounce), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(178, 40, 72, 0.25);
}

.cta-button:hover {
  background: var(--hot-pink);
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 30px rgba(178, 40, 72, 0.35);
}

.cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(178, 40, 72, 0.2);
}

.cta-button-inverted {
  display: inline-block;
  background: var(--cream);
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.2s var(--ease-bounce), box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-inverted:hover {
  background: var(--warm-white);
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.cta-button-secondary:hover {
  background: var(--red);
  color: var(--cream);
}

.cta-center { text-align: center; }


/* ═══════════════════════════════════════════
   FUNNEL PROGRESS BAR
   ═══════════════════════════════════════════ */

.funnel-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(139,126,116,0.15);
  padding: 12px var(--space-md);
}

.funnel-progress-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.funnel-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
}

.funnel-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--warm-gray);
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}

.funnel-step.active .funnel-step-dot,
.funnel-step.completed .funnel-step-dot {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 2px 10px rgba(178, 40, 72, 0.3);
}

.funnel-step.completed .funnel-step-dot {
  background: var(--orange);
}

.funnel-step-line {
  flex: 1;
  height: 3px;
  background: var(--light-gray);
  margin: 0 6px;
  border-radius: 2px;
  transition: background 0.4s var(--ease-out);
}

.funnel-step.completed .funnel-step-line {
  background: var(--orange);
}

.funnel-step:last-child .funnel-step-line { display: none; }

.funnel-step-label {
  display: none;
}

@media (min-width: 520px) {
  .funnel-step-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--warm-gray);
    margin-left: 8px;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .funnel-step.active .funnel-step-label {
    color: var(--red);
  }

  .funnel-step.completed .funnel-step-label {
    color: var(--orange);
  }
}

/* Body offset when progress bar is visible */
body.has-funnel-progress {
  padding-top: 56px;
}


/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero { background: var(--cream); }

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero-text { flex: 1; }
  .hero-image { flex: 1; }
}

.hero-logo {
  font-family: var(--font-logo);
  font-size: 24px;
  color: var(--red);
  margin-bottom: 20px;
  display: inline-block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--soft-black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-hero);
  font-size: 36px;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

@media (min-width: 768px)  { .hero-headline { font-size: 52px; } }
@media (min-width: 1024px) { .hero-headline { font-size: 60px; } }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-brown);
  margin-bottom: 8px;
  max-width: 540px;
}

.hero-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 28px;
}

.hero-trust {
  margin-top: 20px;
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.hero-placeholder {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-brown);
  opacity: 0.8;
  position: relative;
  overflow: hidden;
}

.hero-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.03) 0% 25%, transparent 0% 50%) 0 0 / 20px 20px;
}

@media (min-width: 768px) {
  .hero-placeholder { min-height: 400px; }
}


/* ═══════════════════════════════════════════
   THE PROBLEM SECTION
   ═══════════════════════════════════════════ */

.problem { background: var(--warm-white); }

.problem-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.problem-body p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.problem-body p:last-child { margin-bottom: 0; }

.problem-kicker {
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  margin-top: 8px;
}


/* ═══════════════════════════════════════════
   WHAT YOU GET (STEPS)
   ═══════════════════════════════════════════ */

.what-you-get { background: var(--cream); }
.what-you-get .section-heading { text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.step {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.08);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-brown);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-brown);
}


/* ═══════════════════════════════════════════
   QUALIFIER SECTION
   ═══════════════════════════════════════════ */

.qualifier { background: var(--warm-white); }

.qualifier-inner {
  max-width: 720px;
  margin: 0 auto;
  border-left: 4px solid var(--red);
  padding-left: 32px;
}

@media (min-width: 768px) {
  .qualifier-inner { padding-left: 48px; }
}

.qualifier-inner p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.qualifier-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.qualifier-list li {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.qualifier-list li::before {
  content: '— ';
  color: var(--red);
  font-weight: 700;
}


/* ═══════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS
   ═══════════════════════════════════════════ */

.social-proof { background: var(--cream); }
.social-proof .section-heading { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.testimonial-card {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--pink);
  transition: transform 0.3s var(--ease-out);
}

.testimonial-card:nth-child(even) { border-left-color: var(--orange); }
.testimonial-card:hover { transform: translateY(-3px); }

.testimonial-quote {
  font-family: var(--font-quote);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-brown);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
}


/* ═══════════════════════════════════════════
   PROOF POINT (CASE STUDY)
   ═══════════════════════════════════════════ */

.proof-point {
  background: linear-gradient(135deg, rgba(242,140,82,0.1) 0%, rgba(244,160,176,0.1) 100%);
}

.proof-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.proof-body p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .proof-stats { flex-direction: row; justify-content: center; gap: 48px; }
}

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

.proof-stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--red);
  line-height: 1.1;
}

@media (min-width: 768px) { .proof-stat-number { font-size: 48px; } }

.proof-stat-label {
  font-size: 14px;
  color: var(--warm-gray);
  margin-top: 4px;
}

.proof-highlight {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-brown);
}

.proof-disclaimer {
  font-size: 15px;
  color: var(--warm-gray);
  font-style: italic;
}


/* ═══════════════════════════════════════════
   WHAT HAPPENS AFTER
   ═══════════════════════════════════════════ */

.after { background: var(--warm-white); }

.after-body {
  max-width: 680px;
  margin: 0 auto;
}

.after-body p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.after-body p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════ */

.final-cta {
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.02) 0% 25%, transparent 0% 50%) 0 0 / 30px 30px;
  pointer-events: none;
}

.final-cta .section-inner { padding: var(--space-xl) var(--space-md); }

@media (min-width: 768px) {
  .final-cta .section-inner { padding: 100px var(--space-lg); }
}

.final-headline {
  font-family: var(--font-hero);
  font-size: 32px;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px)  { .final-headline { font-size: 44px; } }
@media (min-width: 1024px) { .final-headline { font-size: 52px; } }

.final-sub {
  font-size: 18px;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 32px;
}

.final-micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
}


/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */

.faq { background: var(--warm-white); }
.faq .section-heading { text-align: center; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(139,126,116,0.2);
  cursor: pointer;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--dark-brown);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--red);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-brown);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}


/* ═══════════════════════════════════════════
   FORM ELEMENTS (SURVEY & PAYMENT)
   ═══════════════════════════════════════════ */

.form-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark-brown);
  line-height: 1.3;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .form-title { font-size: 36px; }
}

.form-subtitle {
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-brown);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-brown);
  background: var(--cream);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(178, 40, 72, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7E74' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Radio buttons — retro badge style */
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  background: var(--cream);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
}

.form-radio:hover {
  border-color: var(--pink);
  background: rgba(244, 160, 176, 0.08);
}

.form-radio input[type="radio"] {
  display: none;
}

.form-radio-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease-out);
}

.form-radio-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: scale(0);
  transition: transform 0.25s var(--ease-bounce);
}

.form-radio input[type="radio"]:checked ~ .form-radio-dot {
  border-color: var(--red);
}

.form-radio input[type="radio"]:checked ~ .form-radio-dot::after {
  transform: scale(1);
}

.form-radio input[type="radio"]:checked ~ .form-radio-text {
  color: var(--dark-brown);
  font-weight: 600;
}

.form-radio-text {
  font-size: 16px;
  color: var(--warm-gray);
  transition: all 0.2s;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  background: var(--cream);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
}

.form-checkbox input[type="checkbox"] { display: none; }

.form-checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease-out);
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox-box {
  background: var(--red);
  border-color: var(--red);
}

.form-checkbox input[type="checkbox"]:checked ~ .form-checkbox-box::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

/* Form row (side by side inputs) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 520px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}

.form-back {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--warm-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  transition: color 0.2s;
}

.form-back:hover { color: var(--dark-brown); }

.form-next {
  margin-left: auto;
}

/* Form error */
.form-error {
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
  display: none;
}

.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: var(--red);
}


/* ═══════════════════════════════════════════
   MULTI-STEP FORM TRANSITIONS
   ═══════════════════════════════════════════ */

.form-steps {
  position: relative;
  overflow: hidden;
}

.form-step {
  display: none;
  animation: stepFadeIn 0.4s var(--ease-out) forwards;
}

.form-step.active {
  display: block;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes stepFadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

.form-step.exiting {
  animation: stepFadeOut 0.3s var(--ease-out) forwards;
}


/* ═══════════════════════════════════════════
   PAYMENT PAGE
   ═══════════════════════════════════════════ */

.order-summary {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 32px;
  border: 2px solid var(--light-gray);
}

.order-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.order-item + .order-item {
  border-top: 1px solid rgba(139,126,116,0.12);
}

.order-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.order-text {
  font-size: 16px;
  line-height: 1.5;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid var(--dark-brown);
}

.order-total-label {
  font-weight: 700;
  font-size: 18px;
}

.order-total-price {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--red);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--warm-gray);
}

.trust-badge-icon {
  font-size: 16px;
}


/* ═══════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════ */

.thankyou-hero {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--cream);
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-size: 36px;
  margin-bottom: 24px;
  animation: badgePop 0.6s var(--ease-bounce) 0.2s both;
}

@keyframes badgePop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-headline {
  font-family: var(--font-hero);
  font-size: 32px;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) { .thankyou-headline { font-size: 44px; } }

.thankyou-sub {
  font-size: 18px;
  color: var(--dark-brown);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.next-steps {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.next-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
}

.next-step + .next-step {
  border-top: 1px solid rgba(139,126,116,0.15);
}

.next-step-number {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
}

.next-step-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.next-step-content p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Calendar embed container */
.calendar-section {
  background: var(--cream);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.calendar-embed {
  max-width: 700px;
  margin: 24px auto 0;
  background: var(--warm-white);
  border-radius: 16px;
  min-height: 500px;
  border: 2px solid var(--light-gray);
  overflow: hidden;
}

.calendar-embed iframe {
  width: 100%;
  height: 600px;
  border: none;
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.12s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.18s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════
   PAGE LOAD ANIMATION
   ═══════════════════════════════════════════ */

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

body {
  animation: pageIn 0.5s var(--ease-out) forwards;
}


/* ═══════════════════════════════════════════
   MOBILE POLISH
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
  .cta-button, .cta-button-inverted, .cta-button-secondary {
    display: block;
    text-align: center;
    width: 100%;
  }

  .hero-headline { font-size: 32px; }
  .final-headline { font-size: 28px; }
  .proof-stat-number { font-size: 36px; }
  .section-heading { font-size: 24px; }
  .form-title { font-size: 26px; }
  .thankyou-headline { font-size: 28px; }

  .section-inner { padding: 60px 20px; }
}


/* ═══════════════════════════════════════════
   LOADING SPINNER (for payment redirect)
   ═══════════════════════════════════════════ */

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(253, 245, 230, 0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading .btn-text { display: none; }
.btn-loading .spinner { display: inline-block; }
.cta-button .spinner { display: none; }
