/* ==========================================================================
   'Back to You' by Kim Karlsson — Premium Modern Feminine Frosted Glass Theme
   Palette: Warm Linen White, Obsidian Charcoal, Vibrant PilatesCORE Red
   ========================================================================== */

:root {
  /* Colors */
  --bg: #FDFBF9;               /* Clean warm porcelain / linen white */
  --bg-card: #FFFFFF;
  --bg-subtle: #F6F3EF;         /* Soft warm grey-linen */
  --text-main: #18181B;        /* Deep obsidian black */
  --text-body: #27272A;        /* Crisp dark grey */
  --text-muted: #52525B;       /* Secondary neutral */
  --text-light: #71717A;       /* Subtle neutral */
  
  /* Brand PilatesCORE Red */
  --red-primary: #E53935;      /* Vibrant signature red */
  --red-dark: #C62828;         /* Deep crimson */
  --red-deep: #B71C1C;
  --red-glow: rgba(229, 57, 53, 0.38);
  --red-soft: #FFF1F2;         /* Soft rose blush */
  --red-soft-border: rgba(229, 57, 53, 0.22);
  
  /* Frosted Glass */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-bg-hover: rgba(255, 255, 255, 0.96);
  --glass-border: 1px solid rgba(229, 57, 53, 0.16);
  --glass-border-subtle: 1px solid rgba(24, 24, 27, 0.08);
  --glass-shadow: 0 16px 40px -6px rgba(24, 24, 27, 0.06), 0 4px 16px -2px rgba(229, 57, 53, 0.04);
  --glass-shadow-hover: 0 24px 48px -4px rgba(24, 24, 27, 0.1), 0 8px 24px -2px rgba(229, 57, 53, 0.12);
  
  /* Radii & Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --container: 1280px;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ==========================================================================
   Sticky Topbar (Frosted Glass)
   ========================================================================== */
.topbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--glass-border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(24, 24, 27, 0.03);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-frame {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(229, 57, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(24, 24, 27, 0.04);
}

.brand-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-name span {
  color: var(--red-primary);
}

.brand-tag {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--red-soft);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--red-soft-border);
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
  animation: pulse-dot-red 2s infinite;
}

@keyframes pulse-dot-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* ==========================================================================
   Hero Section: Split 60/40 with Frosted Glass
   ========================================================================== */
.hero {
  padding: 3rem 0 4.25rem;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 57, 53, 0.08), transparent 60%),
    radial-gradient(circle at 15% 70%, rgba(229, 57, 53, 0.04), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(24, 24, 27, 0.03), transparent 50%);
  border-bottom: var(--glass-border-subtle);
  position: relative;
  overflow: hidden;
}

.hero-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

/* ICP Eyebrow Badge */
.icp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--red-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid var(--red-soft-border);
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.12);
}

.icp-eyebrow-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-primary);
}

/* Headline - large, bold, high-impact font size from original design */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.8vw, 3.45rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.14;
  letter-spacing: -0.03em;
  max-width: 1220px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-headline .highlight {
  color: var(--red-primary);
  position: relative;
  display: inline-block;
}

.hero-headline .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: rgba(229, 57, 53, 0.22);
  border-radius: 3px;
  z-index: -1;
}

/* Superheadline / Subhead */
.hero-subhead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.55;
}

.hero-subhead strong {
  color: var(--text-main);
  font-weight: 700;
}

/* 60/40 Split Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 56% 44%;
    gap: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Left Column: High-Converting Video / Consultation Preview Stage
   -------------------------------------------------------------------------- */
.vsl-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vsl-card:hover {
  box-shadow: var(--glass-shadow-hover);
}

.vsl-header {
  background: #FFFFFF;
  color: var(--text-main);
  padding: 0.85rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(229, 57, 53, 0.12);
}

.vsl-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vsl-header-left::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--red-primary);
  border-radius: 50%;
}

.vsl-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #181418;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

/* Kim's Featured Image & Backdrop */
.vsl-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: blur(2px);
  transform: scale(1.04);
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.vsl-stage:hover .vsl-bg-img {
  opacity: 0.5;
  transform: scale(1.08);
}

.vsl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 24, 0.4) 0%, rgba(24, 20, 24, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #FFFFFF;
  text-align: center;
  padding: 1.5rem;
}

.play-button-ring {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(229, 57, 53, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vsl-stage:hover .play-button-ring {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(229, 57, 53, 0.5);
}

.play-arrow {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--red-primary);
  margin-left: 4px;
}

.vsl-overlay-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.25;
  max-width: 420px;
}

.vsl-overlay-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.vsl-play-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: #FFFFFF;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px var(--red-glow);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vsl-stage:hover .vsl-play-btn-pill {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--red-glow);
}

.vsl-caption {
  padding: 0.85rem 1.35rem;
  background: #FFFFFF;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(229, 57, 53, 0.1);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Right Column: Value Card with 5 Feature-to-Benefit Bullets & CTA
   -------------------------------------------------------------------------- */
.value-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.85rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  position: relative;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  border-radius: 2px;
}

.value-card-header {
  border-bottom: 1px solid rgba(229, 57, 53, 0.14);
  padding-bottom: 0.95rem;
}

.value-card-tag {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.25rem;
}

.value-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

/* 5 Feature-to-Benefit Bullets */
.selling-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.selling-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.48;
  color: var(--text-body);
}

.point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--red-soft);
  color: var(--red-primary);
  border: 1.5px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

.selling-point-item strong {
  color: var(--text-main);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Primary High-Converting CTA Button (Pulsing Red with Shimmer)
   -------------------------------------------------------------------------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(135deg, #FF3B30 0%, #E53935 50%, #C62828 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 28px var(--red-glow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap !important; /* STRICTLY ONE LINE */
  text-overflow: ellipsis;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: cta-glow-pulse 3.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateX(-100%);
  animation: cta-shimmer 4.5s infinite;
}

@keyframes cta-glow-pulse {
  0%, 100% {
    box-shadow: 0 10px 28px rgba(229, 57, 53, 0.35);
  }
  50% {
    box-shadow: 0 14px 38px rgba(229, 57, 53, 0.6), 0 0 20px rgba(255, 59, 48, 0.45);
  }
}

@keyframes cta-shimmer {
  0%, 70% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.btn-cta:hover {
  background: linear-gradient(135deg, #FF453A 0%, #EF4444 50%, #DC2626 100%);
  box-shadow: 0 14px 38px rgba(229, 57, 53, 0.55);
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(1px);
}

/* Subtext Under Button */
.cta-subtext {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  margin-top: -0.35rem;
}

/* Rating & Guarantee Badges */
.cta-proof-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: -0.1rem;
}

.stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}

.deposit-reassurance {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(229, 57, 53, 0.28);
}

/* ==========================================================================
   "Meet Kim" Authority & Story Section
   ========================================================================== */
.about-kim-section {
  padding: 4.5rem 0 5rem;
  background: #FFFFFF;
  border-bottom: var(--glass-border-subtle);
  position: relative;
  overflow: hidden;
}

.about-kim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .about-kim-grid {
    grid-template-columns: 38% 62%;
    gap: 3.5rem;
  }
}

/* Kim's Photo Card */
.kim-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
}

.kim-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(24, 24, 27, 0.12);
  border: 3px solid #FFFFFF;
}

.kim-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kim-verified-pill {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(24, 24, 27, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.kim-meta-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.kim-meta-creds {
  font-size: 0.82rem;
  color: var(--red-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.kim-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.kim-stat-box {
  background: var(--bg-subtle);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 24, 27, 0.06);
}

.kim-stat-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red-dark);
  line-height: 1;
}

.kim-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
  line-height: 1.2;
}

/* Kim's Narrative */
.kim-story-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red-soft);
  color: var(--red-dark);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
  border: 1px solid var(--red-soft-border);
}

.story-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.story-quote-highlight {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--red-soft);
  border-left: 4px solid var(--red-primary);
  padding: 1rem 1.35rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-weight: 500;
}

.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-body);
}

.story-paragraphs strong {
  color: var(--text-main);
  font-weight: 700;
}

.kim-story-cta-wrap {
  margin-top: 0.75rem;
}

/* ==========================================================================
   Social Proof: Verified Reviews Carousel
   ========================================================================== */
.proof-section {
  padding: 4.25rem 0 4.75rem;
  background: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(229, 57, 53, 0.06), transparent 70%);
  border-bottom: var(--glass-border-subtle);
  overflow: hidden;
}

.section-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.google-authority-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--red-soft-border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  max-width: 480px;
  margin: 0 auto 1.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.04);
}

.google-g-icon {
  font-weight: 900;
  color: #4285F4;
  font-size: 1.05rem;
}

.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-primary);
  display: inline-block;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Carousel Track */
.carousel-wrapper {
  position: relative;
  margin: 0 auto;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(229, 57, 53, 0.25);
  box-shadow: 0 4px 12px rgba(24, 24, 27, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-main);
  transition: all 0.18s ease;
}

.carousel-btn:hover {
  background: var(--red-soft);
  color: var(--red-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--red-glow);
}

.carousel-track {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 calc(100% - 1.5rem);
  max-width: 370px;
  scroll-snap-align: start;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-slide:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover);
}

@media (min-width: 768px) {
  .review-slide {
    flex: 0 0 calc(50% - 1rem);
    max-width: 420px;
  }
}

@media (min-width: 1040px) {
  .review-slide {
    flex: 0 0 calc(33.333% - 0.95rem);
  }
}

.slide-stars-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  background: #FFFFFF;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  border: 1px solid rgba(24, 24, 27, 0.08);
}

.slide-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.58;
}

.slide-quote strong {
  color: var(--text-main);
  background: rgba(229, 57, 53, 0.12);
  padding: 0.1rem 0.25rem;
  border-radius: 3px;
  font-weight: 700;
}

.slide-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(229, 57, 53, 0.12);
  padding-top: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-main);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red-primary);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.2);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-meta h4 {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
}

.author-meta p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Social Avatars Stack Banner */
.social-avatars-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.avatar-stack-group {
  display: flex;
  align-items: center;
}

.stack-avatar-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #FFFFFF;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: #E5E5E5;
}

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

.stack-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.94rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.stack-label span {
  color: var(--red-primary);
}

/* ==========================================================================
   4-Step Mechanism: How 'Back to You' Works
   ========================================================================== */
.mechanism-section {
  padding: 4.75rem 0 5.25rem;
  background: #FFFFFF;
  border-bottom: var(--glass-border-subtle);
  position: relative;
}

.steps-container {
  position: relative;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.step-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.95rem 1.45rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.step-card.final-dream-step {
  background: var(--red-soft);
  border-color: rgba(229, 57, 53, 0.35);
  box-shadow: 0 16px 36px -4px rgba(229, 57, 53, 0.16);
}

.step-number-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 0.32rem 0.88rem;
  background: var(--text-main);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
}

.step-card.final-dream-step .step-badge {
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  box-shadow: 0 4px 12px var(--red-glow);
}

.step-icon-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.step-desc {
  font-size: 0.91rem;
  color: var(--text-body);
  line-height: 1.52;
}

/* Arrow Connector for Desktop */
@media (min-width: 960px) {
  .step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--red-primary);
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.08);
    z-index: 10;
  }
}

.mechanism-bottom-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Closing Consultation Invitation Section (Frosted Glass Banner)
   ========================================================================== */
.closing-cta-section {
  padding: 4.5rem 0 5rem;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.1), transparent 70%);
}

.closing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--glass-shadow-hover);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.closing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF3B30, #E53935, #C62828);
}

.closing-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.closing-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.closing-cta-wrap {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ==========================================================================
   Trust Footer
   ========================================================================== */
.footer {
  background: #FFFFFF;
  color: var(--text-muted);
  padding: 3rem 0;
  font-size: 0.86rem;
  text-align: center;
  border-top: var(--glass-border-subtle);
}

.footer-brand {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.footer-disclaimer {
  max-width: 720px;
  margin: 1.25rem auto 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-light);
}

.footer-terms {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ==========================================================================
   Comprehensive Mobile & UX Responsive Suite (max-width: 768px)
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 78px !important;
  }

  /* Topbar on mobile - clean, uncluttered, no squishing */
  .topbar-inner {
    min-height: 54px;
    padding-block: 0.35rem;
  }
  .brand-logo-frame {
    width: 38px;
    height: 38px;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .brand-tag,
  .topbar-status {
    display: none !important;
  }

  /* Hero on mobile */
  .hero {
    padding: 1.85rem 0 2.5rem;
  }
  .hero-header {
    margin-bottom: 1.5rem;
  }
  .icp-eyebrow {
    font-size: 0.72rem;
    padding: 0.38rem 0.95rem;
    margin-bottom: 0.85rem;
  }
  .hero-headline {
    font-size: clamp(1.65rem, 5.8vw, 2.15rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 0.85rem;
    max-width: 100%;
  }
  .hero-subhead {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero-grid {
    gap: 1.5rem;
  }

  /* Video / VSL Card on mobile - Never squished! */
  .vsl-stage {
    aspect-ratio: 16 / 9;
    min-height: 220px; /* guarantees ample breathing room */
  }
  .vsl-overlay {
    padding: 0.85rem 0.65rem;
    gap: 0.45rem;
    justify-content: center;
  }
  .play-button-ring {
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  }
  .play-arrow {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 13px solid var(--red-primary);
    margin-left: 3px;
  }
  .vsl-overlay-title {
    font-size: 0.88rem;
    line-height: 1.25;
    max-width: 270px;
    margin: 0;
  }
  .vsl-overlay-sub {
    display: none !important; /* Hiding secondary subhead prevents crowding */
  }
  .vsl-play-btn-pill {
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    margin-top: 0.2rem;
    white-space: nowrap !important;
  }
  .vsl-caption {
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Value Card & 5 Bullets on mobile */
  .value-card {
    padding: 1.4rem 1.1rem;
    gap: 1.1rem;
  }
  .value-card-title {
    font-size: 1.22rem;
  }
  .selling-points-list {
    gap: 0.8rem;
  }
  .selling-point-item {
    font-size: 0.88rem;
    gap: 0.65rem;
    line-height: 1.44;
  }
  .point-icon {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  /* All CTA buttons strictly ONE line on mobile */
  .btn-cta {
    min-height: 50px !important;
    padding: 0.85rem 0.65rem !important;
    font-size: clamp(0.74rem, 3.3vw, 0.88rem) !important;
    white-space: nowrap !important;
    letter-spacing: 0.01em !important;
  }
  .cta-subtext {
    font-size: 0.78rem;
    line-height: 1.35;
  }
  .deposit-reassurance {
    font-size: 0.75rem;
    padding: 0.55rem 0.75rem;
  }

  /* Social proof / reviews carousel on mobile */
  .proof-section {
    padding: 2.75rem 0 3rem;
  }
  .section-intro {
    margin-bottom: 1.75rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }
  .stack-label {
    font-size: 0.85rem;
  }
  .google-authority-banner {
    font-size: 0.76rem;
    padding: 0.4rem 0.85rem;
  }
  .review-slide {
    flex: 0 0 88%;
    max-width: 320px;
    padding: 1.35rem 1.15rem;
  }
  .slide-quote {
    font-size: 0.88rem;
  }

  /* "Meet Kim" section on mobile */
  .about-kim-section {
    padding: 3rem 0;
  }
  .about-kim-grid {
    gap: 2rem;
  }
  .kim-photo-frame {
    max-width: 200px;
  }
  .story-heading {
    font-size: 1.45rem;
    line-height: 1.25;
  }
  .story-quote-highlight {
    font-size: 0.92rem;
    padding: 0.75rem 0.95rem;
  }
  .story-paragraphs {
    font-size: 0.92rem;
  }

  /* Mechanism on mobile */
  .mechanism-section {
    padding: 3rem 0;
  }
  .steps-container {
    margin-bottom: 2rem;
  }
  .step-card {
    padding: 1.45rem 1.15rem;
  }

  /* Closing card on mobile */
  .closing-cta-section {
    padding: 3rem 0 3.5rem;
  }
  .closing-card {
    padding: 2rem 1.25rem;
  }
  .closing-title {
    font-size: 1.55rem;
  }
  .closing-desc {
    font-size: 0.94rem;
  }

  /* Mobile Sticky Bottom CTA Bar */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(229, 57, 53, 0.25);
    padding: 0.6rem 0.85rem env(safe-area-inset-bottom, 0.6rem);
    box-shadow: 0 -8px 24px rgba(24, 24, 27, 0.12);
  }
  .mobile-sticky-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .mobile-sticky-btn {
    flex: 1;
    min-height: 48px !important;
    padding: 0.75rem 0.4rem !important;
    font-size: clamp(0.74rem, 3.2vw, 0.88rem) !important;
    white-space: nowrap !important;
  }

  /* Modal on mobile */
  .modal-dialog {
    padding: 1.75rem 1.25rem;
  }
  .modal-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .btn-cta {
    font-size: clamp(0.72rem, 3.1vw, 0.82rem) !important;
    padding: 0.8rem 0.45rem !important;
    letter-spacing: 0 !important;
  }
  .mobile-sticky-btn {
    font-size: clamp(0.72rem, 3.1vw, 0.82rem) !important;
  }
}

/* ==========================================================================
   Interactive Consultation Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 27, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem 2rem;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.15s ease;
}

.modal-close-btn:hover {
  background: var(--red-soft);
  color: var(--red-primary);
}

.modal-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-tag {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.35rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(24, 24, 27, 0.14);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

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

.modal-success-state {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.modal-success-icon {
  width: 60px;
  height: 60px;
  background: var(--red-soft);
  color: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--red-primary);
}

.modal-success-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.modal-success-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Lead Magnet Funnel Specific Styles (Signup, Thank You, Delivery)
   ========================================================================== */

/* Lead Magnet Hero Layout */
.lead-hero-section {
  padding: 3.5rem 0 4.5rem;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 57, 53, 0.08), transparent 60%),
    radial-gradient(circle at 85% 60%, rgba(229, 57, 53, 0.04), transparent 50%);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.lead-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .lead-hero-grid {
    grid-template-columns: 46% 54%;
    gap: 3.5rem;
    align-items: center;
  }
}

.lead-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Mobile Layout: Thumbnail switches position to sit right under subhead */
@media (max-width: 959px) {
  .lead-hero-section {
    padding: 2.25rem 0 3.5rem;
    min-height: auto;
    overflow-x: hidden;
  }

  .lead-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
  }

  .lead-content {
    display: contents; /* Unwraps children to allow mobile reordering */
  }

  .lead-eyebrow {
    order: 1;
  }

  .lead-headline {
    order: 2;
    margin-bottom: 0.15rem;
  }

  .lead-subhead {
    order: 3;
    margin-bottom: 0.25rem;
  }

  .lead-media-column {
    order: 4; /* POSITIONED DIRECTLY UNDER THE SUBHEAD ON MOBILE */
    width: 100%;
    max-width: 100%;
    margin: 0.25rem 0 0.75rem;
  }

  .lead-bullets-list {
    order: 5;
    margin-top: 0;
  }

  .lead-cta-wrap {
    order: 6;
    width: 100%;
    max-width: 100%;
  }

  .social-avatars-stack {
    order: 7;
    width: 100%;
  }
}

.lead-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red-soft);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--red-soft-border);
  align-self: flex-start;
}

.lead-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 3.6vw, 3.1rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.16;
  letter-spacing: -0.025em;
  max-width: 100%;
  word-break: break-word;
}

.lead-headline .highlight {
  color: var(--red-primary);
  position: relative;
  display: inline-block;
}

.lead-subhead {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.58;
  max-width: 100%;
  word-break: break-word;
}

/* 3 Bullet Points */
.lead-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.lead-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.45;
}

.lead-bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--red-soft);
  color: var(--red-primary);
  border: 1.5px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 0.15rem;
}

/* Video Thumbnail Button Card (Cinematic, Fully Responsive) */
.lead-media-column {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lead-video-card-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  outline: none;
}

.lead-video-card-btn:hover {
  transform: translateY(-4px);
}

.lead-video-thumb-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  aspect-ratio: 16 / 10;
  background: #181418;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16), 0 0 25px rgba(229, 57, 53, 0.18);
}

@media (min-width: 960px) {
  .lead-video-thumb-wrap {
    min-height: 440px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 35px rgba(229, 57, 53, 0.22);
  }
}

@media (max-width: 959px) {
  .lead-video-thumb-wrap {
    min-height: unset; /* CRITICAL: Never enforce fixed min-height on mobile that breaks aspect ratio */
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: var(--radius-md);
  }
}

.lead-video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.lead-video-card-btn:hover .lead-video-thumb-img {
  transform: scale(1.05);
  opacity: 0.82;
}

.lead-thumb-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(24, 20, 24, 0.15) 0%, rgba(24, 20, 24, 0.76) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .lead-thumb-overlay {
    padding: 1.15rem 0.85rem;
    gap: 0.45rem;
  }
}

.lead-video-thumb-wrap .play-button-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(229, 57, 53, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lead-video-thumb-wrap .play-button-ring {
    width: 58px;
    height: 58px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 57, 53, 0.5);
  }
}

.lead-video-card-btn:hover .play-button-ring {
  transform: scale(1.1);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 45px rgba(229, 57, 53, 0.8);
}

.lead-video-thumb-wrap .play-arrow {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--red-primary);
  margin-left: 6px;
}

@media (max-width: 768px) {
  .lead-video-thumb-wrap .play-arrow {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid var(--red-primary);
    margin-left: 3px;
  }
}

.lead-thumb-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(24, 24, 27, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@media (max-width: 768px) {
  .lead-thumb-badge {
    top: 10px;
    right: 10px;
    font-size: 0.68rem;
    padding: 0.22rem 0.6rem;
  }

  .vsl-overlay-title {
    font-size: clamp(1rem, 3.5vw, 1.25rem) !important;
  }

  .vsl-overlay-sub {
    font-size: 0.75rem !important;
  }

  .vsl-play-btn-pill {
    font-size: 0.74rem !important;
    padding: 0.35rem 0.8rem !important;
    white-space: normal !important;
    max-width: 92% !important;
  }
}

.lead-card-footer {
  padding: 1rem 1.35rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(229, 57, 53, 0.12);
}

.lead-card-footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

.lead-card-footer-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.lead-card-cta-badge {
  color: var(--red-primary);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ==========================================================================
   Thank You Page Styles
   ========================================================================== */
.thankyou-section {
  padding: 4rem 0 5rem;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(229, 57, 53, 0.1), transparent 60%);
  position: relative;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
}

.thankyou-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  box-shadow: var(--glass-shadow-hover);
  max-width: 780px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF3B30, #E53935, #C62828);
}

.thankyou-icon {
  width: 70px;
  height: 70px;
  background: var(--red-soft);
  color: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--red-primary);
  box-shadow: 0 8px 24px var(--red-glow);
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.18;
  margin-bottom: 0.85rem;
}

.thankyou-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.thankyou-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 460px;
  margin: 0 auto 2.25rem;
}

@media (min-width: 540px) {
  .thankyou-actions-grid {
    flex-direction: row;
  }
}

.btn-email-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap !important;
}

.btn-gmail {
  background: #FFFFFF;
  color: #D93025;
  border: 1.5px solid #EA4335;
  box-shadow: 0 4px 14px rgba(234, 67, 53, 0.15);
}

.btn-gmail:hover {
  background: #FFF8F8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.25);
}

.btn-outlook {
  background: #FFFFFF;
  color: #0078D4;
  border: 1.5px solid #0078D4;
  box-shadow: 0 4px 14px rgba(0, 120, 212, 0.15);
}

.btn-outlook:hover {
  background: #F4F9FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 120, 212, 0.25);
}

.spam-guidance-box {
  background: var(--bg-subtle);
  border: 1px dashed rgba(24, 24, 27, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.spam-guidance-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.spam-guidance-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

.direct-watch-link-box {
  border-top: 1px solid rgba(24, 24, 27, 0.08);
  padding-top: 1.5rem;
}

.direct-watch-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--red-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.direct-watch-link:hover {
  color: var(--red-dark);
}

/* ==========================================================================
   Delivery / Video Watch Page Styles
   ========================================================================== */
.delivery-section {
  padding: 3rem 0 5rem;
  background-color: var(--bg);
}

.delivery-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.25rem;
}

.delivery-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.delivery-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.delivery-player-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow-hover);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto 2.75rem;
}

.delivery-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #181418;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.delivery-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.delivery-chapters-bar {
  background: #FFFFFF;
  padding: 1.15rem 1.5rem;
  border-top: 1px solid rgba(229, 57, 53, 0.12);
}

.chapters-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 680px) {
  .chapters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.chapter-btn {
  background: var(--bg-subtle);
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-main);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chapter-btn:hover {
  background: var(--red-soft);
  border-color: var(--red-soft-border);
  color: var(--red-primary);
}

.chapter-time {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--red-primary);
  font-size: 0.76rem;
}

/* Consultation Bridge Box (Under the Video) */
.consultation-bridge-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  box-shadow: var(--glass-shadow);
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consultation-bridge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.bridge-tag {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red-primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  display: block;
}

.bridge-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.bridge-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 1.85rem;
  line-height: 1.58;
}

.bridge-cta-wrap {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

/* 6-Exercise Cheat Sheet Section */
.exercises-guide-section {
  max-width: 980px;
  margin: 3.5rem auto 0;
}

.guide-intro-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 1.75rem;
}

.exercises-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 680px) {
  .exercises-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .exercises-guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.exercise-guide-item {
  background: #FFFFFF;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.15rem;
  box-shadow: 0 4px 14px rgba(24, 24, 27, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.exercise-num-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--red-primary);
  background: var(--red-soft);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.exercise-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
}

.exercise-cue {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Booking Page & Appointment Calendar Styles
   ========================================================================== */
.booking-section {
  padding: 3.5rem 0 5rem;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(229, 57, 53, 0.07), transparent 60%);
}

.booking-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 2.75rem;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.booking-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .booking-grid {
    grid-template-columns: 56% 44%;
    gap: 3rem;
  }
}

.booking-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.step-label span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--red-soft);
  color: var(--red-primary);
  border: 1px solid var(--red-primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.date-pills-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .date-pills-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

.date-pill-btn {
  background: #FFFFFF;
  border: 1.5px solid rgba(24, 24, 27, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.4rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.18s ease;
}

.date-pill-btn .pill-day {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.date-pill-btn .pill-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.date-pill-btn:hover {
  border-color: var(--red-primary);
  background: var(--red-soft);
}

.date-pill-btn.active {
  background: var(--red-primary);
  border-color: var(--red-primary);
  box-shadow: 0 4px 14px var(--red-glow);
}

.date-pill-btn.active .pill-day,
.date-pill-btn.active .pill-num {
  color: #FFFFFF;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.time-slot-btn {
  background: #FFFFFF;
  border: 1.5px solid rgba(24, 24, 27, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.65rem 0.85rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.18s ease;
}

.time-slot-btn:hover {
  border-color: var(--red-primary);
  background: var(--red-soft);
  color: var(--red-primary);
}

.time-slot-btn.active {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--red-glow);
}

/* Objection Handling Column */
.objection-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.objection-card {
  background: #FFFFFF;
  border: 1px solid rgba(229, 57, 53, 0.16);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(24, 24, 27, 0.04);
}

.objection-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.objection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.objection-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-body);
}

.objection-list strong {
  color: var(--text-main);
}

.review-mini-card {
  background: var(--red-soft);
  border: 1px solid var(--red-soft-border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  margin-top: 0.5rem;
}

.review-mini-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

.review-mini-author {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-dark);
}

/* Calendar Export Buttons on Thank You Page */
.calendar-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
  margin: 1.5rem auto 2rem;
}

@media (min-width: 600px) {
  .calendar-actions-grid {
    flex-direction: row;
  }
}

.btn-calendar-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap !important;
  cursor: pointer;
  border: none;
}

.btn-google-cal {
  background: #FFFFFF;
  color: #4285F4;
  border: 1.5px solid #4285F4;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.btn-google-cal:hover {
  background: #F0F6FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(66, 133, 244, 0.25);
}

.btn-apple-cal {
  background: #18181B;
  color: #FFFFFF;
  border: 1.5px solid #18181B;
  box-shadow: 0 4px 12px rgba(24, 24, 27, 0.2);
}

.btn-apple-cal:hover {
  background: #27272A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24, 24, 27, 0.3);
}

.btn-outlook-cal {
  background: #FFFFFF;
  color: #0078D4;
  border: 1.5px solid #0078D4;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
}

.btn-outlook-cal:hover {
  background: #F4F9FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 120, 212, 0.25);
}

