/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: rgb(0, 2, 6);
  color: rgb(255, 255, 255);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.gradient-text {
  background: linear-gradient(129deg, rgba(235,235,235,0.94) 0%, rgba(168,189,255,0.6) 91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.libre { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 400; font-style: italic; }
.great-vibes { font-family: 'Great Vibes', cursive; font-size: 1.2em; }

/* ============================================================
   LAYOUT
   ============================================================ */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   CIRCLE SHAPES (decorative background orbs)
   ============================================================ */
.circle-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,82,255,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.circle-shape.top { top: -200px; left: 50%; transform: translateX(-50%); }
.circle-shape.bottom { bottom: -200px; right: 50%; transform: translateX(50%); }

.section-shadow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,82,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   SECTION BADGE
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 32px;
  background: rgb(0, 20, 32);
  border: 1px solid #000;
  backdrop-filter: blur(7px);
  margin-bottom: 20px;
  position: relative;
}
.section-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(75% 131% at 50% 124.6%, rgb(240,184,255) 0%, rgba(241,206,247,0) 100%);
  opacity: 0.4;
  pointer-events: none;
}
.badge-label {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1em;
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 80px);
  max-width: 1100px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(10, 11, 13, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  position: relative;
}
.nav-logo img { height: 36px; width: auto; }
.nav-shine {
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(270deg, rgba(69,205,255,0) 8.97%, rgb(0,59,255) 29%, rgb(128,157,255) 49.35%, rgb(0,59,255) 70.81%, rgba(0,114,156,0) 94.95%);
  opacity: 0.35;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 140px 40px 80px;
  overflow: hidden;
  background: rgb(0, 2, 6);
}
.hero-container {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9999px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35));
  border: 1px solid rgba(20,138,255,0.35);
  box-shadow: rgba(20,138,255,0.1) 0 0 0 1px inset, rgb(20,138,255) 0 6px 22px -8px, rgb(99,179,255) 0 0 24px -10px;
  color: rgb(214,233,255);
  margin-bottom: 28px;
  font-size: 14px;
  animation: lv-float 5.2s infinite, lv-glow 2.4s infinite;
}
.live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #148aff;
  box-shadow: 0 0 0 3px rgba(20,138,255,.18), 0 0 18px #148aff, 0 0 36px #63b3ff;
  flex-shrink: 0;
}
.live-count { font-weight: 700; color: #63b3ff; text-shadow: 0 0 14px #148aff; }
.live-text { color: rgba(214,233,255,.9); font-weight: 500; }
@keyframes lv-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes lv-glow { 0%,100%{filter:drop-shadow(0 0 0 #148aff)} 50%{filter:drop-shadow(0 0 10px #148aff)} }

/* Hero title */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(297deg, rgba(255,255,255,0.5), rgb(255,255,255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* CTA Block */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 640px;
  margin-bottom: 36px;
}
.cta-block.centered { margin: 0 auto 0; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(34, 119, 230);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow:
    rgba(0,48,153,0.88) 0.18px 0.8px 3.44px -0.9px,
    rgba(0,48,153,0.7) 0.5px 2.3px 9.9px -1.8px,
    rgba(0,48,153,0.5) 1.5px 6.7px 28.9px -2.7px,
    rgba(0,48,153,0.3) 4px 18px 77.5px -3.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    rgba(0,48,153,0.88) 0.18px 2px 6px -0.9px,
    rgba(0,48,153,0.7) 0.5px 5px 18px -1.8px,
    rgba(0,48,153,0.5) 1.5px 12px 40px -2.7px;
}
.cta-btn-large { font-size: 19px; padding: 22px 40px; }

/* Happy clients */
.happy-clients {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-photos {
  position: relative;
  display: flex;
  align-items: center;
}
.client-photos img { height: 40px; width: auto; border-radius: 8px; }
.client-count {
  position: absolute;
  right: -8px;
  top: 50%; transform: translateY(-50%);
  background: rgb(0,82,255);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
}
.client-text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.stars-row { color: rgb(247,193,77); font-size: 13px; line-height: 1; margin-bottom: 2px; }

/* Hero mockup */
.hero-mockup {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 40px 120px rgba(0,82,255,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-mockup img { width: 100%; height: auto; }

/* Hero glow */
.hero-glow {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,82,255,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-card {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.stat-icon { flex-shrink: 0; }
.stat-value {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ============================================================
   VALUE STATEMENT
   ============================================================ */
.value-statement {
  padding: 80px 0;
  position: relative;
}
.value-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.6;
  text-align: center;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto;
}
.highlight-blue {
  background: rgba(51,98,255,0.7);
  color: #fff;
  border-radius: 4px;
  padding: 1px 5px;
}
.highlight-word {
  color: rgb(139,165,255);
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS TOP
   ============================================================ */
.testimonials-top {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: rgb(10, 11, 13);
}
.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.tcard {
  background: linear-gradient(180deg, rgba(0,82,255,0.4) -100%, rgb(0,0,0) 40%, rgb(0,0,0) 130%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease;
}
.tcard:hover { transform: translateY(-4px) !important; }
.tcard-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  flex: 1;
}
.tcard-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.rating-num { color: rgba(255,255,255,0.5); font-weight: 500; }
.stars { color: rgb(255,215,0); }
.tcard-footer { display: flex; align-items: center; gap: 8px; }
.tcard-name { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500; }

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.comparison-cards {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.comp-card {
  flex: 1;
  min-width: 280px;
  max-width: 440px;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}
.blue-card {
  background: linear-gradient(225deg, rgba(0,108,225,0.3) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(0,108,225,0.3);
}
.red-card {
  background: linear-gradient(225deg, rgba(204,0,0,0.25) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(168,2,3,0.2);
}
.comp-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.blue-icon { background: linear-gradient(220deg, rgb(0,108,225) 0%, rgb(17,29,165) 75%, rgb(72,105,232) 100%); }
.red-icon { background: linear-gradient(220deg, rgb(237,5,5) 0%, rgb(99,0,0) 75%, rgb(79,0,0) 100%); }
.comp-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #fff;
}
.comp-card p { color: rgb(219,219,219); font-size: 16px; line-height: 1.5; }
.comp-vs {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ============================================================
   WHAT'S COVERED — CAROUSEL
   ============================================================ */
.whats-covered {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: rgb(10, 11, 13);
}
.course-cards-carousel {
  position: relative;
  overflow: hidden;
  margin: 48px 0 40px;
}
.course-cards-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.course-card {
  flex: 0 0 calc(33.333% - 16px);
  background: radial-gradient(96% 96% at 48.8% -35.7%, rgba(138,165,255,0.3) 0%, rgb(0,0,0) 100%);
  border: 1px solid rgba(0,108,225,0.2);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.course-card-icon {
  width: 44px; height: 44px;
  background: #000;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(41,52,255,0.3);
}
.course-card-icon svg { width: 100%; height: 100%; }
.course-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.course-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgb(219,219,219);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.carousel-btn:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   WHAT YOU GET — FEATURES GRID
   ============================================================ */
.what-you-get {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.feature-card {
  background: linear-gradient(180deg, rgba(0,82,255,0.4) -100%, rgb(0,0,0) 40%, rgb(0,0,0) 130%);
  border-top: 1px solid rgb(0,108,225);
  border-left: 1px solid rgba(0,108,225,0.1);
  border-right: 1px solid rgba(0,108,225,0.1);
  border-bottom: 1px solid rgba(0,108,225,0.1);
  border-radius: 16px;
  padding: 32px;
  box-shadow: rgba(240,243,245,0.07) 0 0.24px 0.92px -0.5px, rgba(240,243,245,0.2) 0 2px 7.6px -1px;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card.large-card { grid-column: span 2; }
.feature-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}
.feature-card p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================================
   MAIN TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-main {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: rgb(10, 11, 13);
}
.big-testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.big-tcard-track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}
.big-tcard {
  flex: 0 0 calc(33.333% - 22px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgb(89,89,89);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: rgba(0,0,0,0.36) 0 0.6px 1.8px -1.25px, rgba(0,0,0,0.32) 0 2.3px 6.9px -2.5px, rgba(0,0,0,0.13) 0 10px 30px -3.75px;
  position: relative;
}
.big-tcard img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}
.big-quote {
  font-family: 'Inter', 'Inter Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  flex: 1;
}
.big-tcard-border {
  height: 1px;
  background: linear-gradient(270deg, rgba(244,244,244,0) 0%, rgb(107,156,209) 15.21%, rgb(0,108,225) 49.82%, rgba(107,156,209,0.8) 84.85%, rgba(244,244,244,0) 100%);
  opacity: 0.6;
}
.big-tcard-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.big-tcard-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.who-for {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.who-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgb(10,11,13);
  display: flex;
  flex-direction: column;
}
.who-card-top {
  padding: 24px 24px 16px;
  background: linear-gradient(to bottom, rgba(0,108,225,0.15), transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.who-icon {
  width: 40px; height: 40px;
  background: #000;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 9px;
  border: 1px solid rgba(41,52,255,0.3);
}
.who-icon svg { width: 100%; height: 100%; }
.who-card h3 {
  font-family: 'Geologica', 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgb(250,250,250);
  line-height: 1.3;
}
.who-card p {
  padding: 16px 24px 24px;
  font-family: 'Geologica', 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ============================================================
   COURSE CURRICULUM — ACCORDION
   ============================================================ */
.curriculum {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: rgb(10, 11, 13);
}
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.module-item {
  background: #0c0c0c;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease;
}
.module-item.open { border-color: rgba(0,108,225,0.4); }
.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.module-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.module-num {
  font-family: 'Oswald', 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgb(0,108,225);
  min-width: 28px;
}
.module-title {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.module-tag {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgb(0,108,225);
  display: block;
  margin-top: 2px;
}
.module-toggle {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.module-toggle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  background: #fff;
  border-radius: 2px;
}
.module-toggle span:first-child { width: 2px; height: 16px; transition: transform 0.3s ease; }
.module-toggle span:last-child { width: 16px; height: 2px; }
.module-item.open .module-toggle span:first-child { transform: translate(-50%,-50%) rotate(90deg); }
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.module-body p {
  padding: 0 24px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: rgb(219,219,219);
  line-height: 1.6;
  padding-left: 72px;
}

/* ============================================================
   ABOUT MARKUSS
   ============================================================ */
.about-markuss {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
}
.about-photo {
  flex: 0 0 300px;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.about-name {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.about-text {
  flex: 1;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.about-text p {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.about-signature img {
  opacity: 0.9;
  transform: rotate(-6deg);
  margin-top: 16px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: rgb(10, 11, 13);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.faq-item {
  background: #0c0c0c;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(0,108,225,0.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
}
.faq-question h4 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  background: #fff;
  border-radius: 2px;
}
.faq-icon span:first-child { width: 2px; height: 16px; transition: transform 0.3s ease; }
.faq-icon span:last-child { width: 16px; height: 2px; }
.faq-item.open .faq-icon span:first-child { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 24px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: rgb(219,219,219);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(0,108,225,0.2);
  border-radius: 40px;
  background: #0b0b0b;
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}
.cta-card-blur {
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 131% at 50% 124.6%, rgb(240,184,255) 0%, rgba(241,206,247,0) 100%);
  opacity: 0.12;
  pointer-events: none;
}
.cta-card-content {
  padding: 80px 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cta-big-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: rgb(235,235,235);
  max-width: 600px;
}
.cta-sub {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.5;
}
.cta-urgency {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgb(92,171,255);
}
.cta-card-content .cta-btn { max-width: 480px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(254deg, rgb(0,18,54) 0%, rgb(6,9,18) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.footer-logo-block img { width: 50px; height: 50px; border-radius: 8px; }
.footer-logo-block p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.4;
}
.footer-links-title {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgb(2,177,239);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links nav a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgb(219,219,219);
  transition: color 0.2s ease;
}
.footer-links nav a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .testimonial-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .course-card { flex: 0 0 calc(50% - 12px); }
  .big-tcard { flex: 0 0 calc(50% - 16px); }
  .about-content { flex-direction: column; }
  .about-photo { flex: none; width: 100%; }
  .about-photo img { height: 350px; }
  .about-text { padding: 32px; }
}

@media (max-width: 768px) {
  .section-container { padding: 0 20px; }
  .hero { padding: 120px 20px 60px; }
  .navbar { width: calc(100% - 40px); }
  .hero-title { font-size: clamp(28px, 8vw, 42px); letter-spacing: -1px; }
  .testimonial-cards-grid { grid-template-columns: 1fr; }
  .tcard { transform: none !important; }
  .who-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.large-card { grid-column: span 1; }
  .comparison-cards { flex-direction: column; align-items: center; }
  .comp-vs { transform: rotate(90deg); }
  .course-card { flex: 0 0 calc(100% - 0px); }
  .big-tcard { flex: 0 0 calc(100% - 0px); }
  .cta-card-content { padding: 48px 28px; }
  .stats-row { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .happy-clients { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 60px 20px; }
  .site-footer { padding: 40px 20px 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(24px, 9vw, 36px); }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .cta-btn { font-size: 15px; padding: 16px 20px; }
  .cta-btn-large { font-size: 16px; padding: 18px 24px; }
  .live-badge { font-size: 12px; }
}
