html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
  background: #fff;
  overflow-x: hidden;
}
a{text-decoration:none;color:inherit}
/* ─── TYPE SYSTEM ────────────────────────────────────── */
.f-anton   { font-family: 'Anton', sans-serif; letter-spacing: 0.01em; }
.f-antonio { font-family: 'Antonio', sans-serif; }
.f-kalam   { font-family: 'Kalam', cursive; }
.f-poppins { font-family: 'Poppins', sans-serif; }

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --blue:      #35459a;
  --navy:      #1b2460;
  --yellow:    #dca200;
  --white:     #ffffff;
  --bg-light:  #f7f9ff;
  --bg-soft:   #f8fafc;
  --bg-pale:   #fff6dc;
  --text:      #1f2937;
  --muted:     #6b7280;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(27,36,96,.10);
  --shadow-hover: 0 12px 40px rgba(27,36,96,.18);
  --transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

/* ─── SECTION UTILITIES ──────────────────────────────── */
section { position: relative; }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: 'Antonio', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.section-label--light { color: rgba(220,162,0,.85); }
.section-label--blue  { color: var(--blue); }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════
   §1  HERO
══════════════════════════════════════════════════════ */
#hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #1b2460 0%, #35459a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* dotted grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* soft glows */
#hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220,162,0,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  min-height: 90vh;
  padding: 40px 0px;
  position: relative;
  z-index: 2;
}

/* LEFT */
.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  font-family: 'Antonio', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--yellow);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Anton', sans-serif;
  font-size:64px;
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-roi-tag {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  color: rgba(220,162,0,.9);
  line-height: 1.4;
}

.hero-support {
  font-family: 'Antonio', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-para {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.80);
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  font-family: 'Antonio', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #ffd44d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,162,0,.35);
}

.btn-secondary {
  font-family: 'Antonio', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* RIGHT */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Paper Plane Canvas */
.plane-stage {
  position: relative;
  width: 100%;
  height: 380px;
}

#planeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* KPI cards */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  margin-top: 12px;
}

.kpi-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.kpi-card.show {
  opacity: 1;
  transform: translateY(0);
}
.kpi-card:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(220,162,0,.4);
}

.kpi-num {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.kpi-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}
.kpi-card--roi .kpi-num {
  font-family: 'Kalam', cursive;
  font-size: 22px;
  color: var(--yellow);
}

/* ══════════════════════════════════════════════════════
   §2  PLACEMENT AT SRUSTI
══════════════════════════════════════════════════════ */
#placement-at-srusti {
  background: var(--white);
  padding: 40px 0;
}
.pas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pas-heading {
  font-family: 'Antonio', sans-serif;
  font-size:40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}
.pas-para {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.quote-box {
  background: var(--bg-pale);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.quote-box p {
  font-family: 'Antonio', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
}
.quote-box p em {
  font-style: normal;
  font-family: 'Kalam', cursive;
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════
   §3  PLACEMENT PHILOSOPHY
══════════════════════════════════════════════════════ */
#philosophy {
  background: var(--bg-light);
  padding: 40px 0;
}
.philosophy-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-heading {
  font-family: 'Antonio', sans-serif;
  font-size:36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.phil-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.phil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid transparent;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.phil-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--yellow);
}
.phil-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.phil-icon svg {
  width: 24px; height: 24px;
  stroke: var(--navy);
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.3s;
}
.phil-card:hover .phil-icon {
  background: var(--navy);
}
.phil-card:hover .phil-icon svg {
  stroke: var(--yellow);
}
.phil-card-title {
  font-family: 'Antonio', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.phil-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   §4  TRAINING MODEL
══════════════════════════════════════════════════════ */
#training {
  background: var(--white);
  padding: 40px 0;
}
.training-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}
.training-para {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.assessment-note {
  background: var(--bg-pale);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  margin-top: 16px;
}

/* Stage flow */
.stage-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.stage-flow::before {
  content: '';
  position: absolute;
  left: 22px; top: 44px; bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--blue) 100%);
  z-index: 0;
}
.stage-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.stage-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(220,162,0,.18);
}
.stage-num svg {
  width: 20px; height: 20px;
  stroke: var(--navy);
  stroke-width: 2;
  fill: none;
}
.stage-content { padding-top: 2px; }
.stage-title {
  font-family: 'Antonio', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.stage-content p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* Counters strip */
.counters-strip {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.counter-item {}
.counter-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1.5px solid rgba(53,69,154,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.counter-icon svg {
  width: 18px; height: 18px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
}
.counter-num {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   §5  INDUSTRY NETWORK
══════════════════════════════════════════════════════ */
#industry {
  background: var(--bg-soft);
  padding: 40px 0;
  scroll-margin-top: 130px;
}
.industry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.industry-para {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.engage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.engage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.engage-list li svg {
  width: 16px; height: 16px;
  stroke: var(--yellow);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}
.engage-list li::before { display: none; }

/* Sector chips */
.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.chip {
  font-family: 'Antonio', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--blue);
  color: var(--white);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s;
}
.chip.show {
  opacity: 1;
  transform: scale(1);
}
.chip:hover {
  background: var(--navy);
  transform: scale(1.04);
}

.industry-closing {
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   §6  PLACEMENT PROCESS
══════════════════════════════════════════════════════ */
#process {
  background: var(--white);
  padding: 40px 0;
}
.process-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--blue) 100%);
}
.process-step {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  position: relative;
}
.ps-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--yellow);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.ps-num svg {
  width: 22px; height: 22px;
  stroke: var(--yellow);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s;
}
.process-step:hover .ps-num {
  background: var(--yellow);
  border-color: var(--yellow);
}
.process-step:hover .ps-num svg {
  stroke: var(--navy);
}
.ps-body { padding-top: 8px; }
.ps-title {
  font-family: 'Antonio', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ps-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   §7  RECENT HIGHLIGHTS
══════════════════════════════════════════════════════ */
#highlights {
  background: var(--navy);
  padding: 40px 0;
  color: var(--white);
  scroll-margin-top: 130px;
}
.highlights-header {
  text-align: center;
  margin-bottom: 60px;
}
.highlights-header .section-heading {
  color: var(--white);
}
.highlights-header .section-intro {
  color: rgba(255,255,255,.65);
}

/* Big counters */
.highlight-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hc-item {
  padding: 36px 28px;
  text-align: center;
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background 0.3s;
}
.hc-item:last-child { border-right: none; }
.hc-item:hover { background: rgba(255,255,255,.09); }
.hc-num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.hc-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* Compensation snapshot */
.comp-snapshot {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(220,162,0,.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
  margin-bottom: 48px;
}
.cs-item {}
.cs-value {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.cs-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.60);
}

/* Outcome cards */
.outcome-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.outcome-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
}
.outcome-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(220,162,0,.4);
  transform: translateY(-4px);
}
.oc-avatar {
  width: 100px; height: 100px;
  border-radius: 10%;
  /*background: linear-gradient(135deg, var(--blue), var(--navy));*/
  /*border: 2px solid rgba(220,162,0,.5);*/
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: var(--yellow);
}
.oc-avatar img{
  width: 100px;
}
.oc-name {
  font-family: 'Antonio', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.oc-company {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.oc-ctc {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  color: var(--yellow);
}

.highlights-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.40);
  font-style: italic;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   §8  CAREER ROI BAND
══════════════════════════════════════════════════════ */
#roi-band {
  background: linear-gradient(135deg, #fff6dc 0%, #ffffff 100%);
  padding: 40px 0;
}
.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.roi-heading {
  font-family: 'Anton', sans-serif;
  font-size:48px;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 20px;
}
.roi-heading em {
  font-style: normal;
  font-family: 'Kalam', cursive;
  color: var(--blue);
}
.roi-statement {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.roi-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.roi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.roi-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}
.roi-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.roi-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.roi-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--navy);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s;
}
.roi-card:hover .roi-card-icon {
  background: var(--navy);
}
.roi-card:hover .roi-card-icon svg {
  stroke: var(--yellow);
}
.roi-card-title {
  font-family: 'Antonio', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.roi-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   §9  STUDENT OUTCOME PATHWAY
══════════════════════════════════════════════════════ */
#pathway {
  background: var(--bg-light);
  padding: 40px 0;
  scroll-margin-top: 130px;
}
.pathway-header {
  text-align: center;
  margin-bottom: 60px;
}

/* horizontal path on desktop */
.pathway-track {
  position: relative;
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.pathway-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0, var(--yellow) 8px,
    transparent 8px, transparent 18px
  );
  z-index: 0;
}

.pathway-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.pw-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px rgba(220,162,0,.12);
  transition: var(--transition);
  flex-shrink: 0;
}
.pw-dot svg {
  width: 22px; height: 22px;
  stroke: var(--yellow);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s;
}
.pathway-step:hover .pw-dot {
  background: var(--yellow);
}
.pathway-step:hover .pw-dot svg {
  stroke: var(--navy);
}
.pw-title {
  font-family: 'Antonio', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pw-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   §10  FINAL CTA
══════════════════════════════════════════════════════ */
#cta-final {
  background: var(--blue);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-headline {
  font-family: 'Anton', sans-serif;
  font-size:45px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-headline em {
  font-style: normal;
  color: var(--yellow);
}
.cta-para {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-closing {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-family: 'Antonio', sans-serif;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .phil-cards { grid-template-columns: 1fr 1fr; }
  .training-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .counters-strip { grid-template-columns: repeat(3, 1fr); }
  .industry-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .highlight-counters { grid-template-columns: 1fr 1fr; }
  .comp-snapshot { grid-template-columns: 1fr 1fr; }
  .outcome-cards { grid-template-columns: repeat(3, 1fr); }
  .roi-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; min-height: auto; }
  .hero-right { order: -1; }
  .plane-stage { height: 260px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .pas-inner { grid-template-columns: 1fr; gap: 36px; }
  .phil-cards { grid-template-columns: 1fr 1fr; }
  .training-inner { grid-template-columns: 1fr; gap: 36px; }
  .counters-strip { grid-template-columns: repeat(3, 1fr); padding: 28px 20px; }
  .industry-inner { grid-template-columns: 1fr; gap: 36px; }
  .highlight-counters { grid-template-columns: 1fr 1fr; }
  .comp-snapshot { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
  .outcome-cards { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; gap: 36px; }
  .pathway-track {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .pathway-track::before {
    top: 5%; bottom: 5%;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(
      180deg,
      var(--yellow) 0, var(--yellow) 8px,
      transparent 8px, transparent 18px
    );
  }
  .pathway-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 0;
  }
  .pw-dot { margin-bottom: 0; flex-shrink: 0; }
}

@media (max-width: 480px) {
  .phil-cards { grid-template-columns: 1fr; }
  .counters-strip { grid-template-columns: repeat(2, 1fr); }
  .highlight-counters { grid-template-columns: 1fr; }
  .comp-snapshot { grid-template-columns: 1fr 1fr; }
  .outcome-cards { grid-template-columns: 1fr 1fr; }
  .hc-num { font-size: 36px; }
  .hero-headline { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .chip, .kpi-card { transition: none !important; opacity: 1 !important; transform: none !important; }
  #planeCanvas { display: none; }
}

