/* ════════════════════════════════════════
   KODAKARSA Academy — Full Landing Page
   Mentoring-focused, EdTech style
   ════════════════════════════════════════ */

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

:root {
  --bg: #0b0f19;
  --bg-card: rgba(17, 22, 33, 0.75);
  --bg-glass: rgba(17, 22, 33, 0.55);
  --bg-raised: #141a2a;

  --blue: #007bff;
  --blue-s: rgba(0, 123, 255, 0.12);
  --blue-g: rgba(0, 123, 255, 0.3);
  --cyan: #00bcd4;
  --cyan-s: rgba(0, 188, 212, 0.12);
  --cyan-g: rgba(0, 188, 212, 0.3);
  --gold: #ffbf00;
  --gold-s: rgba(255, 191, 0, 0.12);
  --gold-g: rgba(255, 191, 0, 0.35);
  --green: #4ade80;
  --green-s: rgba(74, 222, 128, 0.12);
  --red-s: rgba(239, 68, 68, 0.12);
  --red: #ef4444;

  --t1: #f0f6fc;
  --t2: #c9d1d9;
  --t3: #8b949e;
  --t4: #484f58;
  --border: rgba(48, 54, 61, 0.6);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 100px;

  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ BG ═══ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.bg-orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.07) 0%,
    transparent 70%
  );
  top: -5%;
  left: 5%;
  animation: orb 16s ease-in-out infinite alternate;
}
.bg-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(0, 188, 212, 0.05) 0%,
    transparent 70%
  );
  top: 30%;
  right: 0%;
  animation: orb 14s ease-in-out infinite alternate-reverse;
}
.bg-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 191, 0, 0.04) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: 35%;
  animation: orb 18s ease-in-out infinite alternate;
}
@keyframes orb {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(20px, -12px) scale(1.05);
  }
}
.bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 50% 35% at 50% 20%,
    black 10%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 50% 35% at 50% 20%,
    black 10%,
    transparent 70%
  );
}
#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--t1);
}
.brand-accent {
  color: var(--cyan);
  margin-left: 3px;
}
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}
.nav-links a {
  color: var(--t3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--t1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.lang-btn {
  color: var(--t3);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}
.lang-btn:hover {
  color: var(--t1);
}
.lang-btn.active {
  background: var(--blue-s);
  color: var(--blue);
}
.lang-sep {
  color: var(--t4);
  font-size: 12px;
  font-weight: 400;
  padding: 0 4px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
  white-space: nowrap;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: var(--r-md);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: #0d1117;
  box-shadow: 0 4px 16px rgba(255, 191, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-g);
}
.btn-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gold);
  opacity: 0;
  filter: blur(18px);
  animation: glow 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes glow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
}
.btn-primary > *:not(.btn-glow) {
  position: relative;
  z-index: 1;
}
.btn-primary svg {
  position: relative;
  z-index: 1;
}
.btn-ghost {
  padding: 16px 32px;
  font-size: 15px;
  background: transparent;
  color: var(--t2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--t4);
  transform: translateY(-2px);
}
.btn-outline {
  padding: 14px 28px;
  font-size: 14px;
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid rgba(0, 188, 212, 0.35);
}
.btn-outline:hover {
  background: var(--cyan-s);
  border-color: rgba(0, 188, 212, 0.5);
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ═══ MAIN ═══ */
.main {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 80px 0;
}
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* ═══ SECTION HEADERS ═══ */
.section-header {
  margin-bottom: 40px;
}
.section-header-center {
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  background: var(--blue-s);
  color: var(--blue);
  border: 1px solid rgba(0, 123, 255, 0.15);
}
.section-tag-cyan {
  background: var(--cyan-s);
  color: var(--cyan);
  border-color: rgba(0, 188, 212, 0.15);
}
.section-tag-gold {
  background: var(--gold-s);
  color: var(--gold);
  border-color: rgba(255, 191, 0, 0.15);
}
.section-tag-green {
  background: var(--green-s);
  color: var(--green);
  border-color: rgba(74, 222, 128, 0.15);
}
.section-tag-blue {
  background: var(--blue-s);
  color: var(--blue);
  border-color: rgba(0, 123, 255, 0.15);
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--t1);
  margin-bottom: 10px;
}
.section-desc {
  font-size: 16px;
  color: var(--t3);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}
.highlight-cyan {
  color: var(--cyan);
}

/* ═══ 1. HERO ═══ */
.hero {
  padding: 120px 0 80px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 191, 0, 0.1),
    rgba(255, 130, 0, 0.1)
  );
  border: 1px solid rgba(255, 191, 0, 0.2);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}
.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--t1);
  margin-bottom: 18px;
}
.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold), #ffe066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--t3);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-avatars {
  display: flex;
}
.trust-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.trust-av:first-child {
  margin-left: 0;
}
.trust-av-more {
  background: var(--border) !important;
  font-size: 10px;
}
.trust-text {
  font-size: 13px;
  color: var(--t3);
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.visual-panel {
  border-radius: var(--r-xl);
}
.panel-code {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.panel-dash {
  position: relative;
  z-index: 1;
  margin-top: -8px;
  margin-left: 28px;
}
.panel-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-r {
  background: #ff5f57;
}
.dot-y {
  background: #febc2e;
}
.dot-g {
  background: #28c840;
}
.panel-name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t4);
  margin-left: 6px;
  flex: 1;
}
.live-dot {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
}
.panel-body {
  padding: 16px;
}
.code-block {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  white-space: pre;
  display: block;
}
.ln {
  color: var(--t4);
  margin-right: 12px;
  user-select: none;
}
.ck {
  color: #ff79c6;
}
.cc {
  color: #8be9fd;
}
.cf {
  color: #50fa7b;
}
.cv {
  color: #ffb86c;
}
.cs {
  color: #f1fa8c;
}
.panel-dash-body {
  padding: 14px;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.mini-stat {
  text-align: center;
  padding: 8px;
  background: rgba(0, 123, 255, 0.04);
  border: 1px solid rgba(0, 123, 255, 0.06);
  border-radius: var(--r-sm);
}
.ms-val {
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.ms-lbl {
  display: block;
  font-size: 9px;
  color: var(--t4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.mini-chart {
  width: 100%;
  height: 35px;
}
.chart-anim {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2.5s var(--ease) forwards 0.8s;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ═══ 2. PROBLEMS ═══ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.35s var(--ease);
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.06);
}
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(239, 68, 68, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(239, 68, 68, 0.1);
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.6;
}

/* ═══ 3. SOLUTION ═══ */
.solution-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.flow-step {
  flex: 1;
  padding: 24px;
  text-align: center;
  position: relative;
  max-width: 220px;
}
.flow-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--t4);
  margin-bottom: 12px;
}
.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.flow-icon-blue {
  background: var(--blue-s);
  color: var(--blue);
  border: 1px solid rgba(0, 123, 255, 0.15);
}
.flow-icon-cyan {
  background: var(--cyan-s);
  color: var(--cyan);
  border: 1px solid rgba(0, 188, 212, 0.15);
}
.flow-icon-gold {
  background: var(--gold-s);
  color: var(--gold);
  border: 1px solid rgba(255, 191, 0, 0.15);
}
.flow-icon-green {
  background: var(--green-s);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.15);
}
.flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-step p {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.5;
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t4);
  font-size: 20px;
  padding-top: 60px;
  font-family: var(--mono);
}

/* ═══ 4. PROGRAMS ═══ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.35s var(--ease);
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 123, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.08);
}
.prog-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.prog-hot,
.prog-rec,
.prog-ess {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.prog-hot {
  background: linear-gradient(
    135deg,
    rgba(255, 80, 50, 0.15),
    rgba(255, 150, 50, 0.15)
  );
  color: #ff8c42;
  border: 1px solid rgba(255, 120, 50, 0.2);
}
.prog-rec {
  background: var(--gold-s);
  color: var(--gold);
  border: 1px solid rgba(255, 191, 0, 0.2);
}
.prog-ess {
  background: var(--cyan-s);
  color: var(--cyan);
  border: 1px solid rgba(0, 188, 212, 0.2);
}
.prog-level {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.level-all {
  color: var(--blue);
  background: var(--blue-s);
  border: 1px solid rgba(0, 123, 255, 0.15);
}
.level-beg {
  color: var(--green);
  background: var(--green-s);
  border: 1px solid rgba(74, 222, 128, 0.15);
}
.level-adv {
  color: #0b0f19;
  background: var(--cyan);
  font-weight: 700;
}
.prog-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.prog-icon-blue {
  background: var(--blue-s);
  color: var(--blue);
  border: 1px solid rgba(0, 123, 255, 0.12);
}
.prog-icon-cyan {
  background: var(--cyan-s);
  color: var(--cyan);
  border: 1px solid rgba(0, 188, 212, 0.12);
}
.prog-icon-red {
  background: var(--red-s);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.prog-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.prog-desc {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.6;
  margin-bottom: 16px;
}
.prog-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--t2);
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  font-family: var(--mono);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  letter-spacing: 0.3px;
}
.tag-blue {
  color: var(--blue);
  background: rgba(0, 123, 255, 0.07);
  border: 1px solid rgba(0, 123, 255, 0.1);
}
.tag-cyan {
  color: var(--cyan);
  background: rgba(0, 188, 212, 0.07);
  border: 1px solid rgba(0, 188, 212, 0.1);
}
.tag-red {
  color: var(--red);
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.1);
}
.prog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.prog-students {
  font-size: 13px;
  color: var(--t3);
}
.prog-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
}

/* ═══ 5. TIMELINE ═══ */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 0;
}
.timeline-line {
  position: absolute;
  left: 22px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--blue),
    var(--cyan),
    var(--gold),
    var(--green)
  );
  border-radius: 2px;
  z-index: 0;
}
.timeline-step:last-child .tl-content {
  padding-bottom: 0;
}
.timeline-step {
  display: flex;
  gap: 24px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.tl-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 3;
  position: relative;
}
.tl-marker-blue {
  background: #0c1424;
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 12px rgba(0, 123, 255, 0.15);
}
.tl-marker-cyan {
  background: #0c1820;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 12px rgba(0, 188, 212, 0.15);
}
.tl-marker-gold {
  background: #1a1608;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 12px rgba(255, 191, 0, 0.15);
}
.tl-marker-green {
  background: #0c1a10;
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 12px rgba(74, 222, 128, 0.15);
}
.tl-marker-complete {
  background: linear-gradient(135deg, var(--gold), #ffe066);
  color: #0b0f19;
  border: none;
  font-size: 18px;
  box-shadow:
    0 0 0 4px var(--bg),
    0 0 16px rgba(255, 191, 0, 0.25);
}
.tl-content {
  padding: 4px 0 20px;
}
.tl-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tl-content p {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.5;
  max-width: 420px;
}
.tl-duration {
  display: inline-block;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--t4);
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.tl-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}

/* ═══ 6. MENTOR ═══ */
.mentor-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.05);
}
.mentor-avatar {
  flex-shrink: 0;
  text-align: center;
}
.avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blue-s);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.avatar-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-s);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0, 123, 255, 0.15);
}
.mentor-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.mentor-role {
  font-size: 14px;
  color: var(--cyan);
  margin-bottom: 14px;
}
.mentor-story {
  font-size: 15px;
  color: var(--t3);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.mentor-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.skill-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--t2);
  transition: all 0.2s;
}
.skill-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.mentor-stats {
  display: flex;
  gap: 28px;
}
.mstat {
  text-align: center;
}
.mstat-val {
  display: block;
  font-size: 24px;
  font-weight: 800;
  font-family: var(--mono);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mstat-lbl {
  display: block;
  font-size: 12px;
  color: var(--t4);
  margin-top: 2px;
}

/* ═══ 7. OUTPUT ═══ */
.output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.output-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all 0.35s var(--ease);
}
.output-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 188, 212, 0.2);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.06);
}
.output-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.output-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.output-item p {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.5;
}

/* ═══ 8. TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 191, 0, 0.15);
  box-shadow: 0 8px 30px rgba(255, 191, 0, 0.05);
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-quote {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.testi-role {
  display: block;
  font-size: 12px;
  color: var(--t3);
}
.testi-result {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(74, 222, 128, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.1);
  border-radius: var(--r-md);
  font-size: 11px;
}
.testi-before {
  color: var(--t4);
}
.testi-after {
  color: var(--green);
  font-weight: 600;
}

/* ═══ 9. PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  transition: all 0.35s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-featured {
  border-color: var(--gold);
  background: rgba(255, 191, 0, 0.03);
  box-shadow: 0 0 30px rgba(255, 191, 0, 0.05);
  transform: scale(1.03);
}
.pricing-featured .btn-primary {
  padding: 16px 28px;
  font-size: 15px;
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: #0d1117;
  box-shadow: 0 4px 20px rgba(255, 191, 0, 0.25);
}
.pricing-featured .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255, 191, 0, 0.35);
}
.pricing-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 8px 40px rgba(255, 191, 0, 0.1);
}
.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: #0b0f19;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.price-desc {
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 20px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}
.price-curr {
  font-size: 14px;
  color: var(--t3);
  font-weight: 600;
}
.price-val {
  font-size: 42px;
  font-weight: 800;
  font-family: var(--mono);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period {
  font-size: 14px;
  color: var(--t4);
  margin-left: 4px;
}
.price-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.feat-yes {
  color: var(--t2);
}
.feat-no {
  color: var(--t4);
}
.feat-no svg {
  opacity: 0.5;
}

/* ═══ 10. FINAL CTA ═══ */
.final-cta {
  padding: 40px 0 60px;
}
.final-cta-inner {
  padding: 56px 48px;
  text-align: center;
  border-color: rgba(255, 191, 0, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 191, 0, 0.02),
    rgba(0, 123, 255, 0.02)
  );
}
.final-cta-inner h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}
.final-cta-inner p {
  font-size: 16px;
  color: var(--t3);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.final-cta-note {
  font-size: 13px;
  color: var(--t4);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 60px 0 30px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-brand p {
  font-size: 14px;
  color: var(--t3);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--t3);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 14px;
  color: var(--t4);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--t3);
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--cyan);
}

/* ═══ ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.card-reveal {
  opacity: 0;
  transform: translateY(14px);
}
.card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.card-reveal.visible:hover {
  transform: translateY(-6px);
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* ═══ RESPONSIVE ═══ */

/* Hamburger menu button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--t2);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .panel-dash {
    margin-left: 20px;
  }
  .problems-grid,
  .programs-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .output-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mentor-card {
    flex-direction: column;
    text-align: center;
  }
  .mentor-stats {
    justify-content: center;
  }
  .mentor-skills {
    justify-content: center;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex !important;
    background: none;
    border: none;
    color: var(--t2);
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    align-items: center;
  }
  .nav-cta {
    display: none;
  }
  .brand-logo {
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  .main {
    padding: 0 20px;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: 34px;
  }
  .section-title {
    font-size: 28px;
  }
  .section {
    padding: 60px 0;
  }
  .problems-grid,
  .programs-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .output-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .flow-arrow {
    transform: rotate(90deg);
    padding: 0;
    margin: -8px 0;
  }
  .flow-step {
    max-width: 280px;
  }
  .pricing-featured {
    transform: none;
  }
  .pricing-featured:hover {
    transform: translateY(-4px);
  }
  .testi-result {
    flex-wrap: wrap;
  }
  .final-cta-inner {
    padding: 40px 28px;
  }
  .final-cta-inner h2 {
    font-size: 28px;
  }
  .mentor-card {
    padding: 28px;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .main {
    padding: 0 16px;
  }
  .hero {
    padding: 90px 0 48px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .section-title {
    font-size: 24px;
  }
  .section {
    padding: 48px 0;
  }
  .section-desc {
    font-size: 14px;
  }
  .output-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-inner {
    padding: 32px 20px;
  }
  .final-cta-inner h2 {
    font-size: 24px;
  }
  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }
  .btn-ghost {
    padding: 14px 24px;
    font-size: 14px;
  }
  .price-val {
    font-size: 36px;
  }
  .pricing-card {
    padding: 24px;
  }
  .program-card {
    padding: 22px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
  .brand-text {
    font-size: 14px;
  }
  .brand-logo {
    max-height: 32px;
  }
  .nav-inner {
    padding: 0 16px;
    gap: 16px;
  }
  .timeline {
    padding-left: 6px;
  }
  .tl-content p {
    font-size: 13px;
  }
  .mentor-card {
    padding: 22px;
    gap: 24px;
  }
  .avatar-circle {
    width: 100px;
    height: 100px;
  }
  .mentor-name {
    font-size: 20px;
  }
  .mentor-story {
    font-size: 14px;
  }
  .mentor-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .mstat-val {
    font-size: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══ B2B PAGES ═══ */
.b2b-main { padding-top: 140px; }
.b2b-hero { position: relative; padding: 60px 0 80px; text-align: center; }
.b2b-blueprint-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 123, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.b2b-grid { margin-top: 40px; }
.b2b-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.b2b-card:hover {
  border-color: rgba(0, 188, 212, 0.4);
  box-shadow: 0 0 24px rgba(0, 188, 212, 0.1);
  transform: translateY(-4px);
}
.b2b-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}
.b2b-card:hover::before { opacity: 1; }
.b2b-compare-container {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-side {
  flex: 1;
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.compare-side.traditional {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}
.compare-side.kodakarsa {
  background: rgba(74, 222, 128, 0.05);
  border-color: rgba(74, 222, 128, 0.3);
  position: relative;
}
.compare-side h3 {
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}
.compare-side ul {
  list-style: none;
}
.compare-side li {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--t2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.b2b-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
}
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--t3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  color: var(--t1);
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0, 188, 212, 0.05);
}
@media(max-width: 768px) {
  .b2b-compare-container { flex-direction: column; }
}
