/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Colors - Premium Dark Theme */
  --gradient-start: #0f172a;
  --gradient-end: #1e293b;
  --dark-bg: #0f172a;
  --light-surface: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-light: #ffffff;
  --accent-primary: #3b82f6;
  --accent-secondary: #8b5cf6;
  --border-light: #e5e5e5;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --font-size-3xl: clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
  --font-size-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  
  /* Spacing */
  --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1rem);
  --space-base: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --space-xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --space-2xl: clamp(3rem, 2.4rem + 3vw, 4rem);
  --space-3xl: clamp(4rem, 3.2rem + 4vw, 6rem);
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 5vw, 2rem);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  
  /* Transitions */
  --transition-fast: 200ms ease-out;
  --transition-medium: 400ms ease-out;
  --transition-slow: 600ms ease-out;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  /* Make elements visible immediately for reduced motion users */
  .hero-title,
  .hero-subtitle,
  .hero .cta-button,
  .trust-logos {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ==========================================
   MODEL VIEWER
   ========================================== */
model-viewer {
  width: 100%;
  height: 400px;
  background-color: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--accent-primary);
  --progress-bar-height: 0px;
  --progress-mask: transparent;
}

@media (max-width: 768px) {
  model-viewer {
    height: 300px;
  }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { 
  font-size: var(--font-size-4xl);
  font-weight: 900;
  letter-spacing: -0.025em;
}
h2 { 
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h3 { 
  font-size: var(--font-size-xl);
  font-weight: 700;
}

p {
  margin-bottom: var(--space-base);
  line-height: 1.6;
}

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

.hidden {
  display: none !important;
}

/* ==========================================
   PROGRESS BAR
   ========================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  width: 0%;
  transition: width var(--transition-fast);
}

/* ==========================================
   BUTTONS
   ========================================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--text-light);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
  background: var(--light-surface);
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
  background: var(--accent-primary);
  color: var(--light-surface);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.cta-link.secondary-link {
  color: var(--accent-primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0.5em 1em;
  border-radius: var(--border-radius);
  transition: background var(--transition-fast), color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-link.secondary-link:hover, .cta-link.secondary-link:focus {
  color: var(--light-surface);
  background: var(--accent-primary);
  text-decoration: none;
  outline: none;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.18) 0%, rgba(59,130,246,0.10) 40%, transparent 70%), /* new highlight */
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(40px);
  animation: heroSlideUp 0.8s ease-out 0.2s forwards;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-3xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUp 0.8s ease-out 0.4s forwards;
}

.hero .cta-button {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: heroButtonPop 0.6s ease-out 0.6s forwards;
  font-size: var(--font-size-xl);
  padding: var(--space-lg) var(--space-2xl);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--text-light);
}

.hero .cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

/* Hero Animation Keyframes */
@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  60% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.trust-logo {
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(0) invert(1);
  transition: all var(--transition-fast);
}

.trust-logo:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   VIDEO PROOF SECTION
   ========================================== */
.video-proof {
  background: var(--light-surface);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

/* Update text colors for light background sections */
.video-proof .video-caption,
.video-proof h2,
.video-proof p {
  color: #1e293b;
}

.video-proof .video-caption {
  color: #64748b;
}

.video-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.video-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto var(--space-xl);
  aspect-ratio: 9 / 16;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.play-button svg {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.5;
}

/* Responsive adjustments for portrait video */
@media (max-width: 768px) {
  .video-container {
    max-width: 320px;
  }
  
  .video-caption {
    max-width: 400px;
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 480px) {
  .video-container {
    max-width: 280px;
  }
  
  .video-caption {
    max-width: 320px;
    font-size: var(--font-size-base);
  }
}

/* ==========================================
   DEMO SECTION
   ========================================== */
.demo-section {
  background: linear-gradient(135deg, #1a2233 60%, #23263a 100%);
  padding: var(--space-2xl) 0;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto var(--space-3xl);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-medium);
}

.phone-mockup:hover {
  transform: translateY(-8px);
}

.phone-frame {
  width: 100%;
  height: auto;
  display: block;
}

.phone-screen {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 76%;
  height: 84%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

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

.try-live-button {
  position: relative;
  /* bottom: -25px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--light-surface);
  border: none;
  padding:2rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 50px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  letter-spacing: 0.01em;
}

.try-live-button:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  padding: 0 var(--space-xl);
  position: relative;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #8b5cf6 #23263a;
}

.benefit-cards::-webkit-scrollbar {
  height: 6px;
  background: transparent;
}
.benefit-cards::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #8b5cf6 40%, #3b82f6 100%);
  border-radius: 4px;
  opacity: 0.7;
}

.benefit-card {
  background: rgba(24, 26, 32, 0.38);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 18px;
  border: 1.5px solid rgba(255,255,255,0.16);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(255,255,255,0.08) inset;
  min-height: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
  outline: 1.5px solid rgba(255,255,255,0.10);
  box-shadow: 0 2px 12px 0 rgba(139,92,246,0.10), 0 1.5px 8px 0 rgba(255,255,255,0.08) inset;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 32px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 8px 32px 0 rgba(139,92,246,0.10) inset;
  pointer-events: none;
}
.benefit-card h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: #e5e7ef;
  margin-bottom: var(--space-lg);
  margin-top: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
  line-height: 1.15;
  text-align: center;
}
.benefit-card h3::before {
  content: attr(data-emoji);
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  display: block;
  line-height: 1;
}
.benefit-card p {
  color: #cbd5e1;
  margin: 0;
  font-size: var(--font-size-lg);
  line-height: 1.7;
  font-weight: 400;
  margin-top: var(--space-base);
  opacity: 0.92;
  text-align: center;
}
@media (max-width: 900px) {
  .benefit-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 0 var(--space-base);
  }
  .benefit-card {
    min-height: 340px;
    padding: var(--space-xl) var(--space-base);
  }
}
@media (max-width: 600px) {
  .benefit-cards {
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 80vw);
    overflow-x: auto;
    gap: var(--space-lg);
    padding: 0 var(--space-base);
  }
  .benefit-card {
    min-width: 75vw;
    max-width: 90vw;
    min-height: 260px;
    padding: var(--space-lg) var(--space-base);
  }
}
.benefit-cards-scroll-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.benefit-cards-scroll-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;
  opacity: 0.18;
  transition: opacity 0.2s;
}
.benefit-cards-scroll-indicator-dot.active {
  opacity: 0.7;
}

/* ==========================================
   SOCIAL PROOF SECTION
   ========================================== */
.social-proof {
  background: var(--light-surface);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

/* Update text colors for light background */
.social-proof .case-snippet blockquote {
  color: #1e293b;
}

.social-proof .case-snippet cite {
  color: #64748b;
}

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

.carousel-track {
  display: flex;
  animation: carousel-scroll 12s infinite;
}

.case-snippet {
  flex: 0 0 100%;
  text-align: center;
  padding: var(--space-2xl);
  opacity: 0.4;
  transition: all var(--transition-medium);
  transform: scale(0.95);
}

.case-snippet.active {
  opacity: 1;
  transform: scale(1);
}

.case-snippet blockquote {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.metric {
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.case-snippet cite {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 600;
}

@keyframes carousel-scroll {
  0%, 45% { transform: translateX(0); }
  55%, 100% { transform: translateX(-100%); }
}

/* ==========================================
   OFFER SECTION
   ========================================== */
.offer-section {
  background: var(--light-surface);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

/* Ensure dark card stands out on light background */
.offer-section .offer-card {
  background: var(--dark-bg);
}

.offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.offer-card {
  background: var(--dark-bg);
  color: var(--light-surface);
  max-width: 550px;
  margin: 0 auto;
  padding: var(--space-3xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-medium);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-base) 0;
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.offer-line.total {
  font-weight: 700;
  color: var(--light-surface);
  font-size: var(--font-size-2xl);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin: var(--space-lg) 0;
  padding: var(--space-lg) 0;
}

.offer-line.today {
  font-weight: 800;
  font-size: var(--font-size-2xl);
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.feature-list {
  list-style: none;
  margin: var(--space-xl) 0;
  text-align: left;
}

.feature-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  color: var(--light-surface);
  font-size: var(--font-size-lg);
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent-primary);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: var(--font-size-xl);
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: var(--space-xl) 0;
}

/* ==========================================
   URGENCY FOOTER
   ========================================== */
.urgency-footer {
  background: var(--dark-bg);
  color: var(--light-surface);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  height: auto;
}

.urgency-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.scarcity-text {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-base);
  letter-spacing: -0.01em;
}

.slots-remaining {
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  padding-bottom: 5rem;
}

.countdown-text {
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-lg);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.time-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 80px;
}

.time-value {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  margin-bottom: var(--space-xs);
}

.time-label {
  font-size: var(--font-size-sm);
  color: var(--light-surface);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ==========================================
   STICKY CTA
   ========================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.25em 1em;
  text-align: center;
  z-index: 100;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  font-size: var(--font-size-base);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  gap: 0.75em;
}

.sticky-cta.visible {
  transform: translateY(0);
}
.genie-model {
  padding-bottom: 40px;
}
/* ==========================================
   SECTION ANIMATIONS
   ========================================== */
[data-section] {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

[data-section].fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section should be visible immediately for animations */
[data-section="hero"] {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 640px) {
  .trust-logos {
    gap: var(--space-base);
  }
  
  .trust-logo {
    height: 24px;
  }
  
  .benefit-cards {
    grid-template-columns: 1fr;
  }
  
  .countdown-timer {
    gap: var(--space-base);
  }
  
  .time-value {
    font-size: var(--font-size-xl);
  }
  
  .carousel-track {
    scroll-snap-type: x mandatory;
  }
  
  .case-snippet {
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .offer-card {
    margin: 0 var(--space-base);
  }
  
  .phone-mockup {
    max-width: 250px;
  }
} 

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  padding: 24px 0 0 24px;
  background: none;
  display: flex;
  align-items: flex-start;
}

.site-logo-link {
  display: inline-block;
  text-decoration: none;
}

.site-logo {
  height: 48px;
  width: auto;
  display: block;
  max-width: 180px;
}

@media (max-width: 600px) {
  .site-header {
    padding: 12px 0 0 12px;
  }
  .site-logo {
    height: 36px;
    max-width: 120px;
  }
} 

.phone-model {
    width: 120px;
    height: 240px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
} 

/* === Premium Offer Stack Redesign === */
.new-offer-card {
  background: var(--dark-bg);
  color: var(--light-surface);
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.new-offer-card .offer-title {
  text-align: center;
  font-size: var(--font-size-3xl);
  font-weight: 900;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
  color: #C0C6CF; /* platinum/soft blue */
  text-shadow: 0 2px 8px rgba(59,130,246,0.08);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
}

.deliverable-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-block {
  background: rgba(255,255,255,0.02);
  border: 1.5px solid rgba(139,92,246,0.13);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-base);
  margin-bottom: var(--space-base);
  box-shadow: 0 2px 12px rgba(139,92,246,0.04);
  display: flex;
  align-items: flex-start;
  gap: var(--space-base);
}

.feature-block-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  margin-right: var(--space-base);
  box-shadow: 0 2px 8px rgba(59,130,246,0.12);
}

.feature-block-content {
  flex: 1;
}

.feature-block-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: #C0C6CF;
  letter-spacing: 0.01em;
}

.feature-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-block-list li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.3em;
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.feature-block-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.1em;
  top: 0.1em;
}

.bonus-section {
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #fff;
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-base);
  margin-top: var(--space-xl);
  box-shadow: 0 4px 24px rgba(59,130,246,0.10);
}

.bonus-section strong {
  font-size: var(--font-size-lg);
  font-weight: 800;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: var(--space-xs);
}

.bonus-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bonus-section li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.3em;
  color: #fff;
  font-size: var(--font-size-base);
}

.bonus-section li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 1.1em;
  top: 0.1em;
}

@media (max-width: 600px) {
  .new-offer-card {
    padding: var(--space-xl) var(--space-base);
  }
  .feature-block {
    flex-direction: column;
    gap: var(--space-xs);
  }
} 

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-base);
  }
} 

.sticky-cta-message {
  color: var(--text-secondary);
  margin-right: 0.5em;
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.sticky-cta-link {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: var(--font-size-base);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.25em 0.75em;
  border-radius: var(--border-radius);
  transition: background var(--transition-fast), color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.sticky-cta-link:hover, .sticky-cta-link:focus {
  color: var(--light-surface);
  background: var(--accent-primary);
  text-decoration: none;
  outline: none;
} 

.compressed-timer {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  text-align: center;
  margin: 0.5em 0 0.25em 0;
  font-weight: 500;
}
.inline-countdown {
  font-size: 0.95em;
  color: var(--accent-primary);
  margin-left: 0.5em;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.inline-countdown span {
  margin-right: 0.15em;
}
.progress-hint {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  font-weight: 400;
} 

.hero-secondary-link {
  text-align: center;
  margin-top: 0.5em;
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}
.hero-secondary-link a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.hero-secondary-link a:hover, .hero-secondary-link a:focus {
  color: var(--accent-secondary);
  text-decoration: none;
} 

/* Sticky CTA Button (appears after scrolling past hero) */
.sticky-cta.sticky-demo {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 1000;
  background: var(--accent-primary);
  color: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.15);
  padding: 0.75rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium), transform var(--transition-fast);
  font-size: var(--font-size-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sticky-cta.sticky-demo.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1.04);
}
.sticky-cta.sticky-demo .cta-button.primary {
  background: none;
  color: inherit;
  box-shadow: none;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* Micro-animation for CTA button */
.cta-button.primary {
  transition: transform 0.18s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  transform: scale(1.07);
  box-shadow: 0 0 0 0.18rem var(--accent-primary), 0 4px 24px rgba(59, 130, 246, 0.18);
} 

.model-skeleton {
  width: 100%;
  height: 400px;
  background: transparent;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1rem;
  position: relative;
  z-index: 0;
  /* Remove shimmer and color */
  animation: none;
}
.model-skeleton::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.12) 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}
@media (max-width: 768px) {
  .model-skeleton {
    height: 300px;
  }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
} 

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

/* ==========================================
   EXIT INTENT MODAL
   ========================================== */
.exit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.exit-modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #444;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.modal-progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  width: 30%;
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { width: 30%; }
  50% { width: 35%; }
}

.modal-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.modal-description {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}

.ar-hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.genie-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
}

.modal-genie-model {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--accent-primary);
  --progress-bar-height: 0px;
  --progress-mask: transparent;
  filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.3));
}

.overlay-genie-model {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--accent-primary);
  --progress-bar-height: 0px;
  --progress-mask: transparent;
  filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.3));
}

.modal-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--text-light);
  border: none;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

.modal-cta:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-description {
    font-size: 14px;
  }
  
  .genie-container {
    width: 160px;
    height: 160px;
  }
  
  .overlay-genie-model {
    width: 100px;
    height: 100px;
    bottom: -60px;
  }
  
  .modal-cta {
    font-size: 16px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .genie-container {
    transform: none !important;
    width: 120px;
    height: 120px;
  }
  
  .overlay-genie-model {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .modal-description {
    font-size: 13px;
  }
} 