/* ============================================
   OmniFusion Funnel V3 - Blue-Dominant Theme
   Theme: Clean blue primary, subtle purple accent
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Brand Colors - Blue Dominant */
  --navy: #1B2B5A;
  --navy-light: #2A3E78;
  --navy-deep: #0F1A3A;
  --accent: #3B82F6;
  --accent-light: #60A5FA;
  --accent-deep: #2563EB;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --accent-glow: rgba(59, 130, 246, 0.25);
  --purple: #7C3AED;
  --purple-dim: rgba(124, 58, 237, 0.15);
  --purple-glow: rgba(124, 58, 237, 0.25);

  /* Backgrounds */
  --bg-primary: #060B18;
  --bg-secondary: #0A1025;
  --bg-card: rgba(27, 43, 90, 0.08);
  --bg-card-hover: rgba(27, 43, 90, 0.15);
  --bg-glass: rgba(27, 43, 90, 0.12);
  --bg-glass-border: rgba(59, 130, 246, 0.12);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(200, 210, 235, 0.75);
  --text-muted: rgba(160, 175, 210, 0.5);

  /* Borders */
  --border-subtle: rgba(59, 130, 246, 0.12);
  --border-brand: rgba(59, 130, 246, 0.3);

  /* Brand Gradient - Blue to Purple (used sparingly) */
  --gradient-brand: linear-gradient(135deg, #3B82F6, #7C3AED, #A855F7);
  --gradient-brand-reverse: linear-gradient(135deg, #A855F7, #7C3AED, #3B82F6);
  --gradient-brand-subtle: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.15));

  /* CTA Gradient - Blue to Purple */
  --gradient-cta: linear-gradient(135deg, #2563EB, #7C3AED);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 60px 0;
  --section-padding-mobile: 40px 0;
  --container-max: 1240px;
  --container-padding: 0 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-light);
  text-decoration: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Background Effects --- */
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(27, 43, 90, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 90%, rgba(124, 58, 237, 0.10) 0%, transparent 50%);
}

.page-bg::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 65%);
  opacity: 0.7;
  animation: auroraFloat1 20s ease-in-out infinite alternate;
}

.page-bg::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 65%);
  animation: auroraFloat2 25s ease-in-out infinite alternate;
}

/* Aurora floating animations */
@keyframes auroraFloat1 {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  33% { transform: translateX(-45%) translateY(-30px); opacity: 0.7; }
  66% { transform: translateX(-55%) translateY(20px); opacity: 0.4; }
  100% { transform: translateX(-50%) translateY(-15px); opacity: 0.6; }
}

@keyframes auroraFloat2 {
  0% { transform: translateY(0) translateX(0); opacity: 0.6; }
  50% { transform: translateY(-40px) translateX(-30px); opacity: 0.4; }
  100% { transform: translateY(20px) translateX(15px); opacity: 0.7; }
}

.page-content {
  position: relative;
  z-index: 1;
}

/* --- Section Base --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

/* --- Typography --- */
.text-center { text-align: center; }

.headline-xxl {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.headline-xl {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.headline-lg {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}


.text-gradient {
  color: var(--accent-light);
}

.pre-headline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.sub-headline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--accent-deep);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
  box-shadow:
    0 4px 24px var(--accent-glow),
    0 1px 3px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

/* Mask layer: only the 1.5px border region is visible */
.btn-border-mask {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Spinning conic gradient - only shows through the 1.5px border mask */
.btn-border-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform-origin: 0 0;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 55%,
    rgba(196, 30, 122, 0.6) 68%,
    #fff 75%,
    rgba(196, 30, 122, 0.6) 82%,
    transparent 95%,
    transparent 100%
  );
  animation: btnShine 4s linear infinite;
}

@keyframes btnShine {
  0% { transform: rotate(0deg) translate(-50%, -50%); }
  100% { transform: rotate(360deg) translate(-50%, -50%); }
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow:
    0 8px 40px var(--accent-glow),
    0 4px 20px rgba(168, 85, 247, 0.15),
    0 2px 8px rgba(0,0,0,0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary span,
.btn-primary .btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

/* --- Brand Bar (Section 1) --- */
.brand-bar {
  padding: 28px 0 0;
  text-align: center;
}

.brand-bar__logo {
  height: 40px;
  width: auto;
  margin: 0 auto;
  opacity: 0.95;
}

.brand-bar__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
}

.brand-bar__stars {
  display: flex;
  gap: 2px;
  color: #D4A843;
  font-size: 14px;
}

.brand-bar__trust-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.brand-bar__avatars {
  display: flex;
  margin-left: 4px;
}

.brand-bar__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  object-fit: cover;
  margin-left: -6px;
}

.brand-bar__avatar:first-child {
  margin-left: 0;
}

/* --- Hero Section (Section 2) --- */
.hero {
  padding: 24px 0 12px;
  text-align: center;
}

.hero__pre-headline {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__headline {
  max-width: 900px;
  margin: 0 auto 8px;
  min-height: 2.4em;
}

.mobile-only { display: inline; }
.mobile-show { display: inline; }
.mobile-hide { display: none; }
@media (min-width: 641px) {
  .mobile-only { display: none; }
  .mobile-show { display: none; }
  .mobile-hide { display: inline; }
}

.hero__sub {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Typewriter Animation --- */
.typewriter-wrapper {
  display: block;
  min-height: 1.2em;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 0.7s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}

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

/* --- VSL Section (Section 3) --- */
.vsl-section {
  padding: 12px 0 0;
}

.vsl-step {
  text-align: center;
  margin-bottom: 24px;
}

.vsl-step__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.vsl-step__number {
  color: var(--accent);
  font-weight: 700;
}

.vsl-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent);
  background: var(--bg-secondary);
  position: relative;
  box-shadow:
    0 0 40px rgba(59, 130, 246, 0.12),
    0 0 80px rgba(124, 58, 237, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.vsl-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030510;
  border-radius: 12px;
  overflow: hidden;
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vsl-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 24, 0.45);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.vsl-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.vsl-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 30px var(--accent-glow), 0 2px 20px var(--purple-glow);
}

.vsl-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 50px var(--accent-glow), 0 4px 30px var(--purple-glow);
}

.vsl-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

.vsl-chapters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(27, 43, 90, 0.06);
  border-top: 1px solid var(--border-subtle);
}

.vsl-chapter {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* --- Client Marquee - Instagram Style (Section 4) --- */
.marquee-section {
  padding: 12px 0 24px;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  padding: 6px 0;
}

.marquee-track {
  display: flex;
  gap: 14px;
  animation: marqueeScroll 70s linear infinite;
  width: max-content;
  padding: 4px 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Instagram-style card */
.ig-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 240px;
  padding: 10px 14px 10px 10px;
  background: rgba(27, 43, 90, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 14px;
  flex-shrink: 0;
  cursor: default;
  transition: all 0.3s ease;
}

.ig-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

/* Instagram story ring */
.ig-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffe234 0%, #fa7e1e 20%, #e6683c 34%, #dc2743 50%, #cc2366 66%, #bc1888 82%, #833ab4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2px;
}

.ig-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-primary);
  padding: 2px;
  overflow: hidden;
}

.ig-ring-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.ig-info {
  flex: 1;
  min-width: 0;
}

.ig-handle-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ig-handle {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-verified {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.ig-niche {
  font-size: 11px;
  color: rgba(200, 210, 235, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.ig-followers {
  font-size: 12px;
  font-weight: 700;
  color: rgba(200, 210, 235, 0.55);
  margin-top: 2px;
}

/* --- Social Proof Line (below CTA, above marquee) --- */
.social-proof-line {
  padding: 8px 24px 16px;
}

.social-proof-line__text {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- CTA Section --- */
.cta-section {
  padding: 36px 0;
  text-align: center;
}

.cta-section--post-vsl {
  padding: 24px 0 20px;
}

.cta-section--mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .cta-section--mobile-only {
    display: block;
    padding: 24px 0 8px;
  }
}

.cta-section .btn-primary {
  font-size: 17px;
  padding: 20px 56px;
}

/* --- Application Form (Section 5) --- */
.form-section {
  padding: 20px 0 56px;
  text-align: center;
}

.form-section__step {
  margin-bottom: 12px;
}

.form-section__sub {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 500;
}

.form-wrapper {
  max-width: 580px;
  margin: 0 auto;
  background: transparent;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 560px;
}

.form-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Placeholder form (shown until GHL iframe is embedded) */
.form-placeholder {
  padding: 40px 32px;
  text-align: left;
}

.form-placeholder__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.form-placeholder__subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
}

.form-step-indicators {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.form-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #E5E7EB;
}

.form-step-dot.active {
  background: var(--accent);
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #333;
}

.form-radio:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.04);
}

.form-radio input[type="radio"] {
  accent-color: var(--accent);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: #333;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* --- Proof Sections --- */
.proof-section {
  padding: var(--section-padding);
}

.proof-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.proof-section__header .pre-headline {
  margin-bottom: 12px;
}

/* --- Video Testimonial Cards --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.08);
}

.testimonial-card__video {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: #0A1025;
}

.testimonial-card__video-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.testimonial-card:hover .testimonial-card__play {
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.testimonial-card__play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 3px;
}

.testimonial-card__body {
  padding: 20px;
}

.testimonial-card__result {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.testimonial-card__quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__handle {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Comparison Table (Section 8) --- */
.comparison-section {
  padding: var(--section-padding);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--bg-glass-border);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-header__col {
  padding: 20px 28px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.comparison-header__col--old {
  background: rgba(255, 60, 60, 0.06);
  color: rgba(255, 100, 100, 0.9);
  border-bottom: 2px solid rgba(255, 60, 60, 0.15);
}

.comparison-header__col--new {
  background: var(--accent-dim);
  color: var(--accent-light);
  border-bottom: 2px solid var(--border-brand);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 18px 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.comparison-cell--old {
  background: rgba(255, 60, 60, 0.02);
  color: var(--text-secondary);
  border-right: 1px solid var(--border-subtle);
}

.comparison-cell--new {
  background: rgba(59, 130, 246, 0.03);
  color: var(--text-primary);
}

.comparison-icon {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1.3;
}

.comparison-cell--old .comparison-icon {
  color: rgba(255, 100, 100, 0.9);
  text-shadow: 0 0 8px rgba(255, 60, 60, 0.4);
}

.comparison-cell--new .comparison-icon {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent-dim);
}

/* --- Before/After Cards (Section 12) --- */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.before-after-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.before-after-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 0;
}

.before-after-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.before-after-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}

.before-after-card__handle {
  font-size: 12px;
  color: var(--text-muted);
}

.before-after-card__content {
  padding: 20px;
}

.before-after-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.before-after-row:last-child {
  margin-bottom: 0;
}

.ba-label {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 0;
  border-radius: 4px;
  width: 52px;
  text-align: center;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ba-label--before {
  background: rgba(255, 60, 60, 0.12);
  color: rgba(255, 100, 100, 0.9);
}

.ba-label--after {
  background: rgba(76, 201, 100, 0.12);
  color: rgba(100, 220, 120, 0.9);
}

.ba-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ba-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.ba-text--highlight {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Wall of Love / Screenshot Grid (Section 11) --- */
.wall-of-love {
  padding: var(--section-padding);
}

/* Two independent flex columns */
.wall-grid-2col {
  display: flex;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.wall-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card frame: brand border + dark padding */
.wall-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 4px;
  background: #0A1025;
  transition: opacity 0.5s ease, transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.wall-img:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--accent),
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(59, 130, 246, 0.15);
}

.wall-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

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

/* --- Wall of Love: Video Row (above screenshot grid) --- */
.wall-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 16px;
}

.wall-video {
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 4px;
  background: #0A1025;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.wall-video:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--accent),
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(59, 130, 246, 0.15);
}

.wall-video__thumb {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: #030510;
  aspect-ratio: 16 / 9;
}

.wall-video__thumb img,
.wall-video__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wall-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.wall-video:hover .wall-video__play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.wall-video__play svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 2px;
}

.wall-video__info {
  padding: 8px 6px 4px;
  text-align: center;
}

.wall-video__name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
}

.wall-video__result {
  color: var(--accent);
  font-size: 12px;
  margin-top: 2px;
}

/* --- Testimonial card poster image --- */
.testimonial-card__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.testimonial-card__poster--placeholder {
  background: linear-gradient(135deg, #0A1025 0%, #111B36 100%);
}

.testimonial-card__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030510;
}

/* --- Authority Endorsement Section (Liam Ottley) --- */
.authority-section {
  padding: var(--section-padding);
}

.authority-content {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.authority-video {
  flex: 1 1 50%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 4px;
  background: #0A1025;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.authority-video:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(59, 130, 246, 0.15);
}

.authority-video__inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #030510;
  aspect-ratio: 16 / 9;
}

.authority-video__inner img,
.authority-video__inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.authority-video .wall-video__play {
  width: 56px;
  height: 56px;
}

.authority-video .wall-video__play svg {
  width: 22px;
  height: 22px;
}

.authority-heading {
  display: none;
}

.authority-text {
  flex: 1 1 50%;
}

.authority-quote {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 16px 0 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.authority-author__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.authority-yt-icon {
  width: 20px;
  height: 20px;
  fill: #ff0000;
  flex-shrink: 0;
}

.authority-yt-sep {
  color: var(--text-primary);
  font-weight: 300;
}

.authority-yt-subs {
  font-family: var(--font-heading);
  font-size: inherit;
  font-weight: 500;
  color: var(--text-primary);
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--section-padding);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

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

.faq-question::marker {
  content: '';
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Credibility Bar (Section 14) --- */
.credibility-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.credibility-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.credibility-stat__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.credibility-stat__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}

/* --- Footer --- */
.footer {
  padding: 48px 0;
  text-align: center;
}

.footer__logo {
  height: 24px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.7;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 11px;
  color: rgba(160, 175, 210, 0.3);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer__link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--accent-light);
}

/* --- Desktop above-the-fold tightening --- */
@media (min-width: 1024px) {
  .brand-bar {
    padding: 16px 0 0;
  }

  .brand-bar__logo {
    height: 36px;
  }

  .brand-bar__trust {
    margin-top: 8px;
  }

  .hero {
    padding: 16px 0 8px;
  }

  .vsl-section {
    padding: 8px 0 0;
  }

  .vsl-wrapper {
    max-width: 780px;
  }

  .cta-section--post-vsl {
    padding: 16px 0 8px;
  }

  .social-proof-line {
    padding: 4px 24px 8px;
  }

  .marquee-section {
    padding: 8px 0 16px;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-header__col {
    font-size: 14px;
    padding: 14px 16px;
  }

  .comparison-cell {
    padding: 14px 16px;
    font-size: 13px;
  }

  .wall-grid-2col {
    flex-direction: column;
    gap: 8px;
  }

  .wall-img {
    padding: 3px;
  }

  .wall-img img {
    border-radius: 8px;
  }

  .wall-videos {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .wall-video__play {
    width: 40px;
    height: 40px;
  }

  .wall-video__play svg {
    width: 16px;
    height: 16px;
  }

  .authority-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .authority-heading {
    display: block;
    order: 1;
  }

  .authority-video {
    flex: none;
    width: 100%;
    margin: 0 auto;
    order: 2;
  }

  .authority-text {
    order: 3;
  }

  .authority-text__heading {
    display: none;
  }

  .authority-quote {
    font-size: 16px;
    border-left: none;
    padding-left: 0;
    border-image: none;
    border-top: 2px solid var(--accent);
    padding-top: 16px;
  }

  .authority-author__name {
    justify-content: center;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 0;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .credibility-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .credibility-stat__number {
    font-size: 28px;
  }

  .btn-primary {
    padding: 16px 36px;
    font-size: 14px;
    width: 100%;
    max-width: 360px;
  }

  .hero__pre-headline {
    font-size: 11px;
  }

  .ig-card {
    width: 210px;
    padding: 8px 12px 8px 8px;
  }

  .ig-ring {
    width: 42px;
    height: 42px;
  }

  .vsl-chapters {
    gap: 6px;
    padding: 12px 14px;
  }

  .vsl-chapter {
    font-size: 10px;
    padding: 3px 8px;
  }

  .form-wrapper {
    margin: 0 auto;
  }

  .brand-bar__trust {
    gap: 6px;
    padding: 6px 12px;
  }

  .brand-bar__trust-text {
    font-size: 12px;
  }

  .brand-bar__avatar {
    width: 20px;
    height: 20px;
  }

  .brand-bar__stars {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .comparison-header {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-cell--old {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 12px;
  }

  .comparison-cell--new {
    padding-top: 12px;
  }
}
