/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --ink: #111827;
  --muted: #5b6576;
  --line: #e5e9f0;
  --soft: #f5f7fb;
  --brand: #0b74de;
  --brand-dark: #0753a6;
  --accent: #ff7a1a;
  --green: #16a36a;
  --red: #dc2626;
  --shadow: 0 18px 45px rgba(15,23,42,0.12);
  --shadow-sm: 0 4px 16px rgba(15,23,42,0.08);
  --radius: 12px;
  --transition: 0.18s ease;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { line-height: 1.1; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.tc { text-align: center; }

/* ═══ TOP STRIP ═══ */
.top-strip {
  background: var(--accent);
  color: #171717;
  font-size: 13px;
  font-weight: 700;
}
.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.top-strip__inner::-webkit-scrollbar { display: none; }
.top-strip__num {
  display: inline-flex; align-items: center;
  padding: 6px 16px; font-weight: 800; font-size: 13px;
  color: #171717; text-decoration: none;
  border-right: 1px solid rgba(0,0,0,0.12);
  transition: background 0.2s, color 0.2s;
}
.top-strip__num:hover { background: rgba(0,0,0,0.08); }
.top-strip__wa {
  display: inline-flex; align-items: center;
  margin-left: auto; padding: 6px 18px;
  font-weight: 800; font-size: 13px;
  color: #171717; text-decoration: none;
  transition: background 0.2s;
}
.top-strip__wa:hover { background: rgba(0,0,0,0.08); }
@media (max-width: 768px) {
  .top-strip__num--hide-mobile { display: none; }
  .top-strip__num { font-size: 13px; padding: 8px 16px; }
  .top-strip__wa  { padding: 8px 16px; }
}

/* ═══ NAV ═══ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.main-nav__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.brand img { width: 200px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #121826;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--brand); background: #eef6ff; }
.nav-link--primary {
  background: var(--brand);
  color: #fff !important;
  padding-inline: 16px;
  border: none;
  cursor: pointer;
  font: inherit;
}
.nav-link--primary:hover { background: var(--brand-dark); }
.mega-parent.pinned .nav-link--primary { background: var(--brand-dark); }
.nav-link--contact { border: 1px solid var(--line); }
.nav-toggle { display: none; }
.mobile-top-courses { display: none; }

/* Mega menu */
.mega-parent { position: static; }
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(1080px, calc(100vw - 32px));
  transform: none;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mega-parent.open .mega-menu { opacity: 1; pointer-events: auto; visibility: visible; }
.mega-menu__rail { padding: 14px; background: #f8fafc; border-right: 1px solid var(--line); }
.mega-tab {
  width: 100%; padding: 14px 16px; border: 0; border-radius: 8px;
  background: transparent; text-align: left; font: inherit;
  font-size: 15px; font-weight: 700; color: var(--ink); cursor: pointer;
  transition: background var(--transition);
}
.mega-tab.active, .mega-tab:hover { background: #e9eef5; }
.mega-menu__content { padding: 16px; }
.mega-panel { display: none; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mega-panel.active { display: grid; }
.mega-card {
  padding: 16px; border-radius: 8px; background: #fff;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: box-shadow var(--transition), transform var(--transition);
}
.mega-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.mega-card span, .course-label, .eyebrow {
  display: inline-block; color: var(--brand); font-size: 11px;
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.mega-card strong { display: block; margin: 6px 0 4px; font-size: 17px; color: var(--ink); }
.mega-card small { color: var(--muted); font-size: 13px; line-height: 1.4; }
.mega-card__roadmap {
  display: block; margin-top: 8px;
  font-size: 11px; font-weight: 700;
  color: #dc2626;
  letter-spacing: 0;
  text-transform: none;
}
.mega-card:hover .mega-card__roadmap { text-decoration: underline; }
.mega-view-all {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.mobile-course-menu,
.nav-link--mobile-only,
.mobile-courses-panel {
  display: none;
}

/* ═══ STICKY DEMO BAR (mobile only) ═══ */
.sticky-demo-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #0b1220;
  color: #fff;
  padding: 11px 16px;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
}
.sticky-demo-btn {
  background: var(--accent);
  color: #111;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

/* ═══ HERO ═══ */
.hero {
  background: linear-gradient(130deg, #05112a 0%, #0a2651 45%, #0960c6 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(11,116,222,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,122,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
  padding: 80px 0 90px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-bullets li {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hb-check {
  width: 22px; height: 22px;
  background: rgba(74,222,128,0.2);
  border: 1px solid rgba(74,222,128,0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4ade80;
  flex-shrink: 0;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-lg { min-height: 54px; font-size: 16px; padding: 0 32px; }
.btn-hero-call {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 0 20px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), color var(--transition);
}
.btn-hero-call:hover { background: rgba(255,255,255,0.12); color: #fff; }
.hero-trust {
  display: flex;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item { text-align: center; }
.hero-trust-item strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust-item span { font-size: 12px; color: rgba(255,255,255,0.6); }
.hero-trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* Lead form */
.hero-form-wrap { position: relative; z-index: 2; }
.lead-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(0,0,0,0.32);
  overflow: hidden;
  color: var(--ink);
}
.lead-card-header {
  background: var(--brand);
  color: #fff;
  padding: 20px 26px;
}
.lead-card-header strong { display: block; font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.lead-card-header span { font-size: 13px; opacity: 0.85; }
.lead-form { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-field .req { color: var(--red); }
.form-field input,
.form-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11,116,222,0.12);
}
.lead-submit {
  padding: 15px;
  background: var(--accent);
  color: #111;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform 0.1s;
}
.lead-submit:hover { background: #e86d0e; transform: translateY(-1px); }
.lead-note { font-size: 12px; color: var(--muted); text-align: center; margin: 0; }
.lead-error {
  margin: 0 26px;
  padding: 10px 14px;
  background: #fff0f0;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  color: #b91c1c;
  font-size: 14px;
}
.lead-success {
  background: #fff;
  border-radius: 18px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 28px 64px rgba(0,0,0,0.32);
  color: var(--ink);
}
.lead-success-icon { font-size: 52px; margin-bottom: 12px; }
.lead-success h3 { color: var(--green); font-size: 22px; margin-bottom: 10px; }
.lead-success p { color: var(--muted); }

/* ═══ STATS STRIP ═══ */
.stats-strip {
  background: #0b1220;
  color: #fff;
  padding: 30px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-item { text-align: center; padding: 6px 8px; }
.stat-item strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-item span { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.1); }

/* ═══ SECTIONS ═══ */
.section { padding: 88px 0; }
.section-head { margin-bottom: 44px; }
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  max-width: 760px;
  letter-spacing: -0.02em;
}
.section-head.tc h2 { margin-inline: auto; }
.section-sub { color: var(--muted); font-size: 18px; margin-top: 14px; max-width: 680px; }
.section-head.tc .section-sub { margin-inline: auto; }
.band { background: var(--soft); }
.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border: 0;
  transition: background var(--transition), transform 0.1s, box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { background: #e86d0e; color: #111; }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover { background: #eef6ff; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ═══ PLACEMENT STRIP (ticker) ═══ */
.placement-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 54px;
}
.placement-strip__label {
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 6px;
}
.placement-ticker-wrap { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.placement-ticker {
  display: flex;
  gap: 48px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.placement-ticker:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.placement-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
  cursor: default;
}
.placement-tick-item img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tick-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.tick-text { display: inline-flex; gap: 4px; align-items: center; }
.tick-text span { color: var(--muted); }
.placement-tick-badge {
  background: #ecfdf5;
  color: var(--green);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

/* ═══ PLACEMENT SHOWCASE ═══ */
.placed-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
}
.placed-card {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}
.placed-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--green);
}
.placed-card__avatar {
  position: relative;
  width: 64px; height: 64px;
  margin: 0 auto 12px;
}
.placed-card__avatar img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.placed-card__avatar > span {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.placed-check {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-weight: 800;
}
.placed-card__name {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.placed-card__job {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 8px;
}
.placed-card__badge {
  display: inline-block;
  background: #ecfdf5;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ═══ COURSES ═══ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.course-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.course-card-img-link {
  display: block;
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--course-color,#0b74de) 15%, #fff) 0%, color-mix(in srgb, var(--course-color,#0b74de) 8%, #f5f7fb) 100%);
  overflow: hidden;
}
.course-card-img-link img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  min-height: 130px;
  transition: transform 0.3s;
}
.course-card:hover .course-card-img-link img { transform: scale(1.04); }
.course-card-icon {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 28px;
  opacity: 0.7;
}
.course-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.course-salary {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 999px;
}
.course-card-body h3 { margin: 6px 0 8px; font-size: 19px; }
.course-card-body h3 a { color: var(--ink); transition: color var(--transition); }
.course-card-body h3 a:hover { color: var(--brand); }
.course-card-body > p { color: var(--muted); font-size: 14px; margin-bottom: 12px; flex: 1; }
.course-meta {
  display: flex;
  gap: 12px;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.course-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.course-tools span {
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
}
.course-enquire {
  display: block;
  text-align: center;
  padding: 11px;
  background: #eef6ff;
  color: var(--brand);
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
  margin-top: auto;
  transition: background var(--transition), color var(--transition);
}
.course-enquire:hover { background: var(--brand); color: #fff; }

/* ═══ HOW IT WORKS ═══ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.step-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--brand);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.step-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.step-card h3 { margin: 0 0 10px; font-size: 19px; }
.step-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }
.step-arrow {
  font-size: 22px;
  color: var(--brand);
  opacity: 0.3;
  padding-top: 54px;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ═══ WHY TKA ═══ */
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.why-copy h2 { font-size: clamp(26px, 3.5vw, 42px); margin: 10px 0 18px; letter-spacing: -0.02em; }
.why-copy p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.why-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.why-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.why-item strong { display: block; font-size: 16px; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: 14px; margin: 0; }

/* ═══ SALARY SECTION ═══ */
.salary-section { background: #f0f6ff; }
.salary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.salary-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.salary-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.salary-card--highlight {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(11,116,222,0.08);
}
.salary-card--highlight::before {
  content: 'MOST COMMON';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
}
.salary-tier {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.salary-range {
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.salary-card--highlight .salary-range { color: var(--brand); }
.salary-role {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.salary-card > p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.salary-roles-list { display: flex; flex-direction: column; gap: 8px; }
.salary-roles-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.salary-roles-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 13px;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: 16px; letter-spacing: 3px; }
.testimonial-quote {
  color: #374151;
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* ═══ COMPANIES ═══ */
.companies-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-width: 120px;
  min-height: 60px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.company-logo:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.company-logo img { max-width: 90px; max-height: 34px; object-fit: contain; filter: grayscale(1); transition: filter var(--transition); }
.company-logo:hover img { filter: none; }

/* ═══ BRANCHES ═══ */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 20px;
}
.branch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.branch-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--brand);
}
.branch-card--online { border-color: #c7d2fe; background: #f0f4ff; }
.branch-icon { font-size: 28px; }
.branch-card h3 { font-size: 18px; margin: 4px 0; }
.branch-address { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.branch-phone {
  font-weight: 800;
  font-size: 14px;
  color: var(--brand);
  display: block;
}
.branch-phone:hover { text-decoration: underline; }
.branch-demo {
  display: inline-flex;
  align-items: center;
  background: #eef6ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  margin-top: 4px;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}
.branch-demo:hover { background: var(--brand); color: #fff; }

/* ═══ FAQ ═══ */
.faq-section { background: #fff; }
.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.faq-head { position: sticky; top: 90px; }
.faq-head h2 { font-size: clamp(26px, 3vw, 38px); margin: 10px 0 16px; letter-spacing: -0.02em; }
.faq-head p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--brand); }
.faq-q[aria-expanded="true"] { color: var(--brand); }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding-bottom: 20px;
  animation: faq-open 0.2s ease;
}
.faq-body p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ BOTTOM CTA BAND ═══ */
.cta-band {
  background: linear-gradient(130deg, #05112a 0%, #0a2651 50%, #0960c6 100%);
  color: #fff;
  padding: 80px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 60px;
}
.cta-band-copy h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.cta-band-copy p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 24px; }
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-checklist li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-form-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}
.cta-form-box > strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.cta-mini-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cta-mini-form input,
.cta-mini-form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.cta-mini-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-mini-form select option { background: #0a2651; color: #fff; }
.cta-mini-form input:focus,
.cta-mini-form select:focus { border-color: rgba(255,255,255,0.6); }
.cta-mini-form button {
  padding: 14px;
  background: var(--accent);
  color: #111;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
}
.cta-mini-form button:hover { background: #e86d0e; }
.cta-or {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 12px;
  position: relative;
}
.cta-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-phones a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.cta-phones a:hover { color: #fff; }

/* ═══ FOOTER ═══ */
.site-footer {
  padding: 60px 0 28px;
  background: #070e1c;
  color: #c8d4e8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}
.footer-logo { width: 170px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.site-footer h3 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer a { display: block; margin: 8px 0; color: #c8d4e8; font-size: 14px; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-cta { color: #fff !important; font-weight: 800; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 150;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition);
  animation: bounce-in 0.5s 1s both;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
@keyframes bounce-in {
  from { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  to   { transform: scale(1); }
}

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 640px; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}
.contact-branches-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 24px;
}
.contact-branches-grid {
  display: grid;
  gap: 16px;
}
.branch-card {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.branch-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}
.branch-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.5;
}
.branch-card a {
  font-weight: 800;
  font-size: 16px;
  color: var(--brand);
  text-decoration: none;
}
.branch-card--online {
  border: 2px solid var(--brand);
  background: #f0f6ff;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-card__head {
  background: var(--brand);
  color: #fff;
  padding: 22px 26px;
}
.contact-card__head strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.contact-card__head span {
  font-size: 13px;
  opacity: .85;
}
.contact-success {
  padding: 48px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-success__icon { font-size: 52px; margin-bottom: 12px; }
.contact-success h3 { color: var(--green); margin-bottom: 10px; }
.contact-success p  { color: var(--muted); margin-bottom: 16px; }

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-col { order: 1; }
  .contact-branches-col { order: 2; }
  .contact-branches-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .contact-branches-grid {
    grid-template-columns: 1fr;
  }
  .contact-branches-title { font-size: 22px; }
}

/* Inner page styles */
.course-hero { padding: 72px 0; background: #f0f6ff; }
.course-hero__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.course-facts {
  display: grid; gap: 0; padding: 0;
  border-radius: 10px; background: #fff; box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--line);
}
.course-facts div {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.course-facts div:last-child { border-bottom: 0; }
.course-facts span { color: var(--muted); font-size: 14px; }
.course-facts strong { font-size: 15px; }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.detail-grid > div { padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.check-list { padding-left: 20px; color: var(--muted); list-style: disc; }
.check-list li { margin: 10px 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list span { padding: 8px 12px; border-radius: 999px; background: #eef6ff; color: var(--brand-dark); font-weight: 700; font-size: 13px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.proof-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: start; }
.proof-list { display: grid; gap: 14px; }
.proof-list div { padding: 20px; border-radius: 8px; background: #fff; border-left: 4px solid var(--green); box-shadow: var(--shadow-sm); }
.proof-list strong { display: block; font-size: 18px; margin-bottom: 4px; }
.proof-list span { color: var(--muted); font-size: 14px; }
.course-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.course-hero-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}
.course-jobs-section,
.placement-career-section {
  background: #fff;
}
.job-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.job-role-grid div {
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbff;
  color: var(--ink);
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}
.syllabus-section,
.course-fit-section {
  background: var(--soft);
}
.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.syllabus-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.syllabus-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.course-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.course-two-col > div {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.course-two-col h2 {
  margin: 8px 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 850;
}
.career-path-list {
  display: grid;
  gap: 14px;
}
.career-path-list div {
  padding: 18px;
  border-radius: 10px;
  background: #f8fbff;
  border: 1px solid var(--line);
}
.career-path-list span,
.career-path-list small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.career-path-list strong {
  display: block;
  margin: 6px 0;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.course-note-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Premium course landing pages */
.course-landing-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(11,116,222,0.32), transparent 32%),
    linear-gradient(130deg, #05112a 0%, #0a2651 46%, #0960c6 100%);
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
.course-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 25%, rgba(255,255,255,0.10), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,0.03), transparent 55%);
  pointer-events: none;
}
.course-landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 390px;
  gap: 48px;
  align-items: center;
}
.course-landing-copy h1 {
  max-width: 820px;
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.course-landing-copy p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 20px;
  line-height: 1.7;
}
.course-landing-hero .eyebrow {
  color: #93c5fd;
}
.course-landing-hero .course-hero-points span {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}
.course-landing-hero .btn-primary {
  background: var(--accent);
  color: #111;
}
.course-landing-hero .btn-primary:hover {
  background: #e86d0e;
  color: #111;
}
.course-landing-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}
.course-landing-hero .btn-outline:hover {
  background: rgba(255,255,255,0.14);
}
.course-landing-hero .btn-hero-call {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
  padding: 13px 22px;
  border-radius: 8px;
}
.course-outcome-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
}
.course-outcome-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.course-outcome-card h2 {
  margin: 18px 0 8px;
  color: var(--brand);
  font-size: 40px;
  font-weight: 900;
}
.course-outcome-card p {
  color: var(--muted);
  line-height: 1.65;
}
.course-outcome-roles {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}
.course-outcome-roles span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.course-outcome-card a {
  color: var(--brand);
  font-weight: 900;
}
.course-proof-strip {
  background: #0b1220;
  color: #fff;
  padding: 18px 0;
}
.course-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.course-proof-grid div {
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.course-proof-grid strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}
.course-proof-grid span {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.course-section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  max-width: 760px;
  letter-spacing: -0.02em;
}
.premium-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.premium-role-card,
.premium-syllabus-card,
.premium-project-card,
.premium-fit-card,
.course-tools-panel,
.course-placement-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.premium-role-card {
  min-height: 190px;
  padding: 24px;
  border-top: 4px solid var(--brand);
}
.premium-role-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.premium-role-card h3 {
  min-height: 54px;
  font-size: 23px;
  font-weight: 800;
}
.premium-role-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.premium-role-card small,
.premium-tool-grid span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
}
.premium-syllabus-section,
.course-fit-section {
  background: var(--soft);
}
.premium-syllabus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.premium-syllabus-card {
  padding: 24px;
}
.premium-syllabus-card > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.premium-syllabus-card h3 {
  margin: 8px 0 14px;
  font-size: 21px;
  font-weight: 800;
}
.premium-syllabus-card li,
.premium-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  margin: 10px 0;
}
.premium-syllabus-card li::before,
.premium-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.course-skill-project-section,
.premium-path-section {
  background: #fff;
}
.course-skill-project-grid,
.premium-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.course-tools-panel,
.course-placement-panel,
.premium-fit-card {
  padding: 30px;
}
.course-tools-panel h2,
.course-placement-panel h2,
.premium-fit-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.premium-tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.premium-project-section {
  background: #f8fbff;
}
.premium-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.premium-project-card {
  padding: 24px;
}
.premium-project-card > span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.45;
}
.premium-project-card h3 {
  margin: 12px 0;
  font-size: 21px;
  font-weight: 800;
}
.premium-project-card p {
  color: var(--muted);
  line-height: 1.65;
}
.premium-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: path;
}
.premium-path-grid div {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.premium-path-grid div::before {
  counter-increment: path;
  content: counter(path);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}
.premium-path-grid span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.premium-path-grid h3 {
  margin: 8px 0;
  font-size: 20px;
  font-weight: 800;
}
.premium-path-grid p {
  color: var(--muted);
  line-height: 1.65;
}
.course-guidance-band {
  padding: 38px 0;
  background: #0b1220;
  color: #fff;
}
.course-guidance-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.course-guidance-inner .eyebrow {
  color: #93c5fd;
}
.course-guidance-inner h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.course-guidance-inner p {
  max-width: 720px;
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .placed-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .branches-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 52px 0 64px; gap: 40px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-trust-sep { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .course-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .salary-grid { grid-template-columns: 1fr; gap: 16px; }
  .salary-card--highlight { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stats-grid { justify-content: center; gap: 24px 32px; }
  .sticky-demo-bar { display: flex; }
  .whatsapp-float { bottom: 76px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 44px; }
  .course-hero__grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .job-role-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .syllabus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .course-two-col { grid-template-columns: 1fr; }
  .course-landing-hero__grid { grid-template-columns: 1fr; }
  .course-outcome-card { max-width: 520px; }
  .course-proof-grid,
  .premium-project-grid,
  .premium-path-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .premium-role-grid,
  .premium-syllabus-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .course-skill-project-grid,
  .premium-fit-grid {
    grid-template-columns: 1fr;
  }
  .branches-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
  .site-header,
  .main-nav {
    z-index: 5000;
  }
  .main-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .main-nav__inner {
    min-height: 68px;
    justify-content: flex-start;
    gap: 10px;
  }
  .brand {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
  }
  .brand img {
    width: min(185px, 48vw);
  }
  .nav-toggle {
    order: 1;
    display: inline-grid;
    width: 44px; height: 44px;
    align-content: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    padding: 10px;
    flex: 0 0 44px;
  }
  .mobile-top-courses {
    order: 3;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    border-radius: 6px;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
    border: 0;
    font-family: inherit;
    cursor: pointer;
  }
  .mobile-top-courses::before {
    content: "\2630";
    font-size: 16px;
    line-height: 1;
  }
  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links,
  .mobile-courses-panel {
    position: fixed;
    top: var(--mobile-nav-top, 100px);
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: none;
    z-index: 5001;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open,
  .mobile-courses-panel.open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    font-size: 16px;
  }
  .mega-parent { display: none; }
  .mega-parent > .nav-link--primary {
    width: auto;
    min-height: 46px;
    border-radius: 6px;
    background: var(--brand);
    color: #fff !important;
    padding: 0 13px;
    gap: 7px;
    font-size: 15px;
    font-weight: 850;
  }
  .nav-link--mobile-only {
    display: flex;
  }
  .nav-link--desktop-secondary {
    display: none;
  }
  .nav-link--primary::before {
    content: "\2630";
    font-size: 17px;
    line-height: 1;
  }
  .nav-link--primary::after {
    content: none;
  }
  .mega-menu { display: none !important; }
  .mobile-course-menu {
    display: none !important;
  }
  .nav-links > .nav-link:not(.nav-link--primary) {
    min-height: 64px;
    margin-top: 0;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    color: #020617;
    font-size: 18px;
    font-weight: 750;
  }
  .nav-links > .nav-link[href*="placements"]::after,
  .nav-links > .nav-link[href*="tutorials"]::after {
    content: "\203A";
    color: var(--muted);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
  }
  .mobile-course-group {
    display: block;
  }
  .mobile-course-category {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font: inherit;
    font-size: 16px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
  }
  .mobile-course-category::after {
    content: "\203A";
    color: var(--muted);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
  }
  .mobile-course-group.open .mobile-course-category::after {
    transform: rotate(90deg);
  }
  .mobile-course-category--link {
    text-decoration: none;
  }
  .mobile-course-panel {
    display: none;
    padding: 8px 0 2px 14px;
  }
  .mobile-course-group.open .mobile-course-panel {
    display: grid;
    gap: 8px;
  }
  .mobile-course-panel a {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--ink);
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
  }
  .placed-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .course-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { display: none; }
  .section { padding: 60px 0; }
  .hero-copy h1 { font-size: 36px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-hero-call { justify-content: center; }
  .course-landing-hero { padding: 48px 0; }
  .course-landing-copy h1 { font-size: 36px; }
  .course-landing-copy p { font-size: 17px; }
  .course-hero-points { gap: 8px; }
  .course-hero-points span { font-size: 12px; }
  .course-landing-hero .hero-actions { flex-direction: column; align-items: stretch; }
  .course-landing-hero .btn,
  .course-landing-hero .btn-hero-call { justify-content: center; text-align: center; }
  .course-outcome-card { padding: 24px; }
  .course-outcome-card h2 { font-size: 34px; }
  .course-proof-grid,
  .premium-role-grid,
  .premium-syllabus-grid,
  .premium-project-grid,
  .premium-path-grid,
  .course-skill-project-grid,
  .premium-fit-grid {
    grid-template-columns: 1fr;
  }
  .course-proof-grid div,
  .premium-role-card,
  .premium-syllabus-card,
  .premium-project-card,
  .premium-path-grid div,
  .course-tools-panel,
  .course-placement-panel,
  .premium-fit-card {
    padding: 22px;
  }
  .premium-role-card { min-height: auto; }
  .premium-role-card h3 { min-height: 0; }
  .course-section-head h2 { font-size: 32px; }
  .course-guidance-inner { flex-direction: column; align-items: flex-start; }
  .course-guidance-inner .btn { width: 100%; justify-content: center; }
  .placed-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .branches-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .job-role-grid,
  .syllabus-grid {
    grid-template-columns: 1fr;
  }
  .course-two-col > div,
  .syllabus-card,
  .detail-grid > div {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .placed-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
}

/* ═══ TICKER SPEED FIX — 25 items only, proper speed ═══ */
.placement-ticker { animation-duration: 120s !important; }

/* ═══ JOURNEY — 6-step Monday.com grid ═══ */
.journey-section { background: #f8faff; }
.journey-wrap { margin-top: 48px; }
.journey-phases {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 16px;
}
.journey-phase {
  text-align: center; padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
}
.journey-phase--blue   { background: rgba(79,70,229,0.10); color: #4F46E5; }
.journey-phase--purple { background: rgba(124,58,237,0.10); color: #7C3AED; }
.journey-phase--green  { background: rgba(5,150,105,0.10);  color: #059669; }
.journey-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.journey-arrows {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  text-align: center; padding: 14px 0;
}
.journey-arrow { font-size: 22px; font-weight: 800; }
.journey-arrow--blue   { color: #4F46E5; }
.journey-arrow--purple { color: #7C3AED; }
.journey-arrow--green  { color: #059669; }
.journey-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  position: relative; overflow: hidden;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.journey-card:hover { transform: translateY(-8px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.journey-card--blue   { border-left-color: #4F46E5; }
.journey-card--purple { border-left-color: #7C3AED; }
.journey-card--green  { border-left-color: #059669; }
.jc-ghost {
  position: absolute; top: -8px; right: 14px;
  font-size: 80px; font-weight: 900; line-height: 1;
  color: rgba(0,0,0,0.04); pointer-events: none; user-select: none;
}
.jc-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.journey-card h3 { font-size: 16px; font-weight: 800; margin: 0 0 10px; color: var(--dark); }
.journey-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ═══ WHY SPLIT (Monday.com style) ═══ */
.why-split-section { background: var(--band); }
.why-split { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.why-split__left .eyebrow { margin-bottom: 12px; }
.why-split__left h2 { font-size: clamp(26px,3vw,40px); margin: 0 0 32px; letter-spacing: -0.02em; }
.why-features { display: flex; flex-direction: column; margin-bottom: 36px; }
.why-feature {
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.why-feature:first-child { padding-top: 0; }
.why-feature__label {
  display: block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px;
}
.why-feature h3 { font-size: 20px; font-weight: 800; margin: 0; color: var(--dark); line-height: 1.3; }
.why-feature--highlight {
  background: #eff6ff; border-radius: var(--radius); padding: 20px 22px;
  border-bottom: none; margin-top: 4px;
}
.why-feature--highlight h3 { font-size: 18px; margin-bottom: 8px; }
.why-feature--highlight p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
.why-split__right { display: flex; flex-direction: column; gap: 16px; }
.why-stat-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.why-stat { font-size: 56px; font-weight: 900; color: var(--brand); line-height: 1; }
.why-stat-label { font-size: 14px; color: var(--muted); margin-top: 6px; }
.why-test-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.why-test-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.why-test-img      { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.why-test-initials {
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
  color: #fff; flex-shrink: 0;
}
.why-test-author strong { display: block; font-size: 14px; font-weight: 700; }
.why-test-author span   { font-size: 12px; color: var(--muted); }
.why-test-quote {
  font-size: 14px; color: #374151; line-height: 1.65; font-style: italic;
  margin: 0; border-left: 3px solid var(--brand); padding-left: 14px;
}
.why-branches-card {
  background: var(--brand); border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.why-branches-num   { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; }
.why-branches-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 1.4; }

/* ═══ COMPANY LOGOS (floating transparent) ═══ */
.co-wall { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.co-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,transparent 0%,#000 6%,#000 94%,transparent 100%);
  mask-image: linear-gradient(to right,transparent 0%,#000 6%,#000 94%,transparent 100%);
}
.co-track {
  display: flex; gap: 56px; align-items: center; flex-shrink: 0;
  animation: scroll-left 60s linear infinite;
}
.co-track[style*="reverse"] { animation-direction: reverse; }
.co-row:hover .co-track { animation-play-state: paused; }
.co-logo-wrap {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 4px;
}
.co-logo {
  width: 36px; height: 36px; object-fit: contain; border-radius: 8px;
  opacity: 0.5; filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
.co-logo-wrap:hover .co-logo { opacity: 1; filter: none; transform: scale(1.1); }
.co-logo-name {
  font-size: 13px; font-weight: 700; color: #6b7280; white-space: nowrap;
  transition: color 0.3s;
}
.co-logo-wrap:hover .co-logo-name { color: var(--dark); }
.co-logo-fallback {
  font-size: 13px; font-weight: 700; color: #9ca3af; white-space: nowrap;
  display: none;
}
.co-more { color: var(--muted); font-size: 14px; margin: 0; }

/* ═══ JOB OPENINGS (horizontal scroll) ═══ */
.job-section { background: #f8faff; }
.job-scroll-outer {
  overflow: hidden; margin-top: 40px;
  -webkit-mask-image: linear-gradient(to right,transparent 0%,#000 4%,#000 96%,transparent 100%);
  mask-image: linear-gradient(to right,transparent 0%,#000 4%,#000 96%,transparent 100%);
}
.job-track {
  display: flex; gap: 20px; flex-shrink: 0;
  animation: scroll-left 90s linear infinite;
}
.job-scroll-outer:hover .job-track { animation-play-state: paused; }
.job-card {
  flex-shrink: 0; width: 280px;
  background: #fff; border-radius: var(--radius);
  border-top: 4px solid var(--jc, #4F46E5);
  padding: 24px 22px; box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.job-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.job-card__tag {
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--jc, #4F46E5) 12%, white);
  color: var(--jc, #4F46E5);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px; align-self: flex-start;
}
.job-card__title {
  font-size: 16px; font-weight: 800; color: var(--dark);
  margin: 0; line-height: 1.35;
}
.job-card__meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--muted);
}
.job-card__apply {
  margin-top: auto; display: inline-flex; align-items: center;
  background: var(--jc, #4F46E5); color: #fff;
  font-size: 13px; font-weight: 700; padding: 9px 16px;
  border-radius: 8px; text-decoration: none;
  transition: opacity 0.2s;
}
.job-card__apply:hover { opacity: 0.88; }

/* ═══ MOBILE: journey + why split + jobs ═══ */
@media (max-width: 900px) {
  .why-split { grid-template-columns: 1fr; gap: 40px; }
  .why-split__right { grid-row: 1; }
  .why-stat { font-size: 44px; }
}
@media (max-width: 768px) {
  .journey-phases, .journey-row { grid-template-columns: 1fr; }
  .journey-arrows { display: none; }
  .journey-card { border-left-width: 4px; }
  .jc-ghost { font-size: 60px; }
  .job-card { width: 240px; }
}

/* ═══ HERO CHIPS ═══ */
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.hero-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  white-space: nowrap;
}

/* ═══ COURSE CARD BAND (replaces broken image) ═══ */
.course-card-band {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; height: 148px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--course-color,#0b74de) 18%, #fff),
    color-mix(in srgb, var(--course-color,#0b74de) 8%, #f5f7fb));
  position: relative; overflow: hidden;
  text-decoration: none;
  transition: filter var(--transition);
}
.course-card:hover .course-card-band { filter: brightness(1.04); }
.course-band-icon { font-size: 52px; line-height: 1; }
.course-band-salary {
  background: rgba(255,255,255,0.92);
  color: var(--green); font-weight: 800; font-size: 13px;
  padding: 4px 14px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.course-urgency {
  font-size: 11px; font-weight: 800; color: var(--accent);
  margin: 0 0 6px; text-align: center;
}

/* ═══ STEP CIRCLES ═══ */
.step-num {
  font-size: 13px !important; font-weight: 900 !important;
  color: #fff !important; opacity: 1 !important;
  line-height: 1 !important; position: static !important;
  width: 36px; height: 36px;
  background: var(--brand); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

/* ═══ SCROLL KEYFRAMES (shared by wall, testimonials, companies) ═══ */
@keyframes scroll-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ═══ PLACEMENT WALL (5-row infinite) ═══ */
.placement-wall-section { overflow: hidden; }
.pw-wall { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.pw-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.pw-track { display: flex; gap: 12px; flex-shrink: 0; }
.pw-row:nth-child(odd)  .pw-track { animation: scroll-left  var(--speed, 60s) linear infinite; }
.pw-row:nth-child(even) .pw-track { animation: scroll-right var(--speed, 75s) linear infinite; }
.pw-row:hover .pw-track { animation-play-state: paused; }
.pw-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 16px;
  min-width: 220px; flex-shrink: 0;
  box-shadow: var(--shadow-sm); cursor: default;
}
.pw-card__av { position: relative; flex-shrink: 0; }
.pw-card__av img,
.pw-card__av span {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff;
  object-fit: cover; flex-shrink: 0;
}
.pw-card__av i {
  position: absolute; bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--green); border-radius: 50%;
  border: 2px solid #fff; display: flex;
  align-items: center; justify-content: center;
  font-size: 8px; color: #fff; font-weight: 800; font-style: normal;
}
.pw-card__text { min-width: 0; flex: 1; }
.pw-card__name { font-size: 13px; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; margin-bottom: 2px; }
.pw-card__job  { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pw-card__date { font-size: 10px; color: var(--green); font-weight: 700; margin-top: 2px; }

/* ═══ TESTIMONIALS SCROLL (dual-row) ═══ */
.t-scroll-wrap { overflow: hidden; margin-top: 44px; }
.t-scroll-row {
  overflow: hidden; margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.t-scroll-track { display: flex; gap: 20px; flex-shrink: 0; }
.t-scroll-row:not(.t-scroll-row--reverse) .t-scroll-track { animation: scroll-left  var(--speed, 60s) linear infinite; }
.t-scroll-row--reverse .t-scroll-track                    { animation: scroll-right var(--speed, 75s) linear infinite; }
.t-scroll-row:hover .t-scroll-track { animation-play-state: paused; }
.t-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  width: 340px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.t-card__stars    { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.t-card__quote    { color: #374151; font-size: 14px; line-height: 1.65; flex: 1; font-style: italic; margin: 0; }
.t-card__author   { display: flex; align-items: center; gap: 12px; }
.t-card__img      { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.t-card__initials {
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.t-card__author strong { display: block; font-size: 14px; }
.t-card__author span   { font-size: 12px; color: var(--muted); }

/* ═══ COMPANIES WALL (3-row infinite scroll) ═══ */
.co-wall {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.co-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.co-track {
  display: flex; gap: 14px; flex-shrink: 0;
  animation: scroll-left 50s linear infinite;
  align-items: center;
}
.co-track[style*="reverse"] { animation-direction: reverse; }
.co-row:hover .co-track { animation-play-state: paused; }
.co-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; min-width: 110px; height: 50px;
  border: 1.5px solid var(--line); border-radius: 8px;
  background: #fff; font-weight: 700; font-size: 13px;
  color: #4b5563; box-shadow: var(--shadow-sm);
  flex-shrink: 0; white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.co-item:hover { border-color: var(--brand); color: var(--brand); }
.co-more { color: var(--muted); font-size: 14px; margin: 0; }

/* ═══ CTA CALLBACK ═══ */
.cta-callback { font-size: 12px; color: rgba(255,255,255,0.65); text-align: center; margin: 4px 0 0; }

/* ═══ MOBILE: new sections ═══ */
@media (max-width: 768px) {
  .pw-card { min-width: 180px; padding: 8px 12px; }
  .pw-card__av img, .pw-card__av span { width: 34px; height: 34px; font-size: 11px; }
  .pw-card__name { font-size: 12px; }
  .pw-card__job  { font-size: 10px; }
  .pw-row:nth-child(odd)  .pw-track { animation-duration: 20s; }
  .pw-row:nth-child(even) .pw-track { animation-duration: 24s; }
  .t-card { width: 280px; padding: 18px; }
  .t-card__quote { font-size: 13px; }
  .co-item { min-width: 90px; height: 42px; padding: 7px 12px; font-size: 12px; }
  .course-card-band { height: 120px; }
  .course-band-icon { font-size: 40px; }
  .hero-chips { gap: 8px; }
  .hero-chip { font-size: 11px; padding: 4px 10px; }
}
@media (max-width: 620px) {
  .pw-wall { gap: 10px; }
  .t-scroll-wrap { margin-top: 32px; }
}

/* ═══ WHY INTERACTIVE (Monday.com style) ═══ */
.why-ix-section { background: var(--soft); }
.why-ix-head { text-align: center; margin-bottom: 52px; }
.why-ix-head h2 { font-size: clamp(26px, 3.5vw, 42px); letter-spacing: -0.02em; margin-bottom: 12px; }
.why-ix-head p  { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

.why-ix {
  display: grid;
  grid-template-columns: 1fr 1px 480px;
  gap: 0 56px;
  align-items: start;
}
.why-ix__left  { display: flex; flex-direction: column; gap: 0; }
.why-ix__divider { background: var(--line); align-self: stretch; }
.why-ix__right { position: sticky; top: 100px; }

/* ── Left feature buttons ── */
.wf {
  width: 100%; text-align: left;
  background: transparent; border: none; cursor: pointer;
  padding: 22px 20px 18px;
  border-radius: 10px;
  transition: background 0.2s;
  border-left: 3px solid transparent;
  display: flex; flex-direction: column;
}
.wf:hover:not(.active) { background: #eff6ff; border-left-color: #93c5fd; }
.wf.active {
  background: #dbeafe;
  border-left-color: var(--brand);
}
.wf__label {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 8px;
}
.wf__title {
  display: block; font-size: clamp(20px, 2vw, 26px); font-weight: 800;
  color: var(--ink); line-height: 1.25; letter-spacing: -0.01em;
}
.wf__subtitle {
  display: block; font-size: 14px; color: var(--muted);
  line-height: 1.6; margin-top: 8px;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.2s ease;
}
.wf.active .wf__subtitle { max-height: 80px; opacity: 1; margin-top: 8px; }

.why-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px; padding: 0 4px;
}

/* ── Right panels ── */
.wt {
  opacity: 0; transform: translateY(12px);
  pointer-events: none; position: absolute; top: 0; left: 0; right: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.wt.active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto; position: relative;
}

/* Big stat row */
.wt__stat-row {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.wt__big-num {
  font-size: clamp(48px, 6vw, 64px); font-weight: 900;
  color: var(--ink); line-height: 1; letter-spacing: -0.03em; flex-shrink: 0;
}
.wt__big-label {
  font-size: 15px; color: var(--muted); line-height: 1.5; max-width: 220px;
}

/* Bullet list */
.wt__bullets {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.wt__bullets li {
  font-size: 15px; color: #374151; line-height: 1.5;
  padding-left: 22px; position: relative;
}
.wt__bullets li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--brand); font-weight: 800; font-size: 13px; top: 1px;
}

/* Testimonial */
.wt__testimonial {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.wt__author {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.wt__av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0;
}
.wt__author strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink); }
.wt__author span   { font-size: 12px; color: var(--muted); }
.wt__quote {
  font-size: 14px; line-height: 1.75; color: #4b5563;
  font-style: italic; margin: 0;
}

@media (max-width: 960px) {
  .why-ix { grid-template-columns: 1fr; gap: 0; }
  .why-ix__divider { display: none; }
  .why-ix__right { position: static; margin-top: 36px; }
  .wt { position: static; opacity: 1; transform: none; pointer-events: auto; display: none; }
  .wt.active { display: block; opacity: 1; transform: none; }
}
@media (max-width: 600px) {
  .wf { padding: 18px 14px 14px; }
  .wf__title { font-size: 20px; }
  .wt__big-num { font-size: 48px; }
  .wt__big-label { font-size: 14px; }
  .wt__bullets li { font-size: 14px; }
  .why-cta-row { margin-top: 24px; }
}

/* ═══════════════════════════════════════════
   COURSE PAGE — NEW SECTIONS
═══════════════════════════════════════════ */

/* ── Hero: override grid for lead form column ── */
.course-landing-hero__grid {
  grid-template-columns: minmax(0, 1.15fr) 380px;
  align-items: start;
}
.course-lead-form {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.10);
  position: sticky;
  top: 88px;
}
.course-lead-form h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}
.course-lead-form > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.lf-field { margin-bottom: 12px; }
.lf-field input,
.lf-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fafafa;
  transition: border-color var(--transition);
}
.lf-field input:focus,
.lf-field select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}
.btn-full { width: 100%; justify-content: center; margin-top: 4px; }
.lf-error {
  color: var(--red);
  font-size: 13px;
  margin: 8px 0 0;
}
.lead-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.lead-success {
  text-align: center;
  padding: 24px 0 8px;
}
.lead-success__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.lead-success h3 { font-size: 18px; font-weight: 800; }
.lead-success p  { font-size: 14px; color: var(--muted); }

/* ── Social Proof Bar ── */
.social-proof-bar {
  background: var(--brand);
  color: #fff;
  padding: 14px 0;
}
.social-proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.spb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  text-align: center;
}
.spb-item strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.spb-item span {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}
.spb-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ── Tools Visual Showcase ── */
.tools-showcase-section { background: var(--soft); }
.tools-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.tool-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 20px 16px 18px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tool-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.tool-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}
.tool-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tool-card span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Placement Wall — 2-row scroll ── */
.placement-wall-section { background: #fff; padding-bottom: 40px; }

/* Scroll rows */
.pwall-outer { overflow: hidden; margin: 0 0 8px; }
.pwall-row   { overflow: hidden; padding: 6px 0; }
.pwall-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.pwall-row--fwd .pwall-track { animation: ticker 35s linear infinite; }
.pwall-row--rev .pwall-track { animation: ticker-rev 35s linear infinite; }
.pwall-row:hover .pwall-track { animation-play-state: paused; }
@media (max-width: 768px) {
  .pwall-row--fwd .pwall-track { animation-duration: 18s; }
  .pwall-row--rev .pwall-track { animation-duration: 18s; }
}

@keyframes ticker-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Compact scroll card */
.pwall-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  width: 220px;
  flex-shrink: 0;
}
.pwall-card__av {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand);
  position: relative;
}
.pwall-card__av img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.pwall-card__av-fb {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
  background: var(--brand);
}
.pwall-card__info { min-width: 0; }
.pwall-card__info strong {
  display: block;
  font-size: 13px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.pwall-card__info span {
  display: block;
  font-size: 11px; font-weight: 600;
  color: var(--brand);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.pwall-card__info small {
  display: block;
  font-size: 10px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Grid fallback (< 8 results) */
.placement-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.placement-wall-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px;
}
.pwc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: var(--brand);
}
.pwc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pwc-avatar-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px;
}
.pwc-info strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.pwc-info span   { display: block; font-size: 12px; color: var(--brand); font-weight: 600; }
.pwc-info small  { display: block; font-size: 11px; color: var(--muted); }
.placement-wall-footer { text-align: center; }

/* ── Company Logos — 3-row scroll ── */
.company-logos-section {
  background: var(--soft);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.company-logos-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.company-scroll-outer { overflow: hidden; }
.company-scroll-row   { overflow: hidden; padding: 4px 0; }
.company-scroll-track {
  display: flex;
  gap: 10px;
  width: max-content;
}
.company-scroll-row--fwd .company-scroll-track { animation: ticker     35s linear infinite; }
.company-scroll-row--rev .company-scroll-track { animation: ticker-rev 35s linear infinite; }
.company-scroll-row:hover .company-scroll-track { animation-play-state: paused; }
.company-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-shrink: 0;
}
.company-logo-chip img {
  height: 36px;
  width: auto;
  max-width: 140px;
  display: block;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s ease;
}
.company-logo-chip:hover img {
  filter: grayscale(0) opacity(1);
}
.company-logo-chip span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.tc-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  flex: 1;
}
.tc-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.tc-meta span {
  display: block;
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
}
.tc-meta em {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  font-style: normal;
}
.tc-meta small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

/* ── Final CTA Band ── */
.course-cta-band {
  background: linear-gradient(135deg, #0753a6 0%, #0b74de 60%, #1e90ff 100%);
  color: #fff;
  padding: 64px 0;
}
.course-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.course-cta-band__inner h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}
.course-cta-band__inner p {
  font-size: 16px;
  opacity: 0.88;
}
.course-cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-white {
  background: #fff;
  color: var(--brand);
  border: none;
  font-weight: 700;
}
.btn-white:hover { background: #f0f4ff; }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  font-weight: 600;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── Sticky Bottom Bar ── */
.course-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1.5px solid var(--line);
  box-shadow: 0 -4px 24px rgba(15,23,42,0.12);
  z-index: 200;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.course-sticky-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.course-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.csb-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.csb-info span {
  font-size: 13px;
  color: var(--muted);
}
.csb-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .course-landing-hero__grid {
    grid-template-columns: 1fr;
  }
  .course-lead-form {
    position: static;
  }
  .spb-item { padding: 0 16px; }
  .course-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .course-cta-band__actions { justify-content: center; }
}
@media (max-width: 600px) {
  .social-proof-bar__inner { gap: 0; }
  .spb-item { padding: 8px 14px; }
  .spb-divider { display: none; }
  .tools-visual-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-wall-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .csb-info { display: none; }
  .csb-actions { width: 100%; justify-content: center; }
  .course-sticky-bar__inner { justify-content: center; }
  .course-cta-band { padding: 40px 0; }
  .course-cta-band__inner h2 { font-size: 24px; }
}

/* Corporate training and hire pages */
.business-page { background: #fff; }
.business-hero {
  padding: 82px 0;
  background: linear-gradient(135deg, #05112a 0%, #082b5f 52%, #0b5fb7 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hire-hero { background: linear-gradient(135deg, #05112a 0%, #073f69 50%, #0b74de 100%); }
.business-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 44px;
  align-items: start;
}
.business-hero .eyebrow,
.business-section--dark .eyebrow,
.business-final-cta .eyebrow { color: #8cc7ff; }
.business-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.business-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 20px;
}
.business-hero__actions,
.business-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.business-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.08);
}
.business-hero .btn-outline:hover { background: rgba(255,255,255,0.16); color: #fff; }
.business-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.business-proof-row div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
}
.business-proof-row strong {
  display: block;
  font-size: 26px;
  font-weight: 950;
}
.business-proof-row span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.business-lead-card {
  position: sticky;
  top: 96px;
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0,0,0,0.26);
}
.business-section { position: relative; }
.business-section--soft { background: var(--soft); }
.business-section--dark { background: #081326; color: #fff; }
.business-section--dark .section-sub { color: rgba(255,255,255,0.68); }
.business-value-grid,
.business-track-grid,
.business-model-grid,
.business-process-grid,
.business-role-grid,
.business-logo-grid {
  display: grid;
  gap: 18px;
}
.business-value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.business-value-grid div,
.business-track-card,
.business-process-grid article,
.business-role-grid article,
.business-use-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.business-value-grid strong,
.business-use-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
}
.business-value-grid p,
.business-use-grid span,
.business-track-card p,
.business-role-grid p,
.business-process-grid p,
.business-model-grid p {
  color: var(--muted);
  font-size: 14px;
}
.business-track-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.business-track-card span {
  display: block;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.business-track-card h3,
.business-role-grid h3 {
  margin: 10px 0;
  font-size: 20px;
}
.business-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}
.business-split h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.03em;
}
.business-check-panel {
  display: grid;
  gap: 12px;
}
.business-check-panel div {
  position: relative;
  padding: 17px 18px 17px 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}
.business-check-panel div::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.business-model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.business-model-grid div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
.business-model-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}
.business-model-grid p { color: rgba(255,255,255,0.68); }
.business-process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.business-process-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.business-process-grid article span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #eef6ff;
  color: var(--brand);
  font-weight: 950;
}
.business-process-grid h3 { font-size: 20px; }
.business-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.business-role-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.business-role-grid article {
  min-height: 150px;
  border-top: 4px solid var(--brand);
}
.business-logo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.business-logo-grid div {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.business-logo-grid img {
  max-height: 34px;
  max-width: 130px;
  opacity: 0.72;
  filter: grayscale(100%);
}
.business-final-cta {
  padding: 62px 0;
  background: linear-gradient(135deg, #06142f, #0b4c93);
  color: #fff;
}
.business-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.business-final-cta h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.03em;
}

@media (max-width: 1100px) {
  .business-hero__grid,
  .business-split { grid-template-columns: 1fr; }
  .business-lead-card { position: static; }
  .business-proof-row,
  .business-value-grid,
  .business-track-grid,
  .business-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-process-grid,
  .business-process-grid--five,
  .business-model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-final-cta__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .business-hero { padding: 54px 0; }
  .business-hero p { font-size: 17px; }
  .business-proof-row,
  .business-value-grid,
  .business-track-grid,
  .business-role-grid,
  .business-process-grid,
  .business-process-grid--five,
  .business-model-grid,
  .business-use-grid,
  .business-logo-grid { grid-template-columns: 1fr; }
  .business-hero__actions .btn,
  .business-final-cta__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ═══ GLOBAL SUCCESS STORIES TICKER ═══ */
.sv-ticker-section {
  background: #0b1a3a;
  padding: 0 0 4px;
  overflow: hidden;
}
.sv-ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.sv-ticker-head a {
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.sv-ticker-head a:hover { text-decoration: underline; }
.sv-row {
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.sv-track {
  display: flex;
  gap: 10px;
  width: max-content;
}
.sv-row:not(.sv-row--rev) .sv-track { animation: ticker 70s linear infinite; }
.sv-row--rev .sv-track             { animation: ticker-rev 70s linear infinite; }
.sv-row:hover .sv-track            { animation-play-state: paused; }

.sv-card {
  width: 190px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2a50;
  transition: transform 0.18s, background 0.18s;
}
.sv-card:hover { transform: translateY(-3px); background: #1e3264; }
.sv-card__thumb {
  position: relative;
  width: 190px;
  height: 107px; /* 16:9 */
  overflow: hidden;
  background: #111;
}
.sv-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s;
}
.sv-card:hover .sv-card__thumb img { transform: scale(1.05); }
.sv-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.18s;
}
.sv-card:hover .sv-card__play { background: rgba(0,0,0,0.42); }
.sv-card__title {
  padding: 7px 9px 9px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .sv-ticker-head { padding: 12px 16px 8px; }
  .sv-card { width: 160px; }
  .sv-card__thumb { width: 160px; height: 90px; }
}

/* ═══ YOUTUBE EMBED (roadmap + modal) ═══ */
.yt-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.yt-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Roadmap video ── */
.roadmap-video-section { background: var(--bg); }
.roadmap-video-wrap { max-width: 860px; margin: 0 auto; }

/* ── Success video cards ── */
.success-videos-section { background: #f8faff; }
.success-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.yt-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.18s, box-shadow 0.18s;
}
.yt-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.yt-card__thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
  overflow: hidden;
}
.yt-card__thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.yt-card:hover .yt-card__thumb img { transform: scale(1.04); }
.yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background 0.18s;
}
.yt-card:hover .yt-card__play { background: rgba(0,0,0,0.38); }
.yt-card__label {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.yt-card__title {
  padding: 12px 14px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

/* ── Video modal ── */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.yt-modal[hidden] { display: none; }
.yt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.yt-modal__box {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 1;
}
.yt-modal__close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.8;
}
.yt-modal__close:hover { opacity: 1; }
.yt-modal .yt-embed-wrap { border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

@media (max-width: 768px) {
  .success-video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .roadmap-video-wrap { max-width: 100%; }
}
@media (max-width: 480px) {
  .success-video-grid { grid-template-columns: 1fr; }
}

/* ── Mock Interview Strip ── */
.mock-strip-section {
  padding: 60px 0 0;
  background: #f8fafc;
}
.mock-strip-outer {
  overflow: hidden;
  margin-top: 32px;
}
.mock-strip-row {
  overflow: hidden;
  padding: 8px 0 24px;
}
.mock-strip-track {
  display: flex;
  gap: 20px;
  animation: ticker 50s linear infinite;
  width: max-content;
}
.mock-strip-row:hover .mock-strip-track { animation-play-state: paused; }
.mock-strip-section .yt-card {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}
.mock-strip-section .yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
@media (max-width: 600px) {
  .mock-strip-section .yt-card { width: 240px; }
}

/* ── Anchor scroll offset for sticky nav (70px) ── */
section[id] { scroll-margin-top: 85px; }
