/* 
   =========================================
   DESIGN SYSTEM & CUSTOM STYLING
   =========================================
   Project: AI-Powered Sales Page Masterclass
   Theme: Future-Tech Obsidian Dark Mode
   Fonts: Outfit (Headings), Inter (Body)
   =========================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #060813;
  --bg-secondary: #0b0f1e;
  --bg-card: rgba(15, 22, 42, 0.4);
  --bg-card-hover: rgba(20, 30, 58, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.15);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-cyan: #00f2fe;
  --accent-purple: #8b5cf6;
  --accent-pink: #f43f5e;
  
  --gradient-text: linear-gradient(135deg, #00f2fe 0%, #8b5cf6 50%, #f43f5e 100%);
  --gradient-btn: linear-gradient(135deg, #00f2fe 0%, #8b5cf6 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
  --gradient-card: linear-gradient(135deg, rgba(15, 22, 42, 0.6) 0%, rgba(9, 13, 26, 0.8) 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* Ambient Floating Blobs (Background Visuals) */
.ambient-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: float-blob 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-cyan);
  top: -100px;
  left: -200px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  top: 800px;
  right: -100px;
  animation-duration: 25s;
}

.blob-3 {
  width: 700px;
  height: 700px;
  background: var(--accent-pink);
  bottom: 1500px;
  left: -300px;
  animation-duration: 30s;
}

.blob-4 {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
  bottom: 200px;
  right: -100px;
  animation-duration: 18s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.1);
  }
  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.accent-glow {
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
}

/* Floating Sticky Ticker (No Logo Header) */
.sticky-ticker {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 8, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}

.ticker-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ticker-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-badge {
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  animation: pulse-red 2s infinite;
}

.ticker-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-cyan);
}

.ticker-btn {
  background: var(--gradient-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ticker-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-btn);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(139, 92, 246, 0.7);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Badge Styles */
.glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero .sub-headline {
  font-size: 1.35rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  display: inline-block;
}

/* Hero Interface Mockup */
.hero-mockup {
  margin-top: 2rem;
  perspective: 1000px;
}

.mockup-container {
  background: #090e1a;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px -10px rgba(0, 242, 254, 0.2);
  transform: rotateX(10deg);
  transition: transform var(--transition-slow);
  max-width: 950px;
  margin: 0 auto;
}

.hero-mockup:hover .mockup-container {
  transform: rotateX(0deg) translateY(-10px);
}

.mockup-header {
  background: #0d1326;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot-red { background: #ef4444; }
.mockup-dot-yellow { background: #f59e0b; }
.mockup-dot-green { background: #10b981; }

.mockup-address {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.3rem 3rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.mockup-body {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  position: relative;
}

.mockup-video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.15);
  overflow: hidden;
  background: #000;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

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

.mockup-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.mockup-tag {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.mockup-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.mockup-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.mockup-bar {
  background: var(--gradient-btn);
  height: auto;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
  margin: 0 auto;
}

.mockup-preview-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.mockup-preview-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(0, 242, 254, 0.1) 50%, transparent 55%);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { transform: translate(-30%, -30%) rotate(0deg); }
  100% { transform: translate(30%, 30%) rotate(0deg); }
}

.mockup-product-img {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  height: 150px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-product-title {
  height: 12px;
  background: #334155;
  width: 80%;
  border-radius: 4px;
  margin-bottom: 8px;
}

.mockup-product-price {
  height: 10px;
  background: var(--accent-cyan);
  width: 40%;
  border-radius: 4px;
}

/* AI Evolution Section */
.evolution {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.evolution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.evolution-card {
  position: relative;
  overflow: hidden;
}

.evolution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.card-old::before {
  background: var(--accent-pink);
}

.card-new::before {
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
}

.card-old {
  background: rgba(244, 63, 94, 0.03);
  border-color: rgba(244, 63, 94, 0.15);
}

.card-new {
  background: rgba(0, 242, 254, 0.03);
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 0 20px -10px rgba(0, 242, 254, 0.2);
}

.card-header-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-header-v2 h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.badge-old {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-pink);
}

.badge-new {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
}

.evolution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.evolution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

.evolution-item-icon {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.card-old .evolution-item-icon { color: var(--accent-pink); }
.card-new .evolution-item-icon { color: var(--accent-cyan); }
.card-old .evolution-item { color: var(--text-secondary); }
.card-new .evolution-item { color: var(--text-primary); font-weight: 500; }

/* Target Audience ("Who is this for?") Section */
.audience {
  padding: 6rem 0;
  background: rgba(11, 15, 30, 0.5);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.audience-card {
  display: flex;
  gap: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 10px 30px -15px rgba(0, 242, 254, 0.2);
}

.audience-icon-wrap {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.audience-card:hover .audience-icon-wrap {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
  transform: scale(1.05);
}

.audience-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.audience-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Benefits & Curriculum Section */
.benefits {
  padding: 6rem 0;
}

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

.benefit-card-v2 {
  position: relative;
  overflow: hidden;
}

.benefit-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.benefit-card-v2:hover .benefit-number {
  color: rgba(0, 242, 254, 0.08);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

.benefit-card-v2 p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Testimonial Section */
.testimonials {
  padding: 6rem 0;
  background: rgba(11, 15, 30, 0.3);
}

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

.testimonial-card {
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* The Offer & Value Stack Section */
.offer {
  padding: 6rem 0;
  position: relative;
}

.offer-card {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid rgba(139, 92, 246, 0.3);
  position: relative;
  background: radial-gradient(100% 100% at 50% 0%, rgba(139, 92, 246, 0.1) 0%, rgba(6, 8, 19, 0.95) 100%);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(139, 92, 246, 0.3);
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.5), rgba(139, 92, 246, 0.5), rgba(244, 63, 94, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.offer-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}

.offer-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.offer-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(5px);
  border-color: rgba(0, 242, 254, 0.2);
}

.offer-item-detail {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.offer-check {
  color: var(--accent-cyan);
  font-size: 1.25rem;
  background: rgba(0, 242, 254, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-item-name {
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
}

.offer-item-bonus {
  background: rgba(244, 63, 94, 0.1);
  color: var(--accent-pink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 0.75rem;
  letter-spacing: 0.05em;
  display: inline-block;
  vertical-align: middle;
}

.offer-item-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.offer-pricing-wrap {
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
  text-align: center;
}

.total-value {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.total-value span {
  text-decoration: line-through;
}

.today-price {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  color: #fff;
}

.today-price span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  vertical-align: super;
}

.offer-cta {
  width: 100%;
  max-width: 500px;
  margin: 1.5rem auto 2rem;
}

.secure-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secure-badge svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

/* FAQ Accordion Section */
.faq {
  padding: 6rem 0;
}

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

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(139, 92, 246, 0.4);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent-cyan);
  transition: transform var(--transition-normal), background var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer Section */
.footer {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-cyan);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Micro-Animations & Keyframes */
@keyframes pulse-red {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.6); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(244, 63, 94, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.8rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 1.5rem;
  }
  .hero {
    padding: 6rem 0 4rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .evolution-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mockup-body {
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .mockup-title {
    font-size: 1.6rem;
  }
  .mockup-desc {
    font-size: 0.95rem;
  }
  .ticker-content {
    justify-content: center;
    text-align: center;
  }
  .today-price {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary, .btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .ticker-timer {
    font-size: 1rem;
  }
  .today-price {
    font-size: 3.2rem;
  }
}

/* =========================================
   ADDITIONAL HIGH-CONVERTING CUSTOM STYLES
   ========================================= */

/* Hook Section (Problem Agitation) */
.hook-sec {
  padding: 6rem 0;
  position: relative;
}
.hook-card {
  border: 1px solid rgba(244, 63, 94, 0.2);
  background: radial-gradient(100% 100% at 50% 0%, rgba(244, 63, 94, 0.05) 0%, rgba(6, 8, 19, 0.95) 100%);
  box-shadow: 0 20px 50px -15px rgba(244, 63, 94, 0.1);
}
.hook-headline {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.text-pink {
  color: var(--accent-pink);
  text-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}
.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.hook-left, .hook-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hook-highlight {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  border-left: 3px solid var(--accent-pink);
  padding-left: 1rem;
}
.hook-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hook-text strong {
  color: #fff;
}
.hook-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hook-badge-item {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}
.solution-intro {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.solution-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.question-callout {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-cyan);
}
.question-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.question-highlight {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

/* Curriculum Grid Styles */
.curriculum {
  padding: 6rem 0;
  background: rgba(11, 15, 30, 0.2);
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.learn-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 14px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.learn-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 10px 20px -10px rgba(0, 242, 254, 0.2);
}
.learn-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.learn-card p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Course Details ("What's Inside") Section */
.course-details {
  padding: 6rem 0;
}
.whats-inside-card {
  max-width: 900px;
  margin: 0 auto;
}
.whats-inside-card h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.whats-inside-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}
.discover-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 3rem;
}
.discover-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
}
.discover-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.discover-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.discover-list li .check-mark {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.result-box {
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
  text-align: center;
}
.result-box h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.result-box p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonial Screenshot Grid */
.testimonials-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
}
.screenshot-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0.75rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.screenshot-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: transform var(--transition-normal);
}
.screenshot-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 15px 30px rgba(0, 242, 254, 0.15);
}
.screenshot-hover-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(6, 8, 19, 0.9);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.screenshot-card:hover .screenshot-hover-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(4, 5, 12, 0.97);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.lightbox-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 750px;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-modal.show .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1001;
}
.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--accent-cyan);
  text-decoration: none;
}

/* Offer Card Two-Column Grid */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}
.offer-mockup-col {
  text-align: center;
}
.offer-mockup-col img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2), 0 0 30px rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-normal);
}
.offer-mockup-col img:hover {
  transform: translateY(-5px) scale(1.03);
}
.offer-info-col {
  display: flex;
  flex-direction: column;
}

/* Responsive updates for additional sections */
@media (max-width: 900px) {
  .hook-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .offer-mockup-col img {
    max-width: 260px;
  }
}

/* Custom Animated Check Bullet Styling */
.cool-check-bullet {
  position: relative;
  width: 24px;
  height: 24px;
  background: rgba(0, 242, 254, 0.08);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
  transition: all var(--transition-fast);
  animation: pulse-cyan-ring 3s infinite;
  margin-top: 2px; /* Slight alignment boost for text lines */
}

.cool-check-bullet::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--accent-cyan);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

/* Hover and Active State Actions */
.learn-card:hover .cool-check-bullet,
.discover-list li:hover .cool-check-bullet {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5), 0 0 35px rgba(0, 242, 254, 0.3);
  transform: scale(1.1) rotate(360deg);
}

.learn-card:hover .cool-check-bullet::after,
.discover-list li:hover .cool-check-bullet::after {
  border-color: var(--bg-primary);
}

@keyframes pulse-cyan-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0, 242, 254, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}


