/* ==========================================================================
   ID. SPECIES — IMPECCABLE VSL LANDING PAGE DESIGN SYSTEM
   Mobile-First · Cinema Ambient Lighting · High-Conversion Craft
   ========================================================================== */

:root {
  /* Brand Foundations */
  --bg-deep: #050e06;
  --bg-dark: #081509;
  --bg-surface: #0d2210;
  --bg-card: rgba(13, 34, 16, 0.85);
  --bg-glass: rgba(13, 34, 16, 0.7);
  --bg-light: #f8f6f0;
  --bg-cream: #f4eee1;
  --bg-white: #ffffff;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-light: #f3f7f4;
  --text-muted-light: #98ad9b;
  --text-dim: #647b67;
  --text-dark: #0f1e11;
  --text-muted-dark: #465749;

  /* Emerald & Flora Accents */
  --emerald-300: #86efac;
  --emerald-400: #4ade80;
  --emerald-500: #22c55e;
  --emerald-600: #16a34a;
  --emerald-700: #15803d;
  --forest-900: #0a3511;

  /* Gold & Warm Accents */
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --gold-glow: rgba(234, 179, 8, 0.35);

  /* Borders & Glassmorphism */
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-emerald: rgba(74, 222, 128, 0.3);
  --border-gold: rgba(234, 179, 8, 0.35);

  /* Typography */
  --font-main: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-main);

  /* Border Radii */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 9999px;

  /* Shadows & Halos */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-cinema: 0 0 0 1px rgba(74, 222, 128, 0.25), 0 20px 60px -10px rgba(0, 0, 0, 0.85), 0 0 50px -10px rgba(22, 163, 74, 0.35);

  --container: 1040px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-deep);
  color: var(--text-light);
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22, 163, 74, 0.22) 0%, transparent 65%),
    radial-gradient(circle at 100% 30%, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 70%, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
    var(--bg-deep);
  min-height: 100vh;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

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

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

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

/* ==========================================================================
   TOP ALERT NOTIFICATION BAR
   ========================================================================== */
.top-alert-bar {
  background: linear-gradient(90deg, #781d1d, #991b1b 50%, #781d1d);
  color: #ffffff;
  padding: 8px 14px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.alert-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: beacon-ping 1.4s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes beacon-ping {
  0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.9); opacity: 1; }
}

/* ==========================================================================
   CINEMA HERO & VSL CENTERPIECE
   ========================================================================== */
.vsl-hero-section {
  position: relative;
  padding: 24px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cinema-glow-halo {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 700px);
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.28) 0%, rgba(22, 163, 74, 0.1) 45%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}

/* Brand Header */
.hero-brand {
  margin-bottom: 12px;
}

.brand-logo {
  height: 34px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Method Badge */
.method-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--emerald-400);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  font-size: 0.85rem;
}

/* Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 680px;
}

.emerald-gradient {
  background: linear-gradient(135deg, #86efac 0%, #22c55e 50%, #facc15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   SMART VSL PLAYER CARD (IMPECCABLE BEZEL & GLASS)
   ========================================================================== */
.vsl-centerpiece-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.vsl-card-frame {
  background: #000000;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cinema);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
}

.video-aspect-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000000;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.video-aspect-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Never crop or clip */
  background: #000000;
  pointer-events: none;
}

/* Fullscreen Styles */
.video-aspect-container:fullscreen,
.video-aspect-container:-webkit-full-screen,
.video-aspect-container:-moz-full-screen,
.video-aspect-container:-ms-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  padding-top: 0 !important;
  background: #000000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.video-aspect-container:fullscreen video,
.video-aspect-container:-webkit-full-screen video,
.video-aspect-container:-moz-full-screen video,
.video-aspect-container:-ms-fullscreen video {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #000000 !important;
}

/* Sleek Floating Unmute Bar (Glassmorphic) */
.unmute-banner {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  cursor: pointer;
  width: max-content;
  max-width: 92%;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.unmute-pill-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(10, 53, 17, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(34, 197, 94, 0.45);
  border: 1px solid rgba(74, 222, 128, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.03em;
  animation: pulse-unmute 2s infinite ease-in-out;
}

@keyframes pulse-unmute {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.sound-wave-indicator {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 14px;
}

.sound-wave-indicator span {
  width: 3px;
  background: #4ade80;
  border-radius: 2px;
  animation: wave-bar 1.2s infinite ease-in-out;
}

.sound-wave-indicator span:nth-child(1) { height: 5px; animation-delay: 0.1s; }
.sound-wave-indicator span:nth-child(2) { height: 13px; animation-delay: 0.3s; }
.sound-wave-indicator span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.sound-wave-indicator span:nth-child(4) { height: 14px; animation-delay: 0.4s; }

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Big Center Play Overlay */
.center-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 20;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

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

.center-play-btn {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(34, 197, 94, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.center-play-btn svg {
  margin-left: 3px;
}

.center-play-overlay:hover .center-play-btn {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 40px rgba(34, 197, 94, 0.8);
}

/* External Controls Bar (Positioned Below Video - 100% Unobstructed Video) */
.vsl-external-controls {
  position: relative;
  background: #08170a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Progress Track (Anti-Skip) */
.progress-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  overflow: hidden;
  cursor: default;
}

.progress-glow-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #16a34a, #4ade80);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  border-radius: var(--radius-pill);
  transition: width 0.15s linear;
}

.controls-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toolbar-left, .toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s, transform 0.1s;
}

.tool-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.time-readout {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted-light);
  letter-spacing: 0.02em;
}

.quality-tag {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Lock Status Bar below video */
.vsl-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: #08170a;
  border-top: 1px solid var(--border-glass);
  font-size: 0.76rem;
  color: var(--text-muted-light);
  font-weight: 500;
}

.status-lock-icon {
  font-size: 0.8rem;
}

/* ==========================================================================
   CINEMA LOCKED MODE (BEFORE PITCH UNLOCK - NO SCROLL)
   ========================================================================== */
html.is-pitch-locked,
body.is-pitch-locked {
  height: 100vh;
  height: 100dvh;
  overflow: hidden !important;
}

body.is-pitch-locked .main-footer {
  display: none !important;
}

body.is-pitch-locked .main-canvas {
  height: calc(100dvh - 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

body.is-pitch-locked .vsl-hero-section {
  padding: 8px 0 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body.is-pitch-locked .hero-layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

body.is-pitch-locked .hero-brand {
  margin-bottom: 6px;
}

body.is-pitch-locked .brand-logo {
  height: clamp(24px, 3.2vh, 32px);
}

body.is-pitch-locked .method-badge {
  font-size: clamp(0.65rem, 1.8vh, 0.72rem);
  padding: 3px 10px;
  margin-bottom: 6px;
}

body.is-pitch-locked .hero-title {
  font-size: clamp(1.02rem, 2.5vh, 1.45rem);
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 620px;
}

body.is-pitch-locked .vsl-centerpiece-wrapper {
  max-width: min(100%, calc((100dvh - 190px) * 16 / 9), 720px);
}

/* ==========================================================================
   OFFER SECTION (DELAYED REVEAL AT 75% / 05:49)
   ========================================================================== */
.offer-section {
  padding: 44px 0 90px;
  background: var(--bg-cream);
  color: var(--text-dark);
  position: relative;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.4);
}

.offer-section.is-hidden {
  display: none !important;
}

.offer-section.is-unlocked {
  display: block !important;
  animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes smoothFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-container {
  max-width: 820px;
}

/* Unlock Header */
.unlock-banner-card {
  background: linear-gradient(135deg, #0a3511, #061c0a);
  color: #ffffff;
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 36px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 14px 40px rgba(10, 53, 17, 0.35);
}

.unlock-glow-pill {
  display: inline-block;
  background: linear-gradient(135deg, #facc15, #ca8a04);
  color: #000000;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.unlock-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #ffffff;
}

.unlock-desc {
  font-size: 0.92rem;
  color: var(--text-muted-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Master Pitch Pricing Card */
.pitch-pricing-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px 22px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(10, 35, 12, 0.14);
  border: 2px solid var(--emerald-600);
  position: relative;
  margin-bottom: 50px;
}

.pitch-badge-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #15803d, #16a34a);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
  white-space: nowrap;
}

.kicker-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-top: 8px;
  margin-bottom: 4px;
}

.pitch-course-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.pitch-course-lead {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Price Box */
.pitch-price-box {
  background: #f7faf6;
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.price-anchor {
  font-size: 0.95rem;
  color: #71717a;
  margin-bottom: 4px;
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.8;
}

.price-main-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--forest-900);
  line-height: 1;
  margin-bottom: 6px;
}

.installments-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.currency-symbol {
  font-size: 1.35rem;
  font-weight: 800;
}

.price-value-big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-cash-option {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  margin-bottom: 12px;
}

.savings-tag {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

/* Master CTA Button */
.master-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 60%, #15803d 100%);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.45);
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.master-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.6);
}

.btn-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: shine-sweep 3.5s infinite ease-in-out;
}

@keyframes shine-sweep {
  0% { left: -100%; }
  25%, 100% { left: 140%; }
}

.cta-btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-btn-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-btn-text small {
  font-size: 0.76rem;
  opacity: 0.92;
  font-weight: 500;
}

/* Security Row */
.pitch-security-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.78rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #166534;
  font-weight: 600;
}

/* Content Blocks */
.content-block {
  margin-bottom: 50px;
}

.block-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 28px;
}

.block-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 6px;
}

.block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.block-desc {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* Pillars Container */
.pillars-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pillar-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 37, 15, 0.08);
  position: relative;
  overflow: hidden;
}

.pillar-top-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(22, 163, 74, 0.12);
  line-height: 1;
}

.pillar-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pillar-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pillar-box p {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* Deliverables Grid */
.deliverables-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.deliverable-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 37, 15, 0.06);
}

.check-pill {
  width: 26px;
  height: 26px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-body h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.deliverable-body p {
  font-size: 0.84rem;
  color: var(--text-muted-dark);
  line-height: 1.45;
}

/* Mentors Profile Cards */
.mentors-duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.mentor-profile-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 37, 15, 0.08);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mentor-badge-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a3511, #16a34a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 53, 17, 0.25);
}

.mentor-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.mentor-subtitle {
  font-size: 0.78rem;
  color: var(--emerald-600);
  font-weight: 600;
}

.mentor-bio-text {
  font-size: 0.86rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* Guarantee Card */
.master-guarantee-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  border: 2px solid var(--gold-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 50px;
  box-shadow: 0 14px 40px rgba(234, 179, 8, 0.14);
}

.guarantee-seal-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef08a, #eab308);
  color: #713f12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(234, 179, 8, 0.35);
  border: 2px solid #ffffff;
}

.guarantee-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 0.9;
}

.guarantee-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.guarantee-sub {
  font-size: 0.52rem;
  font-weight: 700;
  opacity: 0.85;
}

.guarantee-info-text h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.guarantee-info-text p {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 37, 15, 0.08);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-card[open] {
  border-color: var(--emerald-500);
}

.faq-summary {
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

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

.faq-chevron {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--emerald-600);
  transition: transform 0.2s;
}

.faq-card[open] .faq-chevron {
  transform: rotate(45deg);
}

.faq-collapse {
  padding: 0 16px 16px;
  font-size: 0.86rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* Closing Pitch Card */
.closing-pitch-card {
  background: linear-gradient(135deg, #0a3511, #061c0a);
  color: var(--text-light);
  border-radius: var(--radius-xl);
  padding: 36px 20px;
  text-align: center;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.closing-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fef08a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.closing-pitch-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #ffffff;
}

.closing-pitch-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 24px;
}

/* ==========================================================================
   STICKY BOTTOM CONVERSION BAR (MOBILE & DESKTOP)
   ========================================================================== */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 21, 9, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.sticky-footer-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  gap: 12px;
}

.sticky-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sticky-kicker {
  font-size: 0.68rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sticky-price-tag {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--emerald-400);
}

.sticky-action-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.45);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.sticky-action-btn:hover {
  transform: scale(1.03);
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.main-footer {
  background: var(--bg-deep);
  color: var(--text-dim);
  padding: 40px 0 90px;
  text-align: center;
  font-size: 0.82rem;
  border-top: 1px solid var(--border-glass);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-seal {
  height: 50px;
  width: auto;
  opacity: 0.85;
}

.footer-tagline {
  color: var(--text-light);
  font-weight: 600;
}

.footer-copyright {
  color: var(--text-muted-light);
}

.footer-disclaimer {
  font-size: 0.72rem;
  opacity: 0.6;
  max-width: 600px;
  margin-top: 8px;
  line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & DESKTOP)
   ========================================================================== */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .pitch-security-row {
    flex-direction: row;
    justify-content: center;
    gap: 22px;
  }

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

  .deliverables-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentors-duo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .master-guarantee-card {
    flex-direction: row;
    text-align: left;
    padding: 32px;
    gap: 24px;
  }
}

@media (min-width: 900px) {
  .vsl-hero-section {
    padding: 36px 0 54px;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .pitch-pricing-card {
    padding: 44px 40px;
  }

  .pitch-course-title {
    font-size: 1.75rem;
  }

  .price-value-big {
    font-size: 3.4rem;
  }

  .master-cta-btn {
    padding: 22px 36px;
  }

  .cta-btn-text strong {
    font-size: 1.2rem;
  }

  .cta-btn-text small {
    font-size: 0.85rem;
  }
}
