*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --violet-900: #2d1054;
  --violet-800: #3f1a73;
  --violet-700: #5b2d99;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-400: #a78bfa;
  --violet-300: #c4b5fd;
  --violet-200: #ddd6fe;
  --violet-100: #ede9fe;
  --violet-50: #f5f3ff;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --success: #22c55e;
  --warning: #f59e0b;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--violet-100);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(91,45,153,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--violet-700), var(--violet-500));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: -0.5px;
}
.nav-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
}
.nav-brand span { color: var(--violet-600); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet-600); }

.nav-cta {
  background: var(--violet-700) !important;
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--violet-800) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  height: 100%;
  min-height: auto;
  padding: 40px 0 48px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,45,153,0.05) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

/* Grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Stage 1: Centered hook */
.hero-stage-message {
  text-align: center;
  max-width: 720px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-stage-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-500);
  margin-bottom: 1rem;
}
.hero-stage-message .hero-title { margin-bottom: 1.5rem; }
.hero-stage-message .hero-subtitle {
  margin: 0 auto 1.25rem;
  max-width: 560px;
}
.hero-stage-message .hero-bac-banner {
  margin: 0 auto 1.5rem;
  max-width: 460px;
  text-align: left;
}
.hero-stage-message .hero-actions {
  justify-content: center;
}

/* Stage 2: Product proof */
.hero-stage-proof {
  margin-top: 3.75rem;
  width: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.25s both;
}
.hero-stage-proof .hero-visual {
  min-width: 0;
  max-width: 560px;
}
.hero-proof-bullets {
  padding: 1.5rem;
}
.hero-proof-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin: 0 0 1.25rem;
}
.hero-proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-proof-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}
.hero-proof-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--violet-50);
  border: 1px solid var(--violet-200);
  border-radius: 50%;
  color: var(--violet-600);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--violet-50);
  border: 1px solid var(--violet-200);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-700);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--violet-600);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 1rem 0 1rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--violet-700), var(--violet-600));
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(91,45,153,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,45,153,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gray-700);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--violet-300);
  color: var(--violet-700);
}

/* Hero Visual */
.hero-visual {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--violet-100);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(91,45,153,0.08), 0 0 0 1px rgba(139,92,246,0.05);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.hero-card-topic {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--violet-700);
  background: var(--violet-50);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}
.hero-card-progress-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Simulated progress bars */
.progress-topics { display: flex; flex-direction: column; gap: 0.8rem; }

.progress-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.progress-topic-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  min-width: 100px;
}
.progress-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.5s ease-out;
}
.progress-bar-fill.passed { background: linear-gradient(90deg, var(--violet-500), var(--success)); }
.progress-bar-fill.progress { background: linear-gradient(90deg, var(--violet-400), var(--violet-500)); }
.progress-bar-fill.pending { background: var(--gray-200); }

.progress-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 38px;
  text-align: right;
}
.progress-pct.pass { color: var(--success); }
.progress-pct.wip { color: var(--violet-600); }
.progress-pct.na { color: var(--gray-300); }

.hero-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--violet-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-card-status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-card-attempts {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray-400);
}

.hero-card-tags {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.tag-easy { background: #dcfce7; color: #166534; }
.tag-medium { background: #fef3c7; color: #92400e; }
.tag-hard { background: #fce7f3; color: #9d174d; }
.tag-type {
  background: var(--violet-50);
  color: var(--violet-600);
  font-weight: 500;
}
.tag-sep {
  color: var(--gray-300);
  font-size: 0.7rem;
}

/* Floating badges around card */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  animation: floatBadge 6s ease-in-out infinite;
}
.float-badge.ai {
  top: -12px; right: -16px;
  color: var(--violet-700);
  border: 1px solid var(--violet-100);
}
.float-badge.check {
  bottom: 20px; left: -20px;
  color: var(--success);
  border: 1px solid #dcfce7;
  animation-delay: -3s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── STATS ── */
.stats {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--violet-700);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* ── SECTION COMMON ── */
section {
  padding: 6rem 2rem;
  max-width: 100%;
  overflow-x: hidden;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  section {
    padding: 2.5rem 1rem;
  }
  .section-inner {
    padding: 0 0.5rem;
  }
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ── PROBLEM SECTION ── */
.problem { background: #f8fafc; border-top: 1px solid #e5e7eb; }
.problem-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: var(--violet-200);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91,45,153,0.06);
}
.problem-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.problem-icon.red { background: #fef2f2; }
.problem-icon.amber { background: #fffbeb; }
.problem-icon.blue { background: var(--violet-50); }
.problem-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how { background: var(--violet-50); }
.steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-200), var(--violet-400), var(--violet-200));
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--white);
  color: var(--violet-700);
  border: 2.5px solid var(--violet-300);
  box-shadow: 0 4px 12px rgba(91,45,153,0.1);
}
.step h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* ── FEATURES ── */
.features { background: var(--white); }
.features-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  display: flex;
  gap: 1.2rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--violet-200);
  box-shadow: 0 8px 24px rgba(91,45,153,0.06);
}
.feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--violet-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── DOMAINS / PRICING ── */
.pricing {
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
  border-top: 3px solid var(--violet-300);
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  scroll-margin-top: 80px;
}

/* Conversion header */
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header .section-title { margin-bottom: 0.75rem; }
.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Decision guidance */
.pricing-guidance { text-align: center; margin-bottom: 2rem; }
.pricing-guidance-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.pricing-guidance-arrow {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--violet-700);
}

/* Card grid */
.pricing-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-400), var(--violet-600));
  opacity: 0;
  transition: opacity 0.3s;
}
.pricing-card:hover {
  border-color: var(--violet-300);
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
}
.pricing-card:hover::before { opacity: 1; }

.pricing-card.popular {
  border-color: var(--violet-400);
  box-shadow: 0 8px 30px rgba(91,45,153,0.12);
}
.pricing-card.popular::before { opacity: 1; }

.popular-tag {
  position: absolute;
  top: 14px; right: -32px;
  background: var(--violet-600);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.pricing-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
}
.pricing-card .desc {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 1.2rem;
}
/* ── Pricing card — discount block ─────────────────────────── */
.pricing-price-block {
  margin-bottom: 0.6rem;
}
.pricing-price-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.15rem;
}
.pricing-badge-discount {
  display: inline-flex;
  align-items: center;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.48rem;
  border-radius: 5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pricing-price-old {
  font-size: 1.15rem;
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #dc2626;
  font-weight: 700;
  line-height: 1;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--violet-700);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.pricing-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 400;
}
.pricing-save-line {
  font-size: 0.72rem;
  font-weight: 600;
  color: #15803d;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  text-align: center;
}
.pricing-deal-timer {
  color: #dc2626;
  font-weight: 700;
}

/* Bundles still use this class via inline */
.pricing-week-deal {
  font-size: 0.7rem;
  color: #dc2626;
  font-weight: 700;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 0.18rem 0.5rem;
  display: inline-block;
}
.pricing-promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  border-radius: 12px;
  padding: 0.75rem 1.4rem;
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(30,27,75,0.18);
}
.pricing-period {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 1.2rem;
}
.pricing-buy {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--violet-700);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-buy:hover {
  background: var(--violet-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91,45,153,0.25);
}

/* ── ABOUT IUCOSOFT ── */
.about { background: var(--white); }
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.about-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-point-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: var(--violet-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.about-point h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}
.about-point p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.about-stats-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 6rem;
}
.about-stat-card {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-600));
  border-radius: 18px;
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-stat-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.about-stat-big {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.about-stat-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  transition: all 0.3s;
}
.about-badge:hover {
  border-color: var(--violet-200);
  box-shadow: 0 4px 12px rgba(91,45,153,0.06);
}
.about-badge span {
  font-size: 1.4rem;
}
.about-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-800);
}
.about-badge small {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ── VIDEO ── */
.video-section { background: #f8fafc; }
.video-section .section-title { margin-bottom: 1.5rem; }
.video-section .section-desc { margin-bottom: 0; }
.video-preview-heading {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.video-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 1rem auto 0;
}
.video-preview-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.video-preview-card-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
.video-preview-card-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
}
.video-post-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-500);
  font-style: italic;
}
.video-cta-micro {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .video-preview-cards { grid-template-columns: 1fr; max-width: 320px; }
}
.video-wrapper {
  margin-top: 2.5rem;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--violet-800), var(--violet-600));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: transform 0.3s;
  box-shadow: 0 20px 60px rgba(91,45,153,0.2);
}
.video-placeholder:hover { transform: scale(1.01); }
.video-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.video-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.video-placeholder:hover .video-mock { opacity: 0.35; }
.video-mock-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: rgba(0,0,0,0.15);
}
.video-mock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  opacity: 0.7;
}
.video-mock-title {
  margin-left: 0.5rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.video-mock-body { padding: 1rem; }
.video-mock-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.video-mock-badge {
  font-size: 0.6rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.video-mock-timer {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.video-mock-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.video-mock-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.video-mock-option {
  font-size: 0.6rem;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.video-mock-option.selected {
  background: rgba(139,92,246,0.3);
  border-color: rgba(139,92,246,0.6);
  color: white;
}
.video-mock-difficulty {
  display: flex;
  gap: 0.3rem;
}
.video-mock-difficulty .tag {
  font-size: 0.55rem;
  padding: 0.1rem 0.35rem;
  opacity: 0.7;
}
.video-play-btn {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.video-play-btn svg { margin-left: 3px; }
.video-placeholder:hover .video-play-btn {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}
.video-play-text {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
}

/* ── COMPARISON ── */
.comparison { background: var(--white); }
.comparison-table {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.comparison-col {
  padding: 0;
}
.comparison-header {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.comparison-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.comparison-header.without {
  background: #fef2f2;
  color: #991b1b;
}
.comparison-header.with {
  background: var(--violet-50);
  color: var(--violet-800);
}
.comparison-emoji { font-size: 1.6rem; }
.comparison-list {
  list-style: none;
  padding: 1.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.comp-icon {
  min-width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.comp-icon.neg {
  background: #fecaca;
  color: #991b1b;
}
.comp-icon.pos {
  background: #dcfce7;
  color: #166534;
}
.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  padding: 0 1rem;
  border-left: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
}
.comparison-divider span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gray-400);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
}

/* ── LIVE STATS ── */
.live-stats {
  background: var(--violet-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.live-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(139,92,246,0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(139,92,246,0.1) 0%, transparent 50%);
}
.live-stats .section-inner { position: relative; z-index: 1; }
.live-stats .section-label { color: var(--violet-300); }
.live-stats .section-title { color: var(--white); }

.live-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.live-pulse {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--violet-300);
  font-weight: 500;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

.live-stats-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.live-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.live-stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.live-stat-card.accent {
  background: rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.3);
}
.live-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.live-stat-label {
  font-size: 0.85rem;
  color: var(--violet-300);
  margin-bottom: 1rem;
}
.live-stat-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.live-stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--violet-400), var(--success));
  border-radius: 100px;
  transition: width 2s ease-out;
}

.live-activity {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.live-activity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  animation: fadeInUp 0.5s ease-out both;
}
.live-activity-item strong {
  color: rgba(255,255,255,0.9);
}
.live-activity-dot {
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 3s infinite;
}
.live-activity-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ── TESTIMONIALS ── */
.testimonials { background: #f8fafc; }
.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--violet-200);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91,45,153,0.06);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-200), var(--violet-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-800);
}
.testimonial-detail {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}

/* Testimonial carousel controls — hidden on desktop */
.testimonial-carousel-nav { display: none; }
.testimonial-carousel-footer { display: none; }

/* ── FAQ ── */
.faq { background: #f8fafc; }
.faq-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* Hide items beyond the 5th by default */
.faq-grid .faq-item:nth-child(n+6) {
  display: none;
}
.faq-grid.faq-expanded .faq-item:nth-child(n+6) {
  display: block;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: color 0.2s;
  user-select: none;
  gap: 12px;
}
.faq-question:hover { color: var(--violet-600); }
.faq-chevron {
  transition: transform 0.3s;
  font-size: 0.8rem;
  color: var(--gray-400);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.7;
}
/* "Vezi mai multe" toggle button */
.faq-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 20px auto 0;
  padding: 10px 24px;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  color: var(--gray-600);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.faq-show-more:hover {
  border-color: var(--violet-400);
  color: var(--violet-600);
  background: var(--violet-50);
}
.faq-show-more-icon {
  transition: transform 0.3s;
  font-size: 0.75rem;
}
.faq-show-more.expanded .faq-show-more-icon {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .faq-grid {
    margin-top: 2.5rem;
    gap: 1rem;
  }
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  .faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .faq { padding: 2.5rem 0; }
  .faq-question {
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
    min-height: 44px;
  }
  .faq-answer-inner {
    padding: 0 1rem 0.9rem;
    font-size: 0.82rem;
  }
}

/* ── BLOG ── */
.blog { background: var(--gray-50); }
.blog-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--violet-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(91,45,153,0.08);
}
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.blog-card-featured .blog-card-image { min-height: 240px; }
.blog-card-featured h3 { font-size: 1.25rem; }
.blog-card-featured p { font-size: 0.95rem; }

.blog-card-image {
  position: relative;
  overflow: hidden;
}
.blog-card-img-placeholder {
  width: 100%;
  min-height: 140px;
  background: linear-gradient(135deg, var(--violet-100), var(--violet-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s;
}
.blog-card-img-placeholder.featured {
  min-height: 100%;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--violet-200), var(--violet-100));
}
.blog-card:hover .blog-card-img-placeholder {
  transform: scale(1.05);
}
.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--violet-700);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-600);
  margin-top: 0.3rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-link {
  color: var(--violet-800);
}
.blog-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ── BUNDLES ── */
.bundles-section {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-100);
}
.bundles-header {
  text-align: center;
  margin-bottom: 2rem;
}
.bundles-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-700);
  background: var(--violet-50);
  border: 1.5px solid var(--violet-200);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.bundles-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.bundle-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.bundle-card:hover {
  border-color: var(--violet-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(91,45,153,0.08);
}
.bundle-popular {
  border-color: var(--violet-400);
  box-shadow: 0 8px 24px rgba(91,45,153,0.12);
}
.bundle-popular:hover {
  border-color: var(--violet-500);
  box-shadow: 0 16px 40px rgba(91,45,153,0.16);
}
.bundle-popular-tag,
.bundle-all-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.bundle-popular-tag {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: white;
}
.bundle-all-tag {
  background: linear-gradient(135deg, var(--violet-800), var(--violet-600));
  color: white;
}
.bundle-top {
  margin-bottom: 1rem;
}
.bundle-count {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--violet-700);
  line-height: 1;
}
.bundle-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}
.bundle-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}
.bundle-old {
  font-size: 1rem;
  color: var(--gray-300);
  text-decoration: line-through;
  font-weight: 500;
}
.bundle-new {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
}
.bundle-saving {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
  background: #dcfce7;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.bundle-desc {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1.2rem;
}
.bundle-buy {
  width: 100%;
  padding: 0.75rem;
  background: var(--violet-50);
  color: var(--violet-700);
  border: 1.5px solid var(--violet-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.bundle-buy:hover {
  background: var(--violet-600);
  color: white;
  border-color: var(--violet-600);
}
.bundle-popular .bundle-buy {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: white;
  border-color: transparent;
}
.bundle-popular .bundle-buy:hover {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-600));
  box-shadow: 0 4px 16px rgba(91,45,153,0.3);
}
.bundles-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  background: var(--violet-50);
  border: 1px solid var(--violet-100);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.bundles-note strong {
  color: var(--violet-700);
}

/* ── COURSES IUCOSOFT ── */
.courses {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  max-width: 100%;
  overflow-x: hidden;
}
.courses-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}
.courses-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.courses-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.course-module {
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.course-module:hover { transform: translateX(6px); }
.course-module::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}
.module-1 {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  border: 1px solid var(--violet-200);
}
.module-1::before { background: var(--violet-400); }
.module-2 {
  background: linear-gradient(135deg, #ddd6fe, #ede9fe);
  border: 1px solid var(--violet-300);
}
.module-2::before { background: var(--violet-500); }
.module-3 {
  background: linear-gradient(135deg, var(--violet-200), #ddd6fe);
  border: 1px solid var(--violet-400);
}
.module-3::before { background: var(--violet-700); }

.module-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--violet-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.module-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--violet-800);
  margin-bottom: 0.25rem;
}
.module-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0.6rem;
}
.module-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--violet-600);
  font-weight: 500;
}

.courses-connector {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1rem;
}
.connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-200), var(--violet-400));
}
.connector-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet-700);
  background: var(--violet-100);
  border: 1.5px solid var(--violet-300);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.connector-end {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
  background: #dcfce7;
  border: 1.5px solid #bbf7d0;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.courses-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.courses-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.course-highlight {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.ch-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--violet-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.course-highlight strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}
.course-highlight p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.courses-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.courses-cta-box {
  background: linear-gradient(135deg, var(--violet-50), #f0ebff);
  border: 1.5px solid var(--violet-200);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
}
.courses-cta-text {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.courses-cta-icon {
  font-size: 1.6rem;
  min-width: 32px;
}
.courses-cta-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--violet-800);
  margin-bottom: 0.2rem;
}
.courses-cta-text p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.btn-courses {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--violet-800), var(--violet-600));
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(91,45,153,0.2);
  text-align: center;
}
.btn-courses:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,45,153,0.3);
}
.courses-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}

/* ── REGISTRATION (mobile-first) ── */
.registration {
  background: linear-gradient(135deg, var(--violet-900), var(--violet-700));
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}
.registration::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(139,92,246,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.registration .section-inner { position: relative; z-index: 1; }

.registration-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
.registration-text .section-title {
  font-size: 1.3rem;
  line-height: 1.3;
}
.registration-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 0.75rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.registration-benefits {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.reg-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.reg-check {
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.2);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
}

.registration-form-wrapper {
  display: flex;
  justify-content: center;
}
.registration-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}
.form-subtitle {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* 16px font prevents iOS zoom on focus */
.form-group input,
.registration-form-card .form-control {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: var(--gray-50);
  -webkit-appearance: none;
  box-sizing: border-box;
}
.form-group input::placeholder,
.registration-form-card .form-control::placeholder {
  color: var(--gray-300);
}
.form-group input:focus,
.registration-form-card .form-control:focus {
  border-color: var(--violet-400);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
  background: var(--white);
}

/* Form container inside registration card */
.registration-form-card .form-container {
  margin: 0;
  padding: 0;
}
.registration-form-card .form-container > div {
  width: 100%;
}
.registration-form-card .form-container .row {
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.registration-form-card .form-container .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0 !important;
  flex: 0 0 100%;
  max-width: 100%;
}
.registration-form-card .form-container h6 {
  display: none;
}
.registration-form-card .form-container .input-group {
  margin-top: 0.75rem !important;
  justify-content: stretch !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.registration-form-card .form-container .btn-form {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--success), #16a34a);
  color: var(--white);
  border: none;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
  transition: all 0.2s;
  cursor: pointer;
  margin-bottom: 0.5rem !important;
}
.registration-form-card .form-container .btn-form:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}
.registration-form-card .form-container .btn-form:active {
  transform: translateY(0);
}
.registration-form-card .form-container .one-click-info {
  text-align: center;
}

/* Error messages inside form */
.registration-form-card .form-container span[id*="Error"] {
  font-size: 0.72rem;
  margin-top: 2px;
  display: block;
}

.form-checkboxes {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--gray-600);
  user-select: none;
}
.form-checkbox input[type="checkbox"] {
  display: none;
}
.checkbox-custom {
  width: 20px; height: 20px;
  min-width: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: var(--white);
}
.form-checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--violet-600);
  border-color: var(--violet-600);
}
.form-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.promo-field {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin 0.3s;
  margin-left: 1.8rem;
}
.promo-field.open {
  max-height: 60px;
  margin-bottom: 0.3rem;
}
.promo-field input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-800);
  outline: none;
  background: var(--gray-50);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.promo-field input:focus {
  border-color: var(--violet-400);
  background: var(--white);
}
.promo-field input::placeholder { color: var(--gray-300); }

.registration-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--success), #16a34a);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.registration-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}
.registration-btn:active {
  transform: translateY(0);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
}
.form-note a {
  color: var(--violet-500);
  text-decoration: none;
}
.form-note a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.footer-brand span { color: var(--violet-400); }
footer p { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--violet-400); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { padding: 4rem 1.5rem 2rem; }
  .hero-stage-proof { grid-template-columns: 220px 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .pricing { padding-top: 5rem; padding-bottom: 5rem; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .bundles-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .live-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-table { grid-template-columns: 1fr; }
  .comparison-divider {
    border-left: none; border-right: none;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 0.6rem;
  }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card-featured { grid-column: 1 / -1; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats-side { position: static; }
  .courses-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .courses-visual { order: 2; }
}

@media (max-width: 768px) {
  /* Hero responsive */
  .hero-content { padding: 3.5rem 1.25rem 2rem; }
  .hero-stage-message { max-width: 100%; }
  .hero-stage-proof { grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
  .hero-stage-proof .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-proof-bullets { text-align: center; padding: 1rem 0; }
  .hero-proof-list { align-items: center; }

  /* Fix horizontal overflow on mobile */
  .courses-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .courses-visual,
  .courses-text,
  .courses-stack,
  .course-module {
    max-width: 100%;
    width: 100%;
  }

  .course-module {
    padding: 1.2rem 1rem;
  }

  .courses-connector {
    flex-wrap: wrap;
    padding: 0;
  }

  .nav-links { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .bundles-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  /* Testimonials: app-like card carousel on mobile */
  .testimonials { padding: 3rem 0; }
  .testimonials .section-inner { overflow: hidden; }
  .testimonials-grid {
    display: flex;
    margin: 1.5rem 0 0;
    gap: 0;
    grid-template-columns: none;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 1.5rem;
    border-radius: 14px;
    box-sizing: border-box;
  }
  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
  }
  .testimonial-text { font-size: 0.85rem; line-height: 1.65; }
  .testimonial-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }
  .testimonial-nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #334155;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }
  .testimonial-nav-btn:active { background: #f1f5f9; transform: scale(0.92); }
  .testimonial-nav-dots {
    display: flex; gap: 8px; align-items: center;
  }
  .testimonial-nav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none; padding: 0;
    cursor: pointer;
    transition: all 0.25s;
    -webkit-tap-highlight-color: transparent;
  }
  .testimonial-nav-dot.active {
    background: #7c3aed;
    width: 24px;
    border-radius: 4px;
  }
  .testimonial-carousel-footer {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
  }
  .live-stats-grid { grid-template-columns: 1fr; }
  .live-activity-item { font-size: 0.75rem; flex-wrap: wrap; }
  .live-activity-time { margin-left: 0; width: 100%; padding-left: 0.75rem; }
  .video-mock { width: 85%; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-featured .blog-card-image { min-height: 160px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .float-badge { display: none; }
}

@media (max-width: 480px) {
  section { padding: 3rem 0.75rem; }
  .stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .live-stats-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero-subtitle { font-size: clamp(0.95rem, 3vw, 1.15rem); }
  .hero-visual { max-width: 100%; }
  .pricing-buy, .bundle-buy { padding: 0.85rem 1rem; min-height: 44px; }
  .live-activity-item { font-size: 0.8rem; }
  .video-wrapper { margin-top: 1.5rem; }
}

/* Disabled button state for inactive courses */
.pricing-buy-disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.pricing-buy-disabled:hover {
  background: #9ca3af !important;
  transform: none !important;
  box-shadow: 0 4px 12px rgba(156, 163, 175, 0.2) !important;
}

/* Bundle mode — course button: available to pick */
.pricing-buy-bundle-pick {
  display: block;
  width: 100%;
  padding: 0.7rem;
  background: var(--white);
  color: var(--violet-700);
  border: 1.5px dashed var(--violet-400);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-buy-bundle-pick:hover {
  background: var(--violet-50);
  border-color: var(--violet-600);
  transform: translateY(-1px);
}

/* Bundle mode — course button: selected */
.pricing-buy-bundle-selected {
  display: block;
  width: 100%;
  padding: 0.7rem;
  background: var(--success);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-buy-bundle-selected:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* Bundle button when active (user has selected this bundle) */
.bundle-buy-active {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35) !important;
}
.bundle-buy-active:hover {
  background: linear-gradient(135deg, #15803d, #16a34a) !important;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4) !important;
}


/* Selected course display block (mobile-first) */
.selected-course-block {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.selected-course-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.selected-course-label {
  display: inline;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
}

.selected-course-icon {
  background: rgba(255, 255, 255, 0.25);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.selected-course-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
}

.selected-course-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.selected-course-price {
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0.95;
  white-space: nowrap;
}

#courseFormContainer {
  margin-top: 0.5rem;
}

/* No selection message — compact */
#noSelectionMessage {
  text-align: center;
  padding: 1.25rem 1rem;
}
#noSelectionMessage p {
  color: #6b7280;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
#noSelectionMessage .btn-primary {
  font-size: 14px;
  padding: 10px 20px;
}

/* ── REGISTRATION: tablet (768px+) ── */
@media (min-width: 768px) {
  .registration {
    padding: 3.5rem 1.5rem;
  }
  .registration-form-card {
    padding: 2rem;
    border-radius: 20px;
  }
  .form-title {
    font-size: 1.3rem;
  }
  .registration-text .section-title {
    font-size: 1.6rem;
  }
  .registration-desc {
    font-size: 1rem;
  }
  .reg-benefit {
    font-size: 0.88rem;
  }
  .reg-check {
    width: 22px; height: 22px;
    min-width: 22px;
    font-size: 0.7rem;
  }
  .registration-benefits {
    gap: 0.7rem;
    margin-top: 1.5rem;
  }
  .selected-course-block {
    padding: 1rem 1.25rem;
  }
  .selected-course-name {
    font-size: 1rem;
  }
  .selected-course-price {
    font-size: 1.25rem;
  }
  .registration-form-card .form-container .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .registration-form-card .form-container .row > [class*="col-md-6"] {
    flex: 0 0 calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
  }
  .registration-form-card .form-container .row > .col-12:not([class*="col-md-6"]) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ── REGISTRATION: desktop (1024px+) ── */
@media (min-width: 1024px) {
  .registration {
    padding: 5rem 2rem;
  }
  .registration-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }
  .registration-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-left: 0;
    margin-right: 0;
  }
  .registration-benefits {
    align-items: flex-start;
    margin-top: 2rem;
    gap: 0.8rem;
  }
  .reg-benefit {
    font-size: 0.9rem;
  }
  .registration-text .section-title {
    font-size: 1.8rem;
  }
  .registration-form-card {
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .form-title {
    font-size: 1.4rem;
  }
  .form-subtitle {
    font-size: 0.87rem;
    margin-bottom: 1.5rem;
  }
  .selected-course-block {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .selected-course-label {
    font-size: 0.8rem;
  }
  .selected-course-header {
    margin-bottom: 0;
  }
  .selected-course-name {
    font-size: 1.1rem;
  }
  .selected-course-price {
    font-size: 1.35rem;
  }
}

/* === CRO: HERO BAC BANNER === */
.hero-bac-banner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: linear-gradient(135deg, var(--violet-50) 0%, #f0fdf4 100%);
  border: 1.5px solid var(--violet-200);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  margin: 1rem 0 1.25rem;
}
.hero-bac-banner-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-600);
}
.hero-bac-banner-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
}

/* === CRO: HERO DOMAIN BADGES === */
.hero-domains {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-400);
}
.hero-domains-dot {
  color: var(--violet-300);
  font-size: 0.6rem;
}

/* === CRO: HERO TRUST INDICATORS === */
.hero-trust {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-bac-banner { padding: 0.6rem 0.9rem; }
  .hero-bac-banner-text { font-size: 0.85rem; }
  .hero-domains { flex-wrap: wrap; gap: 0.35rem; font-size: 0.72rem; }
  .hero-trust { flex-direction: column; gap: 0.25rem; font-size: 0.72rem; }
}

/* === CRO: HERO PRODUCT DASHBOARD === */
.hero-dash {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: fadeInUp 0.8s ease-out 0.25s both;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.08));
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1rem;
  background: var(--white);
}

/* Main exam progress card */
.hero-dash-main {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 12px 40px rgba(91,45,153,0.12), 0 2px 6px rgba(0,0,0,0.06);
}
.hero-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.hero-dash-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-dash-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-600);
  background: var(--violet-50);
  border: 1px solid var(--violet-200);
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  width: fit-content;
}
.hero-dash-domain {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: opacity 0.3s ease;
}
.hero-dash-domain.fade-out { opacity: 0; }
.hero-dash-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--violet-50), #f0fdf4);
  border: 1px solid var(--violet-200);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  min-width: 64px;
}
.hero-dash-score-num {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--violet-700);
  line-height: 1;
  transition: opacity 0.3s ease;
}
.hero-dash-score-num.fade-out { opacity: 0; }
.hero-dash-score-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* Progress bars */
.hero-dash-progress-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hero-dash-progress-row {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  align-items: center;
  gap: 0.75rem;
}
.hero-dash-progress-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-dash-progress-track {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}
.hero-dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--violet-500), var(--violet-400));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-dash-fill-high {
  background: linear-gradient(90deg, var(--success), #4ade80);
}
.hero-dash-fill-warn {
  background: linear-gradient(90deg, var(--warning), #fbbf24);
}
.hero-dash-progress-pct {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: right;
}

/* Exam simulation mini card */
.hero-dash-sim {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hero-dash-sim-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero-dash-sim-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
}
.hero-dash-sim-timer {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* Micro feature cards */
.hero-dash-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.hero-dash-feat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
}
.hero-dash-feat-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-dash-feat-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.3;
}

/* Dashboard domain navigation */
.hero-dash-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 0.3rem;
}
.hero-dash-nav-btn {
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  padding: 0.4rem 0.75rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.hero-dash-nav-btn:hover {
  color: var(--gray-600);
}
.hero-dash-nav-btn.active {
  background: var(--white);
  color: var(--violet-700);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Progress name fade */
.hero-dash-progress-name {
  transition: opacity 0.3s ease;
}
.hero-dash-progress-name.fade-out { opacity: 0; }
.hero-dash-progress-pct {
  transition: opacity 0.3s ease;
}
.hero-dash-progress-pct.fade-out { opacity: 0; }

/* Domain accent: green */
.hero-dash[data-accent="green"] .hero-dash-score {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #86efac;
}
.hero-dash[data-accent="green"] .hero-dash-score-num { color: #15803d; }
.hero-dash[data-accent="green"] .hero-dash-nav-btn.active { color: #15803d; }
.hero-dash[data-accent="green"] .hero-dash-badge { color: #15803d; background: #f0fdf4; border-color: #86efac; }

/* Domain accent: violet (default — no overrides needed) */

/* Domain accent: amber */
.hero-dash[data-accent="amber"] .hero-dash-score {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: #fcd34d;
}
.hero-dash[data-accent="amber"] .hero-dash-score-num { color: #b45309; }
.hero-dash[data-accent="amber"] .hero-dash-nav-btn.active { color: #b45309; }
.hero-dash[data-accent="amber"] .hero-dash-badge { color: #b45309; background: #fffbeb; border-color: #fcd34d; }

/* Dashboard responsive */
@media (max-width: 1024px) {
  .hero-dash-main { padding: 1.5rem 1.5rem; }
}
@media (max-width: 768px) {
  .hero-dash-main { padding: 1.25rem; }
  .hero-dash-progress-row { grid-template-columns: 110px 1fr 32px; gap: 0.5rem; }
  .hero-dash-progress-name { font-size: 0.72rem; }
  .hero-dash-features { grid-template-columns: 1fr; }
  .hero-dash-feat { padding: 0.5rem 0.6rem; }
  .hero-dash-score { padding: 0.5rem 0.75rem; }
  .hero-dash-score-num { font-size: 1.25rem; }
  .hero-dash-nav-btn { font-size: 0.65rem; padding: 0.35rem 0.5rem; }
}
@media (max-width: 380px) {
  .hero-dash-progress-row { grid-template-columns: 90px 1fr 30px; }
  .hero-dash-domain { font-size: 0.95rem; }
  .hero-dash-nav-btn { font-size: 0.6rem; padding: 0.3rem 0.4rem; }
}

/* === CRO: AUDIENCE SECTION === */
.audience {
  background: var(--white);
  padding: 4rem 0;
}
.audience-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.audience-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--violet-100);
  background: var(--violet-50);
  text-align: center;
  transition: all 0.3s ease;
}
.audience-card:hover {
  border-color: var(--violet-300);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(91, 45, 153, 0.06);
}
.audience-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.audience-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.5;
  margin: 0;
}

/* === CRO: SOCIAL PROOF BAR === */
.social-proof-bar {
  background: var(--violet-50);
  border-top: 1px solid var(--violet-100);
  border-bottom: 1px solid var(--violet-100);
  padding: 1.5rem 2rem;
}
.social-proof-items {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.social-proof-icon {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .social-proof-items {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .social-proof-bar { padding: 1.2rem 1rem; }
}

/* === CRO: 5-STEP GRID === */
.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .steps-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .steps-5 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .steps-5 { grid-template-columns: 1fr; }
}

/* === CRO: SECTION CTA === */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1rem;
}

/* === CRO: FOMO CALLOUT === */
.fomo-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--warning);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem auto;
  max-width: 700px;
}
.fomo-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fomo-content strong {
  font-size: 0.95rem;
  color: var(--gray-800);
  display: block;
}
.fomo-content p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-top: 0.3rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .fomo-callout { padding: 1rem 1.2rem; }
}

/* === CRO: BUNDLE TIER NAMES === */
.bundle-tier-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-500);
  margin-bottom: 0.25rem;
}
.bundle-bac-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  margin-top: 0.5rem;
}

/* === CRO: VALUE SUMMARY === */
.value-summary {
  background: var(--violet-50);
  padding: 3rem 0;
}
.value-summary-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.value-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--violet-100);
  border-radius: 12px;
  transition: all 0.2s;
}
.value-summary-item:hover {
  border-color: var(--violet-200);
  box-shadow: 0 4px 12px rgba(91, 45, 153, 0.06);
}
.value-summary-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.value-summary-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}
.value-summary-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .value-summary-grid { grid-template-columns: 1fr; max-width: 400px; }
  .value-summary { padding: 2.5rem 0; }
}

/* === CRO: POST-PURCHASE STEPS === */
.post-purchase {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  text-align: center;
}
.post-purchase-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.post-purchase-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.post-purchase-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  background: var(--violet-50);
  border-radius: 20px;
}
.post-purchase-num {
  width: 22px;
  height: 22px;
  background: var(--violet-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.purchase-reassurance {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}
@media (max-width: 768px) {
  .post-purchase { padding: 1.5rem; }
  .post-purchase-steps { flex-direction: column; align-items: center; }
  .purchase-reassurance { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* === CRO: SOLUTION SECTION === */
.solution {
  background: var(--white);
  padding: 6rem 0;
}
.solution-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  background: var(--gray-50);
  transition: all 0.3s ease;
}
.solution-card:hover {
  border-color: var(--violet-200);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(91, 45, 153, 0.06);
}
.solution-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.solution-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 0.25rem;
}
.solution-card p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .solution-grid { grid-template-columns: 1fr; max-width: 400px; }
  .solution { padding: 3rem 0; }
}

/* === CRO: FINAL CTA SECTION === */
.final-cta {
  background: linear-gradient(135deg, var(--violet-800) 0%, var(--violet-600) 100%);
  padding: 6rem 0;
  text-align: center;
}
.final-cta .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}
.final-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
@media (max-width: 768px) {
  .final-cta { padding: 3rem 0; }
  .final-cta-desc { font-size: 1rem; }
  .final-cta-trust { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* === SOLUTION DOMAIN CARDS === */
.solution-domains {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.solution-domain-card {
  text-align: center;
  transition: transform 0.2s;
}
.solution-domain-card:hover {
  transform: translateY(-4px);
}
.solution-domain-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.solution-domain-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}
@media (max-width: 768px) {
  .solution-domains { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 380px) {
  .solution-domains { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* === CERTIFICATE OUTCOME === */
.certificate-outcome {
  background: var(--white);
  padding: 6rem 0;
}
.certificate-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.certificate-image {
  position: relative;
}
.certificate-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.certificate-badge-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet-600);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}
.certificate-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.certificate-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.certificate-benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.certificate-benefit strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.2rem;
}
.certificate-benefit p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .certificate-showcase { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .certificate-image { max-width: 260px; margin: 0 auto; }
  .certificate-benefit { text-align: left; }
}

/* === TEAM CREDIBILITY === */
.team-credibility {
  background: #faf5ff;
  padding: 6rem 0;
}
.team-made-in {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}
.team-intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 1rem;
}
.team-cred-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.team-cred-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}
.team-cred-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--violet-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Live courses subsection */
.team-live-section {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.team-live-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0 0 1rem;
}
.team-live-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.team-live-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin: 0 0 0.5rem;
}
.team-live-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-live-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}
.team-live-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.team-live-cta {
  margin-top: 0;
}
.team-live-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .team-credibility { padding: 3.5rem 0; }
  .team-live-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
  .team-live-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
}

