
:root {
  --blue: #126DFB;
  --ink: #080A0F;
  --muted: #60646F;
  --line: rgba(8,10,15,.09);
  --bg: #FAFAFA;
  --navy: #080D2A;
  --soft: #F4F7FC;
  --star: #FFC21A;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(18,109,251,.12);
  flex: 0 0 auto;
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 850;
  border: 0;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 18px 48px rgba(18,109,251,.28);
}
.btn-secondary {
  background: white;
  color: var(--ink);
}
.section {
  padding: 112px 0;
}
.section-heading {
  margin: 24px 0 18px;
  font-size: clamp(48px, 5.8vw, 80px);
  line-height: .94;
  letter-spacing: -.085em;
  font-weight: 900;
}
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -.025em;
}

/* NAV */
.nav {
  width: 100%;
  height: 84px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  color: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -.045em;
  font-size: 17px;
  text-decoration: none;
}
.logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 900;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 650;
}
.navlinks a {
  color: inherit;
  text-decoration: none;
}
.nav-cta {
  background: white;
  color: var(--ink) !important;
  padding: 11px 18px;
  border-radius: 999px;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #08112d;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,13,42,.32), rgba(8,13,42,.70)),
    radial-gradient(circle at center, rgba(18,109,251,.14), transparent 60%);
}
.hero-content {
  position: relative;
  max-width: 1100px;
  padding: 130px 60px 70px;
  text-align: center;
  color: white;
}
.hero .kicker {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
  color: white;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .15em;
}
.hero h1 {
  margin: 30px auto 24px;
  font-size: clamp(58px, 8vw, 110px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 900;
  max-width: 1000px;
}
.hero p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 780px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero .btn-secondary {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-stats {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.hero-stats strong {
  display: block;
  font-size: 44px;
  letter-spacing: -.06em;
}
.hero-stats span {
  display: block;
  color: rgba(255,255,255,.75);
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #fff;
  vertical-align: bottom;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* OUTCOMES */
.outcomes {
  background:
    radial-gradient(circle at 14% 20%,rgba(18,109,251,.10),transparent 28%),
    linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
  overflow:hidden;
}
.split-head {
  display:grid;
  grid-template-columns:1fr .78fr;
  gap:64px;
  align-items:end;
  margin-bottom:54px;
}
.outcome-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.outcome-card {
  min-height:440px;
  border-radius:36px;
  background:#fff;
  border:1px solid var(--line);
  padding:36px;
  position:relative;
  overflow:hidden;
  box-shadow:0 14px 48px rgba(8,10,15,.045);
}
.outcome-card::before {
  content:"";
  position:absolute;
  right:-110px;
  top:-120px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(18,109,251,.09);
}
.outcome-card.dark {
  background:var(--navy);
  color:#fff;
}
.outcome-card.dark::before { background:rgba(18,109,251,.28); }
.outcome-number {
  position:relative;
  width:52px;
  height:52px;
  border-radius:16px;
  background:#F0F6FF;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:78px;
}
.outcome-card.dark .outcome-number {
  background:rgba(255,255,255,.12);
  color:#fff;
}
.outcome-card h3 {
  position:relative;
  margin:0 0 16px;
  font-size:44px;
  line-height:.95;
  letter-spacing:-.075em;
  font-weight:900;
}
.outcome-card p {
  position:relative;
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.55;
  letter-spacing:-.02em;
}
.outcome-card.dark p { color:rgba(255,255,255,.68); }
.programme-strip {
  margin-top:28px;
  border-radius:34px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 48px rgba(8,10,15,.045);
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;
  overflow:hidden;
}
.strip-item { padding:28px 30px; }
.strip-item small {
  display:block;
  color:var(--blue);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:8px;
}
.strip-item strong {
  display:block;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.06em;
}
.strip-plus {
  color:#BBC2CE;
  font-size:28px;
  font-weight:900;
}

/* PROGRAMME STRUCTURE */
.programme {
  background: radial-gradient(circle at top,rgba(18,109,251,.08),transparent 35%), #fafafa;
}
.programme .head { max-width: 920px; margin-bottom: 70px; }
.stage { display:grid; justify-items:center; gap:28px; }
.programme-card {
  background:#080D2A;
  color:#fff;
  padding:34px 42px;
  border-radius:30px;
  width: min(720px,100%);
  box-shadow:0 30px 80px rgba(8,13,42,.2);
}
.programme-card small,.course-map small {
  display:block;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  opacity:.7;
  margin-bottom:10px;
  font-weight:900;
}
.programme-card h3 {
  margin:0;
  font-size:46px;
  line-height:1;
  letter-spacing:-.06em;
}
.arrow-down {
  width:2px;
  height:70px;
  background:#126DFB;
  position:relative;
}
.arrow-down:after {
  content:"";
  position:absolute;
  bottom:-2px;
  left:-5px;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-top:12px solid #126DFB;
}
.course-map-row {
  display:grid;
  grid-template-columns:1fr 80px 1fr;
  align-items:center;
  width:100%;
  margin-top:20px;
}
.course-map {
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:30px;
  padding:34px;
  box-shadow:0 16px 40px rgba(0,0,0,.05);
  min-height:420px;
}
.course-map h4 {
  margin:0 0 24px;
  font-size:38px;
  letter-spacing:-.06em;
}
.course-map ul {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}
.course-map li {
  background:#F4F7FC;
  border-radius:16px;
  padding:15px 18px;
  font-weight:650;
}
.plus {
  font-size:54px;
  font-weight:900;
  color:#BBC2CE;
  text-align:center;
}
.final-card {
  background:linear-gradient(135deg,#126DFB,#080D2A);
  color:#fff;
  border-radius:34px;
  padding:38px 42px;
  max-width:760px;
  box-shadow:0 24px 60px rgba(18,109,251,.25);
}
.final-card h3 {
  margin:0 0 24px;
  font-size:44px;
  letter-spacing:-.07em;
}
.badge-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.badge {
  background:rgba(255,255,255,.1);
  padding:14px 18px;
  border-radius:16px;
  font-weight:700;
}
.platform-preview {
  margin-top:90px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.preview-top {
  height:68px;
  background:#080D2A;
  color:#fff;
  display:flex;
  align-items:center;
  padding:0 28px;
  font-weight:800;
}
.preview-body {
  display:grid;
  grid-template-columns:280px 1fr;
  min-height:500px;
}
.preview-side {
  background:#F8FAFD;
  border-right:1px solid rgba(0,0,0,.06);
  padding:24px;
}
.preview-module {
  padding:14px 16px;
  border-radius:14px;
  background:#EEF3FA;
  margin-bottom:12px;
  font-weight:700;
}
.preview-module.active {
  background:#E8F1FF;
  border-left:4px solid #126DFB;
}
.preview-main { padding:42px; }
.preview-main .label {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:#126DFB;
  font-weight:900;
}
.preview-main h4 {
  font-size:42px;
  letter-spacing:-.07em;
  margin:16px 0;
}
.fake-line {
  height:12px;
  background:#E8EDF5;
  border-radius:999px;
  margin:14px 0;
}
.fake-line:nth-child(3){width:90%}
.fake-line:nth-child(4){width:76%}
.fake-line:nth-child(5){width:84%}
.callout {
  margin-top:28px;
  background:#F4F8FF;
  border-left:4px solid #126DFB;
  padding:18px;
  border-radius:0 16px 16px 0;
}

/* WHO */
.who {
  background:
    radial-gradient(circle at 84% 16%,rgba(18,109,251,.10),transparent 30%),
    linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
}
.who-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.who-card {
  min-height:360px;
  border-radius:32px;
  background:#fff;
  border:1px solid var(--line);
  padding:28px;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 42px rgba(8,10,15,.045);
}
.who-card::before {
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:rgba(18,109,251,.08);
}
.who-card.dark { background:var(--navy); color:#fff; }
.who-card.dark::before { background:rgba(18,109,251,.28); }
.icon {
  position:relative;
  width:52px;
  height:52px;
  border-radius:16px;
  background:#F0F6FF;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:76px;
}
.who-card.dark .icon { background:rgba(255,255,255,.12); color:#fff; }
.who-card h3 {
  position:relative;
  margin:0 0 13px;
  font-size:30px;
  line-height:1.02;
  letter-spacing:-.065em;
  font-weight:900;
}
.who-card p {
  position:relative;
  margin:0;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.5;
}
.who-card.dark p { color:rgba(255,255,255,.68); }
.team-panel {
  margin-top:26px;
  border-radius:36px;
  background:var(--navy);
  color:#fff;
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:42px;
  padding:44px;
  position:relative;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(8,13,42,.18);
}
.team-panel::before {
  content:"";
  position:absolute;
  right:-180px;
  top:-220px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(18,109,251,.28);
}
.team-panel h3 {
  position:relative;
  margin:0 0 16px;
  max-width:660px;
  font-size:52px;
  line-height:.96;
  letter-spacing:-.08em;
  font-weight:900;
}
.team-panel p {
  position:relative;
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.68);
  font-size:18px;
  line-height:1.58;
}
.checks {
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-content:center;
}
.check {
  border-radius:18px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.11);
  padding:17px 18px;
  color:rgba(255,255,255,.86);
  font-weight:700;
  line-height:1.35;
}

/* CURRICULUM */
.curriculum {
  background:
    radial-gradient(circle at 18% 18%, rgba(18,109,251,.10), transparent 28%),
    linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
}
.curriculum .head { max-width:900px; margin-bottom:58px; }
.curriculum-shell {
  display:grid;
  grid-template-columns:360px 1fr;
  gap:28px;
  align-items:stretch;
}
.curriculum-sidebar {
  border-radius:34px;
  background:var(--navy);
  color:#fff;
  padding:28px;
  position:relative;
  overflow:hidden;
  min-height:650px;
  box-shadow:0 24px 70px rgba(8,13,42,.18);
}
.curriculum-sidebar::before {
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  right:-190px;
  top:-190px;
  background:rgba(18,109,251,.28);
}
.curriculum-sidebar h3 {
  position:relative;
  margin:0 0 10px;
  font-size:34px;
  line-height:1;
  letter-spacing:-.07em;
}
.curriculum-sidebar p {
  position:relative;
  margin:0 0 28px;
  color:rgba(255,255,255,.62);
  line-height:1.5;
}
.modules { position:relative; display:grid; gap:12px; }
.module-tab {
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.78);
  border-radius:18px;
  padding:16px 18px;
  text-align:left;
  font:inherit;
  cursor:pointer;
}
.module-tab strong {
  display:block;
  font-size:17px;
  letter-spacing:-.04em;
}
.module-tab small {
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,.48);
  font-weight:700;
}
.module-tab.active { background:#fff; color:var(--ink); }
.module-tab.active small { color:var(--blue); }
.curriculum-panel {
  border-radius:34px;
  background:#fff;
  border:1px solid var(--line);
  padding:42px;
  box-shadow:0 16px 50px rgba(8,10,15,.055);
  min-height:650px;
}
.panel-top {
  display:flex;
  justify-content:space-between;
  gap:22px;
  align-items:flex-start;
  margin-bottom:34px;
}
.label {
  display:block;
  color:var(--blue);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:12px;
}
.curriculum-panel h3 {
  margin:0;
  max-width:760px;
  font-size:56px;
  line-height:.96;
  letter-spacing:-.08em;
  font-weight:900;
}
.pill {
  flex:0 0 auto;
  border-radius:999px;
  background:#F1F6FF;
  color:var(--blue);
  padding:10px 14px;
  font-size:13px;
  font-weight:850;
}
.panel-desc {
  margin:0 0 34px;
  max-width:780px;
  color:var(--muted);
  font-size:18px;
  line-height:1.58;
}
.lesson-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.lesson {
  border-radius:20px;
  background:#F7F9FC;
  border:1px solid rgba(8,10,15,.06);
  padding:18px;
}
.lesson strong {
  display:block;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.05em;
  margin-bottom:8px;
}
.lesson span {
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}
.note {
  margin-top:28px;
  border-radius:24px;
  background:#F4F8FF;
  border-left:4px solid var(--blue);
  padding:22px 24px;
  color:#303846;
  line-height:1.55;
}

/* TRANSFORMATION */
.transformation {
  background:
    radial-gradient(circle at 18% 18%,rgba(18,109,251,.10),transparent 28%),
    linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
}
.center-head {
  max-width:940px;
  margin:0 auto 64px;
  text-align:center;
}
.compare {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}
.compare-card {
  border-radius:38px;
  background:#fff;
  border:1px solid var(--line);
  padding:38px;
  box-shadow:0 14px 48px rgba(8,10,15,.045);
  position:relative;
  overflow:hidden;
}
.compare-card::before {
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:330px;
  height:330px;
  border-radius:50%;
  background:rgba(18,109,251,.08);
}
.compare-card.after { background:var(--navy); color:#fff; }
.compare-card.after::before { background:rgba(18,109,251,.30); }
.compare-label {
  position:relative;
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:#F1F6FF;
  color:var(--blue);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:26px;
}
.after .compare-label { background:rgba(255,255,255,.12); color:#fff; }
.compare-card h3 {
  position:relative;
  margin:0 0 28px;
  font-size:48px;
  line-height:.96;
  letter-spacing:-.078em;
  font-weight:900;
}
.rows { position:relative; display:grid; gap:13px; }
.row-item {
  min-height:64px;
  border-radius:20px;
  background:#F7F9FC;
  border:1px solid rgba(8,10,15,.06);
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:center;
  padding:14px 18px;
}
.after .row-item {
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.11);
}
.symbol {
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#EEF5FF;
  color:var(--blue);
  font-weight:900;
}
.after .symbol { background:#fff; color:var(--blue); }
.row-item strong {
  display:block;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.045em;
}
.row-item span {
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
  line-height:1.35;
}
.after .row-item span { color:rgba(255,255,255,.62); }
.process {
  margin-top:30px;
  border-radius:38px;
  background:#fff;
  border:1px solid var(--line);
  padding:38px;
  box-shadow:0 14px 48px rgba(8,10,15,.045);
}
.process-top {
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:flex-end;
  margin-bottom:34px;
}
.process h3 {
  margin:0;
  max-width:620px;
  font-size:42px;
  line-height:1;
  letter-spacing:-.075em;
  font-weight:900;
}
.process p {
  margin:0;
  max-width:480px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.timeline {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.step {
  position:relative;
  min-height:150px;
  border-radius:24px;
  background:#F7F9FC;
  border:1px solid rgba(8,10,15,.06);
  padding:20px;
  overflow:hidden;
}
.step::before {
  content:"";
  position:absolute;
  left:20px;
  top:20px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 0 7px rgba(18,109,251,.12);
}
.step strong {
  display:block;
  margin-top:44px;
  font-size:19px;
  line-height:1.1;
  letter-spacing:-.055em;
}
.step span {
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.35;
}
.step.active {
  background:#EAF3FF;
  border-color:rgba(18,109,251,.18);
}
.step.final { background:var(--navy); color:#fff; }
.step.final span { color:rgba(255,255,255,.62); }

/* CREDIBILITY */
.cred-section {
  background:
    radial-gradient(circle at 82% 20%,rgba(18,109,251,.11),transparent 30%),
    linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
}
.cred-wrap {
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:70px;
  align-items:center;
}
.photo {
  position:relative;
  min-height:720px;
  border-radius:42px;
  overflow:hidden;
  background:var(--navy);
  box-shadow:0 30px 90px rgba(8,13,42,.18);
}
.photo img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:grayscale(1) contrast(1.04);
}
.photo::after {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top,rgba(8,13,42,.84),rgba(8,13,42,.15) 58%,rgba(18,109,251,.08)),
    linear-gradient(90deg,rgba(8,13,42,.25),transparent);
}
.watermark {
  position:absolute;
  left:28px;
  bottom:-20px;
  z-index:2;
  color:rgba(255,255,255,.08);
  font-size:180px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.14em;
}
.photo-caption {
  position:absolute;
  left:32px;
  right:32px;
  bottom:34px;
  z-index:3;
  color:#fff;
}
.photo-caption small {
  display:block;
  color:rgba(255,255,255,.62);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:10px;
}
.photo-caption strong {
  display:block;
  max-width:440px;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.06em;
}
.cred-grid {
  margin-top:38px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.cred-card {
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  padding:24px;
  box-shadow:0 10px 36px rgba(8,10,15,.035);
}
.cred-card strong {
  display:block;
  font-size:21px;
  line-height:1.1;
  letter-spacing:-.055em;
  margin-bottom:9px;
}
.cred-card p {
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.48;
}
.quote {
  margin-top:18px;
  border-radius:30px;
  background:var(--navy);
  color:#fff;
  padding:30px;
  position:relative;
  overflow:hidden;
}
.quote::before {
  content:"";
  position:absolute;
  right:-120px;
  top:-160px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(18,109,251,.28);
}
.quote .mark {
  position:relative;
  color:var(--blue);
  font-size:54px;
  line-height:.7;
  font-weight:900;
  margin-bottom:16px;
}
.quote p {
  position:relative;
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:22px;
  line-height:1.42;
  letter-spacing:-.045em;
  font-weight:650;
}
.credentials {
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.cred-pill {
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  padding:11px 14px;
  color:#303846;
  font-size:14px;
  font-weight:800;
  box-shadow:0 8px 26px rgba(8,10,15,.035);
}

/* HOW IT WORKS */
.how {
  background: linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
}
.dashboard {
  margin-top: 54px;
  display:grid;
  grid-template-columns: .82fr 1.18fr;
  gap:28px;
  align-items:stretch;
}
.progress-card {
  border-radius:36px;
  background:var(--navy);
  color:#fff;
  padding:36px;
  position:relative;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(8,13,42,.18);
}
.progress-card::before {
  content:"";
  position:absolute;
  right:-160px;
  top:-190px;
  width:480px;
  height:480px;
  border-radius:50%;
  background:rgba(18,109,251,.28);
}
.progress-card h3 {
  position:relative;
  margin:0 0 12px;
  font-size:46px;
  line-height:.96;
  letter-spacing:-.08em;
}
.progress-card p {
  position:relative;
  margin:0 0 32px;
  color:rgba(255,255,255,.68);
  line-height:1.6;
}
.progress-bar {
  position:relative;
  height:16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  overflow:hidden;
  margin-bottom:26px;
}
.progress-bar span {
  display:block;
  height:100%;
  width:74%;
  border-radius:999px;
  background:var(--blue);
}
.progress-list {
  position:relative;
  display:grid;
  gap:12px;
}
.progress-item {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.11);
}
.progress-item.locked { opacity:.48; }
.how-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.how-card {
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  padding:28px;
  box-shadow:0 10px 36px rgba(8,10,15,.035);
}
.how-card span {
  width:48px;
  height:48px;
  border-radius:15px;
  background:#F0F6FF;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:36px;
}
.how-card h3 {
  margin:0 0 10px;
  font-size:26px;
  line-height:1.02;
  letter-spacing:-.06em;
}
.how-card p {
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

/* TESTIMONIALS */
.testimonials {
  background:
    radial-gradient(circle at 50% 0%, rgba(18,109,251,.15), transparent 34%),
    linear-gradient(180deg,#F2F7FF 0%,#FAFAFA 78%);
}
.testimonial-header {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
.testimonial-card {
  min-height: 440px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(8,10,15,.055);
  display: flex;
  flex-direction: column;
}
.testimonial-quote { flex: 1; padding: 34px; }
.testimonial-quote .mark {
  font-size: 54px;
  line-height: .7;
  letter-spacing: -.1em;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}
blockquote {
  margin: 0;
  color: #404653;
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: -.045em;
  font-weight: 640;
}
.testimonial-footer {
  border-top: 1px solid var(--line);
  padding: 24px 34px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #EEF5FF;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -.06em;
  flex: 0 0 auto;
}
.testimonial-meta strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.06em;
  margin-bottom: 7px;
}
.stars {
  color: var(--star);
  font-size: 16px;
  letter-spacing: 1px;
}

/* PRICING */
.pricing {
  background: linear-gradient(180deg,#FAFAFA 0%,#F4F8FF 100%);
}
.pricing-grid {
  margin-top:58px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.price-card {
  border-radius:34px;
  background:#fff;
  border:1px solid var(--line);
  padding:34px;
  box-shadow:0 14px 48px rgba(8,10,15,.045);
  position:relative;
  overflow:hidden;
}
.price-card.featured {
  background:var(--navy);
  color:#fff;
  transform: translateY(-12px);
}
.price-card::before {
  content:"";
  position:absolute;
  right:-120px;
  top:-140px;
  width:330px;
  height:330px;
  border-radius:50%;
  background:rgba(18,109,251,.09);
}
.price-card.featured::before { background:rgba(18,109,251,.30); }
.price-card small {
  position:relative;
  display:inline-flex;
  color:var(--blue);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:20px;
}
.price-card.featured small { color:#fff; }
.price-card h3 {
  position:relative;
  margin:0 0 14px;
  font-size:42px;
  line-height:.96;
  letter-spacing:-.075em;
}
.price {
  position:relative;
  font-size:54px;
  letter-spacing:-.08em;
  font-weight:900;
  margin:0 0 20px;
}
.price span { font-size:18px; letter-spacing:-.02em; color:var(--muted); }
.featured .price span { color:rgba(255,255,255,.56); }
.price-card p {
  position:relative;
  margin:0 0 28px;
  color:var(--muted);
  line-height:1.55;
}
.featured p { color:rgba(255,255,255,.68); }
.price-card ul {
  position:relative;
  margin:0 0 30px;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.price-card li { color:#303846; font-weight:650; }
.featured li { color:rgba(255,255,255,.82); }
.price-card .btn {
  position:relative;
  width:100%;
  background:var(--blue);
  color:#fff;
  box-shadow:0 18px 48px rgba(18,109,251,.25);
}

/* FAQ */
.faq {
  background:#FAFAFA;
}
.faq-wrap {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:start;
}
.faq-list { display:grid; gap:14px; }
.faq-item {
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  padding:24px;
  box-shadow:0 10px 36px rgba(8,10,15,.035);
}
.faq-item strong {
  display:block;
  font-size:21px;
  line-height:1.15;
  letter-spacing:-.055em;
  margin-bottom:10px;
}
.faq-item p {
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

/* CTA FOOTER */
.cta-footer {
  background:
    linear-gradient(180deg,#FAFAFA 0%,#EAF3FF 42%,#06103D 42%,#020824 100%);
  padding: 96px 0 0;
  overflow: hidden;
}
.cta {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 36px;
}
.cta h2 {
  margin: 0 auto 22px;
  max-width: 900px;
  font-size: clamp(46px,5.8vw,82px);
  line-height: .94;
  letter-spacing: -.09em;
  font-weight: 900;
}
.cta .lead {
  margin: 0 auto;
  max-width: 720px;
}
.preview-final {
  max-width: 980px;
  height: 360px;
  margin: 64px auto 0;
  border-radius: 34px 34px 0 0;
  background: white;
  border: 1px solid rgba(8,10,15,.09);
  box-shadow: 0 34px 100px rgba(18,109,251,.22),0 12px 44px rgba(8,10,15,.10);
  overflow: hidden;
  position: relative;
}
.preview-final-top {
  height: 62px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.preview-final-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 298px;
}
.final-sidebar {
  border-right: 1px solid var(--line);
  background: #F8FAFD;
  padding: 24px;
}
.lesson-line {
  height: 38px;
  border-radius: 12px;
  background: #EEF3FA;
  margin-bottom: 12px;
}
.lesson-line.active {
  background: #E8F1FF;
  border-left: 4px solid var(--blue);
}
.final-page {
  padding: 34px 42px;
}
.module {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}
.final-page h3 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -.07em;
}
.fake-text {
  display: grid;
  gap: 11px;
}
.fake-text span {
  height: 11px;
  border-radius: 999px;
  background: #E7ECF3;
}
.fake-text span:nth-child(1) { width: 92%; }
.fake-text span:nth-child(2) { width: 78%; }
.fake-text span:nth-child(3) { width: 86%; }
.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 36px 56px;
  color: white;
  display: grid;
  grid-template-columns: 1.4fr .65fr .65fr .65fr;
  gap: 44px;
  position: relative;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-brand strong {
  font-size: 20px;
  letter-spacing: -.055em;
}
.footer p {
  max-width: 430px;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
  margin: 0 0 28px;
}
.social { display: flex; gap: 12px; }
.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-weight: 850;
}
.col h4 {
  margin: 0 0 18px;
  font-size: 15px;
  color: white;
  letter-spacing: -.02em;
}
.col a {
  display: block;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
}
.bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 36px 34px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.42);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .split-head,.cred-wrap,.faq-wrap,.dashboard,.team-panel { grid-template-columns:1fr; }
  .outcome-grid,.testimonial-grid,.pricing-grid { grid-template-columns:1fr; }
  .who-grid,.timeline { grid-template-columns:repeat(2,1fr); }
  .curriculum-shell { grid-template-columns:1fr; }
  .curriculum-sidebar { min-height:auto; }
  .course-map-row { grid-template-columns:1fr; gap:24px; }
  .plus { display:none; }
  .photo { min-height:560px; }
  .price-card.featured { transform:none; }
}
@media (max-width: 760px) {
  .container,.nav { padding-left:22px; padding-right:22px; }
  .section { padding:76px 0; }
  .navlinks { display:none; }
  .hero-content { padding:120px 22px 60px; }
  .hero h1 { font-size:48px; }
  .hero-stats { gap:24px; }
  .programme-strip,.preview-body,.preview-final-body { grid-template-columns:1fr; }
  .strip-plus,.preview-side,.final-sidebar { display:none; }
  .who-grid,.checks,.lesson-grid,.compare,.timeline,.cred-grid,.how-grid,.badge-grid { grid-template-columns:1fr; }
  .outcome-card,.who-card { min-height:auto; }
  .outcome-number,.icon { margin-bottom:44px; }
  .curriculum-panel,.compare-card,.process,.team-panel { padding:28px; }
  .panel-top,.process-top { display:block; }
  .pill { display:inline-flex; margin-top:18px; }
  .curriculum-panel h3,.team-panel h3 { font-size:40px; }
  .footer { grid-template-columns:1fr; }
  .bottom { display:block; }
}


/* TRAINING HERO UPDATE */
:root {
  --pink: #F49BE8;
  --pink-light: #FFD7F7;
  --cream: #FFFDF6;
}
.training-hero {
  min-height: 100vh;
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(244,155,232,.92) 0%, rgba(244,155,232,.58) 18%, rgba(255,215,247,.30) 34%, transparent 53%),
    radial-gradient(circle at 86% 72%, rgba(18,109,251,.20), transparent 32%),
    linear-gradient(180deg, #fff 0%, #FFF6FD 42%, #F9FBFF 68%, #EAF3FF 100%);
}
.training-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,10,15,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,10,15,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 76%);
  pointer-events: none;
}
.training-hero::after {
  content: "TRAINING";
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  font-size: min(17vw, 220px);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.13em;
  color: rgba(8,10,15,.035);
  white-space: nowrap;
  pointer-events: none;
}
.training-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 84px);
  padding: 80px 36px 96px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 66px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.training-hero-copy {
  color: var(--ink);
  text-align: left;
  max-width: 620px;
}
.training-hero .kicker {
  background: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.65);
  color: var(--blue);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 26px;
}
.training-hero h1 {
  margin: 0 0 26px;
  max-width: 680px;
  font-size: clamp(58px, 7.4vw, 104px);
  line-height: .88;
  letter-spacing: -.09em;
  font-weight: 950;
}
.training-hero h1 .pop-word {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--blue), 9px 9px 0 var(--navy);
  letter-spacing: -.055em;
  margin-right: .06em;
}
.training-hero p {
  max-width: 640px;
  margin: 0 0 36px;
  color: rgba(8,10,15,.68);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.6;
  letter-spacing: -.025em;
}
.training-hero .hero-actions {
  justify-content: flex-start;
}
.training-hero .btn-secondary {
  background: rgba(255,255,255,.74);
  color: var(--ink);
  border: 1px solid rgba(8,10,15,.08);
  box-shadow: 0 12px 34px rgba(8,10,15,.045);
}
.training-hero .hero-stats {
  margin-top: 48px;
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.training-hero .hero-stats div {
  min-width: 124px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 12px 34px rgba(8,10,15,.045);
  backdrop-filter: blur(10px);
}
.training-hero .hero-stats strong {
  color: var(--navy);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.07em;
}
.training-hero .hero-stats span {
  margin-top: 6px;
  color: rgba(8,10,15,.58);
  font-size: 14px;
  font-weight: 750;
}
.training-hero-visual {
  min-height: 650px;
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 34px 100px rgba(18,109,251,.22), 0 18px 60px rgba(8,10,15,.16);
  isolation: isolate;
}
.training-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,42,.04), rgba(8,13,42,.88));
  z-index: 1;
}
.training-hero-visual::after {
  content: "OSINT";
  position: absolute;
  left: 28px;
  bottom: -22px;
  z-index: 2;
  font-size: 128px;
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.12em;
  color: rgba(255,255,255,.08);
}
.training-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
}
.visual-card {
  position: absolute;
  z-index: 3;
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 18px 50px rgba(8,10,15,.14);
  backdrop-filter: blur(12px);
  color: var(--ink);
}
.visual-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 900;
}
.visual-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -.07em;
}
.visual-card-top {
  left: 28px;
  top: 28px;
  width: 300px;
  padding: 22px;
}
.visual-card-bottom {
  right: 28px;
  bottom: 28px;
  width: 330px;
  padding: 22px;
}
.mini-checks {
  display: grid;
  gap: 9px;
}
.mini-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333B48;
  font-size: 14px;
  font-weight: 760;
}
.mini-checks span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(18,109,251,.12);
  flex: 0 0 auto;
}
@media (max-width: 1050px) {
  .training-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .training-hero-copy {
    max-width: 860px;
  }
  .training-hero-visual {
    min-height: 560px;
  }
}
@media (max-width: 720px) {
  .training-hero-inner {
    padding-left: 22px;
    padding-right: 22px;
    gap: 40px;
  }
  .training-hero h1 {
    font-size: 56px;
  }
  .training-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .training-hero .hero-actions .btn {
    width: 100%;
  }
  .training-hero .hero-stats div {
    flex: 1 1 130px;
  }
  .training-hero-visual {
    min-height: 500px;
    border-radius: 32px;
  }
  .visual-card-top,
  .visual-card-bottom {
    left: 20px;
    right: 20px;
    width: auto;
  }
  .visual-card strong {
    font-size: 24px;
  }
}


/* FINAL TRAINING PAGE REFINEMENTS */
.nav {
  max-width: 1280px;
  width: auto;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  color: var(--navy);
}
.brand { color: var(--navy); }
.logo {
  background: var(--navy);
  border: 0;
  color: #fff;
}
.navlinks { color: #5F6570; }
.navlinks a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
}
.training-hero::after { content: none !important; display: none !important; }
.training-hero-inner { min-height: calc(100vh - 84px); }
.training-hero .hero-stats div { min-width: 150px; }
.training-hero .hero-stats span { max-width: 150px; line-height: 1.25; }
.price-card.featured { transform: translateY(-12px); }
.pricing .center-head .section-heading { max-width: 860px; margin-left: auto; margin-right: auto; }
@media (max-width: 1100px) {
  .price-card.featured { transform: none; }
}

