/* ═══════════════════════════════════════════════════
   ENTERHUB360 — Your Business · Our Operations
   Brand: deep navy · teal (global) · pink (domestic)
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #060b18;
  --bg-2: #0a1224;
  --surface: #0e1830;
  --surface-2: #132140;
  --line: rgba(47, 196, 205, 0.18);
  --line-pink: rgba(236, 77, 118, 0.22);
  --line-soft: rgba(255, 255, 255, 0.07);
  --teal: #2fc4cd;
  --teal-bright: #63e7ef;
  --pink: #ec4d76;
  --pink-bright: #ff7aa0;
  --text: #eaf0fa;
  --muted: #93a2c0;
  --grad: linear-gradient(90deg, var(--teal), var(--pink));
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(47, 196, 205, 0.35); }

img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.teal { color: var(--teal-bright); }
.pink { color: var(--pink-bright); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Typography ── */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--font-display);
}
.eyebrow--pink { color: var(--pink-bright); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.section__sub {
  color: var(--muted);
  max-width: 660px;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-display);
}

.btn--primary {
  background: linear-gradient(135deg, #38ccd4, #1ba3b4);
  color: #04222a;
  box-shadow: 0 10px 30px rgba(47, 196, 205, 0.28);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(47, 196, 205, 0.42);
}

.btn--pink {
  background: linear-gradient(135deg, #f2608a, #d63963);
  color: #2b0512;
  box-shadow: 0 10px 30px rgba(236, 77, 118, 0.28);
}
.btn--pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(236, 77, 118, 0.42);
}

.btn--ghost {
  border-color: rgba(234, 240, 250, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  transform: translateY(-3px);
}

.btn--sm { padding: 11px 22px; font-size: 11px; }
.btn--full { width: 100%; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(6, 11, 24, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand__mark { width: 40px; height: 40px; flex: none; }

.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.005em;
  color: #fff;
  line-height: 1.1;
}
.brand__word em { font-style: normal; color: var(--teal); font-weight: 600; }

.brand__tag {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.24em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.nav__links { display: flex; gap: clamp(14px, 2.4vw, 34px); }
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
  font-weight: 600;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--text); }

.nav__right { display: flex; align-items: center; gap: 18px; }

.lang { display: flex; align-items: center; gap: 6px; }
.lang__btn {
  background: none;
  border: none;
  color: var(--muted);
  font: 700 12px/1 var(--font-display);
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.3s;
}
.lang__btn:hover { color: var(--text); }
.lang__btn.is-active { color: var(--teal-bright); }
.lang__sep { color: rgba(255,255,255,0.2); font-size: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--text); transition: 0.3s; }

/* ═══════════ DECOR — floating gradient orbs ═══════════ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb--teal { background: radial-gradient(circle, rgba(47,196,205,0.32), transparent 70%); }
.orb--pink { background: radial-gradient(circle, rgba(236,77,118,0.26), transparent 70%); }
.orb--blue { background: radial-gradient(circle, rgba(45,84,190,0.35), transparent 70%); }

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -34px) scale(1.12); }
}

/* ═══════════ HERO (home) ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(20px, 4vw, 56px) 70px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 76% 38%, rgba(24, 55, 110, 0.5), transparent 65%),
    radial-gradient(ellipse 45% 40% at 12% 88%, rgba(47, 196, 205, 0.08), transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 90%, rgba(236, 77, 118, 0.07), transparent 60%),
    var(--bg);
  z-index: -1;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 700;
  font-family: var(--font-display);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
  margin-bottom: 26px;
  background: rgba(47, 196, 205, 0.06);
}
.hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 12px var(--teal-bright);
  animation: blink 2.4s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18.5px);
  max-width: 560px;
  margin-bottom: 38px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__globe { position: relative; aspect-ratio: 1; max-width: 620px; justify-self: center; width: 100%; }
#globe { width: 100%; height: 100%; }
.hero__globe-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(47, 196, 205, 0.14), inset 0 0 90px rgba(45, 84, 190, 0.06);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(234,240,250,0.25);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--teal-bright);
  animation: scrollHint 2s infinite var(--ease);
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ═══════════ PAGE HERO (subpages) ═══════════ */
.phero {
  position: relative;
  padding: 170px clamp(20px, 4vw, 56px) 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 80% 10%, rgba(24, 55, 110, 0.45), transparent 60%),
    var(--bg);
}
.phero__inner { max-width: 1280px; margin: 0 auto; position: relative; }
.phero .orb { width: 340px; height: 340px; top: -60px; right: 6%; }

.phero__crumb {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.phero__crumb a:hover { color: var(--teal-bright); }
.phero__crumb span { color: var(--teal); margin: 0 8px; }

.phero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 820px;
}
.phero__sub { color: var(--muted); font-size: 18px; max-width: 640px; margin-top: 20px; }

/* ═══════════ STATS ═══════════ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(47,196,205,0.05), rgba(47,196,205,0.015));
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-bright), transparent);
  animation: statsSweep 5s linear infinite;
}
@keyframes statsSweep { to { left: 100%; } }

.stats__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat { padding: 44px 20px; text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 25%;
  height: 50%; width: 1px;
  background: var(--line);
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1;
  background: linear-gradient(120deg, var(--teal-bright), #9fd8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__num sup { font-size: 0.55em; }

.stat__label {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  padding: clamp(76px, 9vw, 120px) clamp(20px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section--alt {
  max-width: none;
  background:
    radial-gradient(ellipse 55% 60% at 85% 15%, rgba(24, 55, 110, 0.32), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section--alt > * { max-width: 1280px; margin-left: auto; margin-right: auto; }

.section__head { margin-bottom: clamp(40px, 5vw, 64px); position: relative; z-index: 1; }
.section__head--center { text-align: center; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* ═══════════ AUDIENCE (who we serve) ═══════════ */
.aud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.acard {
  position: relative;
  display: block;
  border-radius: 14px;
  padding: 44px 38px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
}
.acard--teal:hover { border-color: rgba(47,196,205,0.4); box-shadow: 0 26px 70px rgba(47,196,205,0.13); }
.acard--pink:hover { border-color: rgba(236,77,118,0.4); box-shadow: 0 26px 70px rgba(236,77,118,0.13); }

.acard__glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.acard--teal .acard__glow { background: rgba(47,196,205,0.25); }
.acard--pink .acard__glow { background: rgba(236,77,118,0.22); }

.acard__icon { width: 54px; height: 54px; margin-bottom: 24px; }
.acard--teal .acard__icon { color: var(--teal-bright); }
.acard--pink .acard__icon { color: var(--pink-bright); }
.acard__icon svg { width: 100%; height: 100%; }

.acard__kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.acard--teal .acard__kicker { color: var(--teal-bright); }
.acard--pink .acard__kicker { color: var(--pink-bright); }

.acard h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.acard p { color: var(--muted); font-size: 15px; }

.acard__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-display);
  transition: gap 0.35s var(--ease);
}
.acard:hover .acard__more { gap: 14px; }
.acard--teal .acard__more { color: var(--teal-bright); }
.acard--pink .acard__more { color: var(--pink-bright); }

/* ═══════════ SERVICE CARDS ═══════════ */
.svcgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scard {
  position: relative;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 36px 30px 32px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  display: block;
}
.scard::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.scard:hover { border-color: var(--line); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.scard:hover::after { transform: scaleX(1); }

.scard--pink .scard__icon { color: var(--pink-bright); }
.scard--pink .scard__num { color: rgba(236, 77, 118, 0.14); }
.scard--pink::after { background: linear-gradient(90deg, var(--pink), var(--pink-bright)); }

.scard__icon {
  width: 46px; height: 46px;
  color: var(--teal-bright);
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease);
}
.scard:hover .scard__icon { transform: translateY(-4px) scale(1.06); }
.scard__icon svg { width: 100%; height: 100%; }

.scard__num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: rgba(47, 196, 205, 0.12);
  line-height: 1;
}

.scard h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.3;
  max-width: 88%;
}
.scard p { color: var(--muted); font-size: 14.5px; }

.scard__more {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-bright);
  font-family: var(--font-display);
}

/* ═══════════ DEPARTMENTS GRID (services page) ═══════════ */
.deptgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dept {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 26px 22px;
  transition: border-color 0.35s, transform 0.45s var(--ease), background 0.35s;
}
.dept:hover {
  border-color: var(--line);
  transform: translateY(-6px);
  background: var(--surface-2);
}

.dept__icon { width: 38px; height: 38px; color: var(--teal-bright); margin-bottom: 16px; }
.dept__icon svg { width: 100%; height: 100%; }

.dept h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.dept p { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* ═══════════ PHOTO SPLIT (image + text rows) ═══════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split + .split { margin-top: clamp(60px, 8vw, 100px); }
.split--rev .split__media { order: 2; }

.split__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 900px;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.split__media:hover img { transform: scale(1.1); }
.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(6,11,24,0.55));
  pointer-events: none;
}
.split__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 2;
  pointer-events: none;
}

.split__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 3;
  background: rgba(6, 11, 24, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-bright);
  font-family: var(--font-display);
}

.split__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.split__body p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }

.ticks { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.ticks li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--text);
  font-size: 14.5px;
}
.ticks li::before {
  content: "✓";
  color: var(--teal-bright);
  font-weight: 800;
  flex: none;
}

/* ═══════════ JOURNEY (Launch / Operate / Grow) ═══════════ */
.journey { position: relative; }

.journey__track {
  position: absolute;
  top: 26px; left: 8%;
  width: 84%; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.journey__progress {
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease) 0.3s;
}
.journey.is-in .journey__progress { transform: scaleX(1); }

.journey__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.jstep { position: relative; padding-top: 76px; text-align: center; }

.jstep__dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  background: var(--bg);
  color: var(--teal-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 7px var(--bg), 0 0 26px rgba(47,196,205,0.3);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.jstep:hover .jstep__dot {
  transform: translateX(-50%) translateY(-4px) scale(1.08);
  box-shadow: 0 0 0 7px var(--bg), 0 0 40px rgba(47,196,205,0.55);
}

.jstep h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.jstep p { color: var(--muted); font-size: 14.5px; max-width: 320px; margin: 0 auto; }

/* ═══════════ COMPARE BARS ═══════════ */
.compare {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}
.compare::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  opacity: 0.7;
}

.compare__row { margin-bottom: 26px; }
.compare__row:last-of-type { margin-bottom: 18px; }

.compare__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.compare__route { font-size: 15px; font-weight: 600; }

.compare__days { font-family: var(--font-display); font-weight: 600; font-size: 25px; line-height: 1; }
.compare__days i { font-style: normal; font-size: 13px; font-family: var(--font-body); color: var(--muted); font-weight: 400; }
.compare__days--slow b { color: var(--pink-bright); font-weight: 600; }
.compare__days--fast b { color: var(--teal-bright); font-weight: 600; }

.compare__track { height: 10px; background: rgba(255,255,255,0.05); border-radius: 6px; overflow: hidden; }
.compare__bar { height: 100%; width: 0; border-radius: 6px; transition: width 1.6s var(--ease) 0.2s; }
.compare__bar--slow { background: linear-gradient(90deg, #7e2540, var(--pink)); }
.compare__bar--fast { background: linear-gradient(90deg, #1ba3b4, var(--teal-bright)); box-shadow: 0 0 18px rgba(47,196,205,0.5); }

.compare__note {
  color: var(--muted);
  font-size: 15px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

/* ═══════════ ROADMAP TIMELINE ═══════════ */
.tl { position: relative; max-width: 860px; margin: 0 auto; padding-left: 40px; }

.tl__line {
  position: absolute;
  left: 13px; top: 6px; bottom: 6px;
  width: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.tl__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--teal), var(--pink));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.8s var(--ease) 0.2s;
}
.tl.is-in .tl__fill { transform: scaleY(1); }

.tl__item { position: relative; padding: 0 0 42px 26px; }
.tl__item:last-child { padding-bottom: 0; }

.tl__dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  background: var(--bg);
  display: grid;
  place-items: center;
  box-shadow: 0 0 18px rgba(47,196,205,0.3);
}
.tl__dot::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal-bright);
}
.tl__item--pink .tl__dot { border-color: var(--pink); box-shadow: 0 0 18px rgba(236,77,118,0.3); }
.tl__item--pink .tl__dot::after { background: var(--pink-bright); }

.tl__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--teal-bright);
  margin-bottom: 6px;
}
.tl__item--pink .tl__year { color: var(--pink-bright); }

.tl__item h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin-bottom: 6px; }
.tl__item p { color: var(--muted); font-size: 14.5px; max-width: 560px; }

/* ═══════════ QUOTE ═══════════ */
.quote {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--teal), var(--pink)) 1;
  background: linear-gradient(90deg, rgba(47,196,205,0.06), transparent 65%);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 52px);
}
.quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.5;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

/* ═══════════ CAMPUS BANNER (photo CTA) ═══════════ */
.campus {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.campus__img {
  position: absolute;
  inset: 0;
}
.campus__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -2%); }
}
.campus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,11,24,0.92) 20%, rgba(6,11,24,0.55) 55%, rgba(6,11,24,0.25));
}
.campus__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 80px clamp(20px, 4vw, 56px);
}
.campus__inner .section__title { max-width: 560px; }
.campus__inner .section__sub { max-width: 480px; }
.campus__inner .btn { margin-top: 30px; }

/* ═══════════ CONTACT ═══════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.contact__list { list-style: none; margin-top: 30px; display: grid; gap: 18px; font-size: 15.5px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list svg { width: 20px; height: 20px; color: var(--teal-bright); flex: none; margin-top: 3px; }
.contact__list b { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 3px; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  gap: 20px;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { display: grid; gap: 8px; }
.form label span {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.form input, .form textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(47,196,205,0.05);
}
.form ::placeholder { color: rgba(147,162,192,0.5); }
.form__ok { color: var(--teal-bright); font-size: 14px; text-align: center; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px clamp(20px, 4vw, 56px) 36px;
  background: var(--bg);
}

.footer__grid {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer__brand img { width: 190px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 320px; }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul { list-style: none; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--muted); font-size: 14px; transition: color 0.3s; }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(147,162,192,0.6);
  font-size: 13px;
}

/* ═══════════ REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }
.reveal-d5 { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .campus__img img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .svcgrid { grid-template-columns: repeat(2, 1fr); }
  .deptgrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__globe { order: 1; max-width: 420px; margin-top: 16px; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .aud { grid-template-columns: 1fr; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .journey__grid { grid-template-columns: 1fr; gap: 40px; }
  .journey__track { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links {
    position: fixed;
    top: 66px; right: 0;
    flex-direction: column;
    background: rgba(6, 11, 24, 0.97);
    border: 1px solid var(--line);
    border-right: none;
    padding: 28px 40px;
    gap: 20px;
    border-radius: 10px 0 0 10px;
    transform: translateX(110%);
    transition: transform 0.45s var(--ease);
    z-index: 99;
  }
  .nav__links.is-open { transform: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat { padding: 30px 12px; }
  .svcgrid, .deptgrid, .form__row, .footer__grid { grid-template-columns: 1fr; }
  .compare__days { font-size: 21px; }
  .brand__tag { display: none; }
}
