/* ===== 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.7;
}

.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;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  aspect-ratio: 1 / 1;
  background: var(--grad-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  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 {
  max-width: 450px;
  margin: 16px auto 0;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.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 {
    padding-top: 124px;
    padding-bottom: 56px;
  }

  .btn-primary {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-list {
    max-width: 550px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    align-items: center;
  }

  .hero-right .webinar-card {
    max-width: 430px;
    margin: 0 auto;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.section {
  padding: 104px 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 44px;
  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;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 32px;
}

.pain-step {
  position: static;
  display: block;
  width: 100%;
  margin-bottom: 18px;
  text-align: right;
  font-size: 3.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.09);
  line-height: 1;
  pointer-events: none;
}

.pain-icon {
  display: none;
}

.pain-quote {
  display: block;
  margin-top: 16px;
  width: 100%;
  font-size: 0.85rem;
  color: #a7e7ff;
  font-style: italic;
  font-weight: 400;
  border-left: 2px solid rgba(56, 189, 248, 0.85);
  padding: 3px 3px 3px 10px;
  line-height: 1.55;
  max-width: 100%;
  border-radius: 0 10px 10px 0;
  background: rgba(56, 189, 248, 0.08);
}

.pain-card p {
  color: #b8c4d8;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.pain-card:not(.pain-card--fatal) p {
  min-height: 4.35em;
}

.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.18);
}

.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(56, 189, 248, 0.2);
  border-radius: var(--radius-sm);
  min-width: 130px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.chain-item:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.25);
}

.chain-icon {
  font-size: 1.8rem;
  color: var(--neon-blue);
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.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 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 0;
}

.comparison-card li .check-icon {
  flex: 0 0 22px;
  margin-top: 2px;
}

.comparison-card li span:last-child {
  flex: 1;
  line-height: 1.5;
}

.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-checks {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.ai-checks li {
  align-items: flex-start;
}

.ai-checks .check-icon {
  flex: 0 0 22px;
  margin-top: 2px;
}

.ai-checks li span:last-child {
  flex: 1;
}

.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 {
  display: flex;
  flex-direction: column;
  padding: 30px;
  height: 100%;
}

.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-avatar-img--victor {
  opacity: 0.8;
}

.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;
  margin-top: auto;
  padding-top: 8px;
}

.testimonial-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.testimonial-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 0.95rem;
  line-height: 1;
  color: #38bdf8;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.18);
}

.testimonial-links a:hover {
  color: var(--neon-purple);
}

.testimonial-links a:hover .testimonial-link-icon {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.2);
}

.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: 1000px;
  margin: 0 auto;
}

.mistake-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.mistake-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.mistake-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.security-item {
  padding: 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.security-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.security-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.security-term {
  color: var(--neon-blue);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.12);
}

/* ============================================
   BONUS SECTION
   ============================================ */
.section--accent {
  background: transparent;
}

.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;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 32px;
  text-align: left;
}

.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: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.urgency-card {
  padding: 32px;
}

.urgency-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 14px;
  font-weight: 800;
}

.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--accent {
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%),
    var(--bg-card);
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.12);
}

.urgency-card--accent .urgency-scenario {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
  color: #7dd3fc;
}

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

.urgency-cta {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 28px;
}

/* ============================================
   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: 84px 0 72px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.final-block {
  text-align: center;
  max-width: 760px;
  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: 22px;
}

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

.final-block .webinar-card {
  max-width: 430px;
  margin: 0 auto;
  padding: 34px 28px 30px;
  text-align: left;
}

.final-block .bonus-box {
  max-width: 460px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   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) {
  .tablet-narrow-700 {
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-label {
    display: none;
  }

  .section-label {
    padding: 0;
    background: transparent;
    border: none;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .section {
    padding: 60px 0;
  }

  .section--final {
    padding: 68px 0 60px;
  }

  .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: 48px;
  }

  .step-item,
  .step-item:nth-child(even) {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas: "point content";
    align-items: start;
    gap: 20px;
  }

  .step-empty {
    display: none;
  }

  .step-centerpoint {
    grid-area: point;
    justify-content: center;
    align-self: start;
    height: auto;
    padding-top: 18px;
  }

  .step-content {
    grid-area: content;
    width: 100%;
    max-width: 100%;
  }

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

  .text-right .step-checks {
    align-items: flex-start;
  }

  .text-right .step-checks li {
    flex-direction: row;
  }

  .step-icon-box {
    display: none;
  }

  .step-icon-box--tablet-visible {
    display: flex;
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .hero-features {
    align-items: flex-start;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .hero-features li {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin: 0 auto;
  }

  .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: 450px;
  }

  .security-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .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;
  }

  .final-block .webinar-card {
    padding: 30px 24px 26px;
  }

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

@media (max-width: 576px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .solution-chain {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .chain-item {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    justify-content: center;
    padding: 14px 16px;
  }

  .chain-arrow {
    display: none;
  }

  .solution-note {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .steps-timeline {
    margin: 24px auto 0;
    padding: 0;
    gap: 24px;
  }

  .steps-timeline::before {
    left: 20px;
    width: 2px;
  }

  .step-item,
  .step-item:nth-child(even) {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .step-centerpoint {
    padding-top: 10px;
  }

  .step-number-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-width: 3px;
  }

  .step-content {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .step-content p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .step-checks {
    gap: 10px;
    margin-bottom: 14px;
  }

  .step-checks li {
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
  }

  .step-checks .check-icon {
    margin-top: 2px;
  }

  .step-note {
    font-size: 0.88rem !important;
    margin-top: 10px;
  }

  .step-icon-box--tablet-visible {
    display: none;
  }

  .security-item {
    padding: 24px 18px;
    gap: 14px;
  }

  .security-icon {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 50px 0;
  }

  .section--final {
    padding: 56px 0 52px;
  }

  .final-sub {
    margin-bottom: 18px;
  }

  .final-block .webinar-card {
    padding: 26px 20px 24px;
  }

}

/* ============================================
   SPEAKERS V2 — Horizontal photo layout
   ============================================ */
.speakers-v2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.speaker-v2 {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
}

.speaker-v2__photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.speaker-v2__photo {
  width: 180px;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
  border: 2px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.12);
}

.speaker-v2__glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(12px);
  z-index: -1;
}

.speaker-v2__glow--purple {
  background: radial-gradient(ellipse at center, rgba(192, 132, 252, 0.18) 0%, transparent 70%);
}

.speaker-v2__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.speaker-v2__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.speaker-v2__name {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: var(--grad-vivid);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.speaker-v2__role {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.speaker-v2__bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.speaker-v2__facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.speaker-v2__facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

.speaker-v2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.speaker-v2__tags span {
  padding: 5px 14px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}

.speaker-v2:hover .speaker-v2__tags span {
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--neon-blue);
}

@media (max-width: 768px) {
  .speaker-v2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 24px;
  }

  .speaker-v2__photo {
    width: 140px;
    height: 170px;
  }

  .speaker-v2__role {
    margin: 0 auto;
  }

  .speaker-v2__tags {
    justify-content: center;
  }

  .speaker-v2__facts {
    width: 100%;
    max-width: 322px;
    margin: 0 auto;
  }

  .speaker-v2__facts li {
    justify-content: flex-start;
    text-align: left;
  }

  .speaker-v2__facts .check-icon {
    flex: 0 0 22px;
    margin-top: 2px;
  }
}
