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

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #020617; /* Very dark navy */
  --bg-secondary: #0f172a; /* Deep navy */
  --bg-card: rgba(15, 23, 42, 0.75);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Blue-dominant gradient palette */
  --grad-main:   linear-gradient(90deg, #2563eb, #7c3aed, #9333ea); /* Blue to Purple */
  --grad-vivid:  linear-gradient(90deg, #3b82f6, #6366f1, #c026d3); /* Cool Blue to Vivid Purple */
  --grad-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --grad-border: linear-gradient(90deg, rgba(37,99,235,0.7), rgba(124,58,237,0.5), rgba(37,99,235,0.7));
  --grad-border-bright: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);

  /* Neons */
  --neon-blue:   #38bdf8;
  --neon-purple: #c084fc;
  --neon-indigo: #818cf8;

  /* Glows */
  --glow-blue:    0 0 25px rgba(56,189,248,0.5), 0 0 70px rgba(37,99,235,0.2);
  --glow-purple:  0 0 25px rgba(192,132,252,0.4), 0 0 70px rgba(147,51,234,0.15);
  --glow-card:    0 0 40px rgba(37,99,235,0.1), 0 8px 40px rgba(0,0,0,0.4);
  --glow-card-h:  0 0 50px rgba(56,189,248,0.18), 0 8px 50px rgba(0,0,0,0.5);

  --radius: 20px;
  --radius-sm: 14px;
  --max-width: 1100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== BACKGROUND EFFECTS ===== */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; opacity: 0; animation: float linear infinite; }

.glow-orb {
  position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0;
  animation: orb-move 20s ease-in-out infinite alternate;
}
.glow-orb--1 { width: 500px; height: 500px; background: rgba(37,99,235,0.15); top: -100px; left: -100px; }
.glow-orb--2 { width: 400px; height: 400px; background: rgba(124,58,237,0.12); bottom: -50px; right: -50px; animation-delay: -5s; }
.glow-orb--3 { width: 300px; height: 300px; background: rgba(56,189,248,0.1); top: 40%; left: 60%; animation-delay: -10s; }

@keyframes orb-move {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 50px) scale(1.1); }
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0;
  background: rgba(2, 6, 23, 0.8); backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  transition: padding 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: #3C81F5;
  letter-spacing: -1px;
  transition: font-size 0.25s ease;
}
.logo span {
  color: inherit;
}

.header-cta {
  padding: 8px 28px; background: var(--grad-main); border-radius: 100px;
  color: #fff; font-weight: 700; font-size: 13px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3); transition: transform 0.2s, padding 0.25s ease, font-size 0.25s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5); }
.header.scrolled { padding: 8px 0; background: rgba(2, 6, 23, 0.92); backdrop-filter: blur(18px); }
.header.scrolled .logo { font-size: 21px; }
.header.scrolled .header-cta { padding: 6px 22px; font-size: 12px; }

/* ===== HERO ===== */
.hero { padding-top: 160px; padding-bottom: 80px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 24px; font-weight: 900; letter-spacing: -2px; }
.gradient-text {
  background: var(--grad-vivid); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}

.subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 40px; }
.subtitle strong { color: #fff; }

.section-label {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px;
  background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 100px; color: var(--neon-blue); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 18px; margin-bottom: 12px;
}

.hero-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.hero-features li { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.95rem; }
.hero-left { margin-top: -14px; }
.check-icon {
  width: 22px; height: 22px; background: var(--grad-accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 11px; font-weight: 900; box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

/* ===== WEBINAR CARD ===== */
.glass-card {
  background: var(--bg-card); backdrop-filter: blur(20px); border-radius: var(--radius);
  padding: 48px 40px; position: relative; overflow: hidden; border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: var(--glow-card); transition: transform 0.3s, box-shadow 0.3s;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0; padding: 1.5px; border-radius: var(--radius);
  background: var(--grad-border); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; pointer-events: none;
}
.glass-card:hover { transform: translateY(-5px); box-shadow: var(--glow-card-h); border-color: rgba(56, 189, 248, 0.3); }

.webinar-badge {
  display: inline-block; padding: 4px 12px; background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3); border-radius: 6px; color: var(--neon-blue);
  font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px;
}

.webinar-card h3 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 20px; font-weight: 800; }

/* Market Chart */
.market-chart {
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 18px 8px;
}

.chart-title { display: flex; flex-direction: column; gap: 2px; }
.chart-name {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #22d3ee;
}
.chart-sub {
  font-size: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chart-badge {
  padding: 1px 6px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 3px;
  font-size: 8px;
  font-weight: 800;
  color: #22d3ee;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.chart-body {
  position: relative;
  padding: 0 18px 16px;
}

.chart-svg {
  width: 100%;
  height: 80px;
  display: block;
}

.chart-line {
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.6));
}

.chart-value {
  position: absolute;
  right: 70px;
  bottom: 66px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.chart-percent {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  color: #22d3ee;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
  line-height: 1;
  margin: 0;
}

.chart-cycle {
  font-size: 7px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0;
}

.bonus-box {
  background: rgba(37, 99, 235, 0.08);
  border-left: 3px solid var(--neon-blue);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
}
.bonus-box strong { color: var(--neon-blue); }

.btn-primary {
  display: block; width: 100%; padding: 18px; background: var(--grad-main);
  border: none; border-radius: 100px; color: #fff; font-size: 16px; font-weight: 800;
  text-align: center; text-decoration: none; cursor: pointer;
  box-shadow: var(--glow-blue); animation: neon-pulse 3s infinite alternate; transition: all 0.3s;
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 0 40px rgba(37, 99, 235, 0.7); }

@keyframes neon-pulse {
  from { box-shadow: 0 0 15px rgba(37, 99, 235, 0.4); }
  to { box-shadow: 0 0 30px rgba(37, 99, 235, 0.8), 0 0 60px rgba(124, 58, 237, 0.3); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px;
}
.stat-item {
  background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(37, 99, 235, 0.1);
  padding: 30px; border-radius: var(--radius); text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.stat-item:hover { border-color: rgba(37, 99, 235, 0.3); background: rgba(30, 41, 59, 0.8); }

.stat-number {
  font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 5px;
  background: var(--grad-vivid); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .subtitle { margin-left: auto; margin-right: auto; }
  .hero-features { align-items: center; }
  .stats-bar { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.section {
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.section-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 40px;
}
.section-note strong { color: #fff; }

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pain-card {
  position: relative;
  text-align: left;
  padding: 32px 24px;
}

.pain-step {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.pain-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.pain-quote {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
  border-left: 2px solid rgba(56, 189, 248, 0.4);
  padding-left: 12px;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.pain-card--fatal {
  border-color: rgba(239, 68, 68, 0.3) !important;
}
.pain-card--fatal::before {
  background: linear-gradient(90deg, rgba(239,68,68,0.4), rgba(239,68,68,0.1), rgba(239,68,68,0.4)) !important;
}
.pain-card--fatal .pain-icon { color: #ef4444; }
.pain-card--fatal .pain-step { color: rgba(239, 68, 68, 0.05); }
.pain-card--fatal p { color: #fff; }

.pain-result {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.pain-result strong { color: #ef4444; }

/* ============================================
   INSIGHT SECTION
   ============================================ */
.insight-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.insight-icon {
  font-size: 1.8rem;
}

.insight-quote {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 30px;
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.insight-quote-icon { font-size: 1.5rem; }
.insight-quote p { color: var(--text-secondary); font-size: 0.95rem; }
.insight-quote strong { color: #fca5a5; }

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.chain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-sm);
  min-width: 130px;
  transition: border-color 0.3s, transform 0.3s;
}
.chain-item:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
}

.chain-icon { font-size: 1.8rem; }
.chain-item span:last-child { font-weight: 700; font-size: 0.85rem; color: var(--text-primary); }

.chain-arrow {
  font-size: 1.5rem;
  color: var(--neon-blue);
  font-weight: 900;
}

.solution-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================
   HOW SYSTEM WORKS — ZIGZAG STEPS
   ============================================ */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 0 20px;
}

/* Vertical line connecting steps */
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px; /* Thicker line */
  background: linear-gradient(180deg, rgba(37,99,235,0.1), rgba(124,58,237,0.7), rgba(37,99,235,0.1)); /* Stronger gradient */
  transform: translateX(-50%);
  z-index: 0; /* Ensure it's behind content */
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr; /* Wider center column */
  align-items: center; /* Align items to center */
  gap: 40px; /* Increased gap */
  position: relative;
  z-index: 1;
}

.step-centerpoint {
  display: flex;
  justify-content: center;
  position: relative;
  height: 100%;
}

.step-number-circle {
  width: 56px; /* Larger circle */
  height: 56px; /* Larger circle */
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem; /* Larger font */
  font-weight: 900;
  color: #fff;
  box-shadow: var(--glow-blue);
  border: 5px solid var(--bg-primary); /* Thicker border */
  position: relative;
  z-index: 2;
  margin-top: 0; /* Centered vertically */
}

.step-content {
  display: flex;
  flex-direction: column;
  background: var(--bg-card); /* Added background */
  padding: 30px; /* Added padding */
  border-radius: var(--radius); /* Rounded corners */
  border: 1px solid rgba(37, 99, 235, 0.2); /* Subtle border */
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.05); /* Subtle shadow */
  transition: all 0.3s ease; /* Smooth transition */
}
.step-content:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
  transform: translateY(-5px);
}

.text-right {
  text-align: right;
  align-items: flex-end;
}

.text-left {
  text-align: left;
  align-items: flex-start;
}

.step-icon-box {
  width: 90px; /* Larger icon box */
  height: 90px; /* Larger icon box */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem; /* Larger icon */
  padding: 0;
  margin-bottom: 20px;
  color: var(--neon-blue);
  background: rgba(37, 99, 235, 0.08); /* Subtle background for icon */
  border-radius: var(--radius-sm); /* Rounded corners */
}

.step-content h3 {
  font-size: 1.6rem; /* Larger heading */
  font-weight: 800;
  margin-bottom: 15px; /* Increased margin */
  background: var(--grad-vivid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1rem; /* Slightly larger paragraph text */
  line-height: 1.8; /* Increased line height */
  margin-bottom: 20px; /* Increased margin */
}

.step-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Increased gap */
  margin-bottom: 20px; /* Increased margin */
}
.text-right .step-checks {
  align-items: flex-end;
}

.step-checks li {
  display: flex;
  align-items: center;
  gap: 12px; /* Increased gap */
  color: var(--text-secondary);
  font-size: 0.95rem; /* Slightly larger check text */
}
.text-right .step-checks li {
  flex-direction: row-reverse;
}

.step-note {
  font-style: italic;
  color: var(--text-muted) !important;
  font-size: 0.95rem !important; /* Slightly larger note text */
  margin-top: 15px; /* Added margin-top */
}

.step-image {
  width: 100%;
  max-width: 300px; /* Max width for images */
  height: auto;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

/* ============================================
   COMPARISON (GRID-BOTS vs MANUAL)
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-card {
  padding: 36px 30px;
}

.comparison-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 8px;
}

.comparison-card--bad {
  border-color: rgba(239, 68, 68, 0.2) !important;
}
.comparison-card--bad::before {
  background: linear-gradient(90deg, rgba(239,68,68,0.3), rgba(239,68,68,0.1), rgba(239,68,68,0.3)) !important;
}

.comparison-card--good {
  border-color: rgba(34, 197, 94, 0.2) !important;
}
.comparison-card--good::before {
  background: linear-gradient(90deg, rgba(34,197,94,0.3), rgba(34,197,94,0.1), rgba(34,197,94,0.3)) !important;
}

/* ============================================
   AI SECTION
   ============================================ */
.ai-factors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.ai-factor {
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-blue);
}

.ai-example {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.ai-example p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.ai-example strong { color: #fff; }

.ai-cta {
  margin-top: 16px !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  background: var(--grad-vivid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(56, 189, 248, 0.4);
  background: var(--bg-secondary);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.testimonial-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(56, 189, 248, 0.4);
  background: var(--bg-secondary);
}

.testimonial-header h4 { font-size: 1.1rem; font-weight: 800; }
.testimonial-result {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-blue);
}

.testimonial-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.testimonial-card li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding-left: 12px;
  position: relative;
}
.testimonial-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--neon-blue);
}

.testimonial-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial-links a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.testimonial-links a:hover { color: var(--neon-purple); }

.testimonials-more {
  text-align: center;
  margin-top: 40px;
}

.link-more {
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.link-more:hover { color: var(--neon-purple); }

/* ============================================
   WEBINAR CONTENT LIST
   ============================================ */
.webinar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.webinar-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.cta-center { text-align: center; }
.cta-center .btn-primary { display: inline-block; width: auto; padding: 18px 60px; }

/* ============================================
   SPEAKERS
   ============================================ */
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.speaker-card {
  padding: 36px;
  text-align: center;
}

.speaker-avatar {
  width: 72px;
  height: 72px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.speaker-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.speaker-role { color: var(--neon-blue); font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; }

.speaker-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.speaker-facts li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding-left: 14px;
  position: relative;
}
.speaker-facts li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--neon-blue);
  font-weight: 900;
}

.speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.speaker-tags span {
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   MISTAKES
   ============================================ */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.mistake-card {
  padding: 32px 24px;
  text-align: center;
}

.mistake-num {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  margin-bottom: 16px;
  background: var(--grad-vivid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

.mistake-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================
   SECURITY
   ============================================ */
.security-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.security-item {
  padding: 32px 24px;
  text-align: center;
}

.security-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.security-item p { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================
   BONUS SECTION
   ============================================ */
.section--accent {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.bonus-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bonus-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 100px;
  color: var(--neon-blue);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.bonus-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.bonus-section p { color: var(--text-secondary); margin-bottom: 24px; }

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============================================
   URGENCY
   ============================================ */
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.urgency-card { padding: 32px; }

.urgency-scenario {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 6px;
  color: #fca5a5;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.urgency-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

.urgency-cta {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(37, 99, 235, 0.3); }
.faq-item.active { border-color: rgba(56, 189, 248, 0.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--neon-blue); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--neon-blue);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section--final {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.final-block {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.final-block h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.final-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.final-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 6px;
  color: var(--neon-blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.final-block h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.4;
}

.final-block .btn-primary {
  display: inline-block;
  width: auto;
  padding: 20px 70px;
  font-size: 1.1rem;
}

.final-block .bonus-box {
  max-width: 400px;
  margin: 24px auto 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ============================================
   RESPONSIVE — ALL NEW SECTIONS
   ============================================ */
@media (max-width: 992px) {
  .section { padding: 70px 0; }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .insight-items { flex-direction: column; align-items: center; gap: 20px; }

  .solution-chain { gap: 10px; }
  .chain-item { min-width: 100px; padding: 18px 16px; }
  .chain-arrow { font-size: 1.2rem; }

  /* Zigzag → stack on mobile */
  .steps-timeline::before { left: 30px; }
  .step-item,
  .step-item:nth-child(even) {
    flex-direction: row;
    gap: 24px;
  }
  .step-visual { min-width: 80px; }
  .step-icon-box { width: 70px; height: 70px; font-size: 2rem; }
  .step-content { max-width: 100%; }

  .comparison-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .mistakes-grid { grid-template-columns: 1fr; max-width: 350px; }
  .security-items { grid-template-columns: 1fr; max-width: 350px; }
  .urgency-grid { grid-template-columns: 1fr; max-width: 400px; }

  .cta-center .btn-primary { width: 100%; padding: 18px; }
  .final-block .btn-primary { width: 100%; padding: 18px; }

  .footer .container { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 576px) {
  .pain-grid { grid-template-columns: 1fr; }
  .solution-chain { flex-direction: column; }
  .chain-arrow { transform: rotate(90deg); }
  .section-title { font-size: 1.5rem; }
}
