/* ============================================
   OUTRAGEOUS OFFER WORKSHOP — PREMIUM STYLES
   Mobile-first, clean, fast-loading
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --gold: #C8A44E;
  --gold-light: #E8D5A0;
  --gold-dark: #A8883A;
  --navy: #1A1F36;
  --navy-light: #2D3354;
  --charcoal: #2C2C2C;
  --slate: #4A5568;
  --light-gray: #F7F8FA;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --border: #E2E8F0;
  --success: #48BB78;
  --error: #E53E3E;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 80px;
  --section-pad-mobile: 48px;

  /* Sizing */
  --container: 1120px;
  --container-narrow: 760px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* --- Section Labels --- */
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subhead {
  font-size: 19px;
  color: var(--slate);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border-radius: 8px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200, 164, 78, 0.35);
  animation: btnThrob 2.4s ease-in-out infinite;
}

@keyframes btnThrob {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(200, 164, 78, 0.35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(200, 164, 78, 0.55);
  }
}

.btn-primary:hover {
  animation: none;
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 164, 78, 0.45);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-sub {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-pad-mobile) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(200, 164, 78, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 8px 20px;
  border: 1px solid rgba(200, 164, 78, 0.3);
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.headline-accent {
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 16px;
}

.hero-supporting {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Hero Video */
.hero-video-wrap {
  max-width: 760px;
  margin: 0 auto 32px;
}

.hero-video {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.hero-video-placeholder {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(200, 164, 78, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.hero-video-placeholder:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-video-placeholder .play-btn {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(200, 164, 78, 0.4);
}

.hero .btn-primary {
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SELF-SELECTION
   ============================================ */
.self-select {
  padding: var(--section-pad) 0;
  background: var(--light-gray);
}

.self-select .section-headline {
  text-align: center;
}

.self-select .section-label {
  text-align: center;
}

.select-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.select-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.select-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.select-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(72, 187, 120, 0.1);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.x-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(229, 62, 62, 0.1);
  color: var(--error);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.select-item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
}

.no-card {
  background: var(--off-white);
  border: 1px solid var(--border);
}

.no-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ============================================
   THE PROBLEM
   ============================================ */
.problem {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problem .section-label {
  text-align: center;
}

.problem-content {
  margin-top: 32px;
}

.problem-content p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--charcoal);
}

.problem-lead {
  font-size: 20px !important;
  font-weight: 600;
  color: var(--navy) !important;
}

.problem-questions {
  font-size: 19px !important;
  font-style: italic;
  color: var(--navy) !important;
}

.problem-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 4px solid var(--gold);
}

.problem-callout p {
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.75;
}

.problem-callout strong {
  color: var(--gold-light);
}

.problem-close {
  font-size: 20px !important;
  font-weight: 700;
  color: var(--navy) !important;
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   THE MECHANISM
   ============================================ */
.mechanism {
  padding: var(--section-pad) 0;
  background: var(--light-gray);
}

.mechanism .section-label,
.mechanism .section-headline,
.mechanism .section-subhead {
  text-align: center;
}

.mechanism-intro {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.mechanism-intro p {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.mechanism-bridge {
  font-size: 20px !important;
  font-weight: 600;
  color: var(--navy) !important;
  margin-top: 24px;
}

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

.hour-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hour-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hour-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}

.hour-subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 16px;
}

.hour-card p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hour-result {
  background: rgba(200, 164, 78, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--navy);
}

.hour-infographic {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.hour-infographic img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

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

/* ============================================
   PRIMARY TESTIMONIAL
   ============================================ */
.testimonial-primary {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.testimonial-card-featured {
  text-align: center;
  padding: 48px 36px;
  background: var(--off-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-light);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--navy);
  margin-bottom: 28px;
}

.testimonial-video,
.testimonial-video-thumb {
  margin-bottom: 24px;
}

.video-placeholder {
  background: var(--navy);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
  max-width: 560px;
  margin: 0 auto;
}

.video-placeholder:hover {
  opacity: 0.9;
}

.video-placeholder.small {
  aspect-ratio: 16 / 9;
  max-width: 100%;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  padding-left: 4px;
}

.play-btn.small {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.testimonial-author {
  font-size: 16px;
  color: var(--slate);
}

.testimonial-author strong {
  color: var(--navy);
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.included {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
}

.included .section-label {
  text-align: center;
  color: var(--gold-light);
}

.included .section-headline {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

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

.included-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px;
  transition: background 0.2s;
}

.included-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.included-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.included-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.included-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ============================================
   ABOUT SONIA & JAMES (DUO)
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-duo {
  max-width: 900px;
  margin: 0 auto;
}

.about-duo-photos {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.about-photo-card {
  text-align: center;
  flex: 0 0 auto;
}

.about-photo-card img {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(200, 164, 78, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-photo-card img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-photo-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-photo-label strong {
  font-size: 16px;
  color: var(--navy);
}

.about-photo-label span {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-duo-content {
  text-align: center;
}

.about-duo-content p {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: left;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-tagline {
  font-size: 19px !important;
  color: var(--navy) !important;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 28px;
  text-align: left !important;
}

@media (max-width: 600px) {
  .about-duo-photos {
    gap: 16px;
  }
  .about-photo-card img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
  }
  .about-photo-label strong {
    font-size: 14px;
  }
  .about-photo-label span {
    font-size: 11px;
  }
}

/* ============================================
   WHY DIFFERENT
   ============================================ */
.differentiator {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #0A1628 0%, #162A4A 100%);
  color: #F7F3E9;
}

.differentiator .section-label {
  text-align: center;
  color: var(--gold);
}

.differentiator .section-headline {
  text-align: center;
  color: #FFFFFF;
}

.differentiator p {
  font-size: 17px;
  color: rgba(247, 243, 233, 0.9);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.8;
}

.diff-close {
  font-size: 20px !important;
  color: #FFFFFF !important;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .diff-team {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }
}

/* ============================================
   THE OFFER / REGISTRATION
   ============================================ */
.offer {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.offer .section-label,
.offer .section-headline {
  text-align: center;
}

.offer-content {
  text-align: center;
  margin-bottom: 40px;
}

.offer-content p {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.75;
}

.offer-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}

.offer-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--white);
}

.detail-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
}

.detail-value {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
}

.offer-free {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--gold) !important;
}

/* Registration Form */
.register-form-wrap {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 520px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.optional {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.register-form .btn {
  margin-top: 8px;
}

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* ============================================
   SUPPORTING TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--light-gray);
}

.testimonials .section-label,
.testimonials .section-headline {
  text-align: center;
}

.testimonials .section-headline {
  margin-bottom: 48px;
}

/* Video Testimonials Row */
.video-testimonials-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.video-testimonial-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

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

.video-testimonial-info {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--slate);
  text-align: center;
}

.video-testimonial-info strong {
  color: var(--navy);
}

@media (min-width: 640px) {
  .video-testimonials-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq .section-label,
.faq .section-headline {
  text-align: center;
}

.faq .section-headline {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light-gray);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item[open] {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-item p {
  padding: 0 24px 20px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e2444 50%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  margin-bottom: 12px;
}

.final-sub {
  font-size: 20px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.final-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 48px 0 32px;
  background: #0F1223;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 14px;
}

.footer-brand {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy {
  font-size: 13px;
}

/* ============================================
   TESTIMONIAL THUMBNAIL IMAGES
   ============================================ */
.testimonial-video-thumb img,
.testimonial-video img {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ============================================
   BONUSES IMAGE
   ============================================ */
.bonuses-image {
  margin-top: 48px;
  text-align: center;
}

.bonuses-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

/* ============================================
   FAQ HEADER IMAGE
   ============================================ */
.faq-header-image {
  text-align: center;
  margin-bottom: 32px;
}

.faq-header-image img {
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* ============================================
   VISUAL BREAK / LIFESTYLE IMAGE
   ============================================ */
.visual-break {
  padding: 0;
  overflow: hidden;
  position: relative;
  max-height: 360px;
}

.visual-break img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 31, 54, 0.3) 0%, rgba(26, 31, 54, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-break-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip {
  overflow: hidden;
  background: var(--navy);
  padding: 16px 0;
}

.photo-strip-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  scrollbar-width: none;
}

.photo-strip-scroll::-webkit-scrollbar {
  display: none;
}

.photo-strip-scroll img {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.photo-strip-scroll img:hover {
  transform: scale(1.03);
}

@media (min-width: 960px) {
  .photo-strip-scroll {
    justify-content: center;
    overflow: visible;
    padding: 0 24px;
  }

  .photo-strip-scroll img {
    width: 180px;
    height: 220px;
  }
}

/* ============================================
   INLINE TESTIMONIAL (Sarah style)
   ============================================ */
.testimonial-inline {
  padding: 60px 0;
  background: linear-gradient(135deg, #F7F3E9 0%, #FFF8E7 100%);
}

.testimonial-inline-card {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.testimonial-inline-card .testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 12px;
}

.testimonial-inline-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.testimonial-inline-context {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================
   IMPROVED PROBLEM SECTION TYPOGRAPHY
   ============================================ */
.problem-lead {
  font-family: var(--font-display) !important;
  font-size: clamp(22px, 3vw, 28px) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 24px !important;
}

.problem-questions {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 2.5vw, 24px) !important;
  color: var(--navy) !important;
  text-align: center;
  margin: 32px 0 !important;
}

.problem-close {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 3vw, 26px) !important;
  font-weight: 700 !important;
  color: var(--gold-dark) !important;
  text-align: center;
  margin-top: 32px !important;
}

.problem-callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 32px 0;
}

.problem-callout p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.problem-callout strong {
  color: var(--gold-light);
}

/* ============================================
   MECHANISM SECTION INTRO
   ============================================ */
.mechanism-bridge {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 3vw, 26px) !important;
  font-weight: 700 !important;
  color: var(--gold-dark) !important;
  text-align: center;
  margin-top: 28px !important;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (min-width: 640px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-details {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 960px) {
  :root {
    --section-pad: 100px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-photo-card img {
    width: 260px;
    height: 260px;
  }

  .select-grid {
    grid-template-columns: 2fr 1fr;
  }

  .offer-details {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LOADING STATE / FORM FEEDBACK
   ============================================ */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  animation: none;
}

.btn.loading::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

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

.form-success {
  text-align: center;
  padding: 32px;
  color: var(--white);
}

.form-success h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   UTILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   MOBILE CONVERSION OPTIMIZATION
   ============================================ */

/* Sticky CTA on mobile — always visible */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 639px) {
  /* Sticky bottom CTA bar */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 17px;
    text-align: center;
    justify-content: center;
  }

  /* Add bottom padding so sticky bar doesn't cover content */
  body {
    padding-bottom: 72px;
  }

  /* Tighter hero on mobile */
  .hero {
    padding: 40px 0 36px;
  }

  .hero-headline {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Larger form inputs for thumbs */
  .hero-form .form-group input {
    padding: 16px;
    font-size: 17px;
    border-radius: 10px;
    min-height: 52px;
  }

  .hero-form .btn {
    padding: 18px 24px;
    font-size: 18px;
    min-height: 56px;
  }

  /* Compact sections on mobile */
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-headline {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-subhead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* Photo strip larger swipe targets */
  .photo-strip-scroll img {
    width: 220px;
    height: 260px;
    border-radius: 10px;
  }

  /* Video testimonials full width stacked */
  .video-testimonials-row {
    gap: 16px;
  }

  /* Testimonial inline quote more compact */
  .testimonial-inline-quote {
    font-size: 22px;
  }

  /* Visual break tighter */
  .visual-break {
    height: 200px;
  }

  /* Form section more prominent */
  .register {
    padding: 40px 0;
  }

  /* Problem section mobile typography */
  .problem-lead {
    font-size: 20px;
  }

  .problem-questions {
    font-size: 17px;
  }

  /* Hour cards mobile */
  .hour-card {
    padding: 20px;
  }

  .hour-infographic img {
    border-radius: 8px;
  }

  /* About layout mobile */
  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 280px;
    margin: 0 auto;
  }
}
