/* ============================================================
   CAMPUSLINK — HERO & INTERACTIVE SECTION STYLES
   Premium, editorial, world-class UI/UX
   ============================================================ */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, #061e4a 0%, #0b3d91 40%, #0e4da8 70%, #0a3580 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  cursor: crosshair;
  z-index: 1;
}

/* Floating orbs */
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat linear infinite;
  will-change: transform;
}
.orb-1 { width:500px;height:500px; top:-100px;right:-100px; background:radial-gradient(circle,rgba(30,169,82,0.12),transparent 70%); animation-duration:18s; }
.orb-2 { width:600px;height:600px; bottom:-200px;left:-150px; background:radial-gradient(circle,rgba(255,255,255,0.04),transparent 70%); animation-duration:22s; animation-delay:-8s; }
.orb-3 { width:300px;height:300px; top:40%;left:30%; background:radial-gradient(circle,rgba(11,61,145,0.15),transparent 70%); animation-duration:15s; animation-delay:-4s; }
.orb-4 { width:200px;height:200px; top:20%;right:25%; background:radial-gradient(circle,rgba(134,239,172,0.08),transparent 70%); animation-duration:12s; animation-delay:-6s; }
.orb-5 { width:400px;height:400px; bottom:10%;right:5%; background:radial-gradient(circle,rgba(30,50,120,0.2),transparent 70%); animation-duration:25s; animation-delay:-12s; }

@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  25%  { transform: translate(30px,-40px) scale(1.05); }
  50%  { transform: translate(-20px,20px) scale(0.97); }
  75%  { transform: translate(40px,10px) scale(1.03); }
  100% { transform: translate(0,0) scale(1); }
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Hero container */
.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 20px 80px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Hero Left */
.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1ea952;
  box-shadow: 0 0 12px rgba(30,169,82,0.8);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 12px rgba(30,169,82,0.8); transform: scale(1); }
  50%      { box-shadow: 0 0 24px rgba(30,169,82,1); transform: scale(1.3); }
}
.eyebrow-line { flex: 1; height: 1px; background: linear-gradient(90deg,rgba(255,255,255,0.3),transparent); max-width: 80px; }

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
  display: block;
  color: white;
  transform: translateY(100%);
  animation: lineReveal 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-headline .line-2 { animation-delay: 0.1s; }
.hero-headline .line-3 { animation-delay: 0.2s; }
@keyframes lineReveal { to { transform: translateY(0); } }

.gradient-text {
  background: linear-gradient(135deg, #86efac, #1ea952, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.8s 0.35s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeInUp { to { opacity:1; transform:translateY(0); } }

/* Hero Search */
.hero-search-wrap {
  position: relative;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.45s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-search-box:focus-within {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 3px rgba(30,169,82,0.3);
}

.search-icon-wrap {
  padding: 0 14px;
  display: flex; align-items: center;
}
.search-icon-wrap svg { width:18px;height:18px;color:rgba(255,255,255,0.6); }

.hero-search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 0.95rem;
  padding: 16px 12px;
  font-family: var(--font-body);
}
.hero-search-box input::placeholder { color: rgba(255,255,255,0.45); }

.search-cat-select {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.search-cat-select select {
  background: none; border: none; outline: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  font-family: var(--font-head);
  padding: 0;
  -webkit-appearance: none;
}
.search-cat-select select option { background: #0b3d91; color: white; }
.search-cat-select svg { width:14px;height:14px;color:rgba(255,255,255,0.5);pointer-events:none; }

.search-go-btn {
  background: #1ea952;
  color: white;
  border: none;
  padding: 0 24px;
  height: 56px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.search-go-btn:hover { background: #167a3d; }

/* Live results */
.live-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: rgba(6,18,50,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 200;
  animation: fadeInUp 0.2s ease;
}
.lr-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lr-item:last-child { border-bottom: none; }
.lr-item:hover { background: rgba(255,255,255,0.08); }
.lr-thumb {
  width: 44px; height: 44px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}
.lr-thumb img { width:100%;height:100%;object-fit:cover; }
.lr-info strong { display:block;font-size:0.875rem;color:white;font-family:var(--font-head); }
.lr-info span { font-size:0.76rem;color:rgba(255,255,255,0.5); }
.lr-badge { margin-left: auto; }
.lr-empty {
  padding: 24px; text-align: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.4);
}

/* Hero actions */
.hero-actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.55s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--primary);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.btn-hero-primary svg { width:16px;height:16px; transition: transform 0.25s ease; }
.btn-hero-primary:hover svg { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer; text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}
.btn-hero-ghost svg { width:16px;height:16px; }

/* Hero trust row */
.hero-trust-row {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.65s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem; font-weight: 500;
}
.trust-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width:14px;height:14px;color:#86efac; }
.trust-sep { width:1px;height:20px;background:rgba(255,255,255,0.15); }

/* Hero Right — Visual */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  animation: fadeInUp 0.9s 0.3s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
}

/* Central image */
.hero-central-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-central-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-central-img:hover img { transform: scale(1.04); }
.img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,18,50,0.5));
  border-radius: 28px;
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 5;
  border-radius: 18px;
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(6,18,50,0.7);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  animation: floatCard ease-in-out infinite;
  will-change: transform;
}

.card-main {
  top: 5%; left: -8%;
  min-width: 185px;
  display: flex; align-items: center; gap: 12px;
  animation-duration: 5s; animation-delay: 0s;
}
.fc-img {
  width: 44px; height: 44px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
}
.fc-img img { width:100%;height:100%;object-fit:cover; }
.fc-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.65rem; font-weight: 700; color: #4ade80;
  font-family: var(--font-head); margin-bottom: 4px;
}
.fc-badge svg { width:10px;height:10px; }
.fc-body h4 { color:white;font-family:var(--font-head);font-size:0.85rem;font-weight:700;margin-bottom:2px; }
.fc-body p { color:rgba(255,255,255,0.55);font-size:0.72rem; }
.fc-rating { font-size:0.72rem;color:var(--amber);margin-top:4px; }
.fc-rating span { color:rgba(255,255,255,0.8); }

.card-stat {
  bottom: 20%; right: -8%;
  text-align: center;
  min-width: 100px;
  animation-duration: 6s; animation-delay: -2s;
}
.stat-circle { position:relative;width:60px;height:60px;margin:0 auto 8px; }
.stat-circle svg { transform: rotate(-90deg); width:100%;height:100%; }
.stat-bg { fill:none;stroke:rgba(255,255,255,0.1);stroke-width:3; }
.stat-fill { fill:none;stroke:#1ea952;stroke-width:3;stroke-linecap:round; }
.stat-circle span { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:white;font-family:var(--font-head);font-size:0.75rem;font-weight:800; }
.card-stat p { color:rgba(255,255,255,0.6);font-size:0.72rem;font-weight:600; }

.card-review {
  top: 60%; left: -12%;
  min-width: 190px;
  animation-duration: 7s; animation-delay: -1s;
}
.review-stars { color:var(--amber);font-size:0.85rem;margin-bottom:6px; }
.card-review p { color:rgba(255,255,255,0.8);font-size:0.76rem;font-style:italic;margin-bottom:10px;line-height:1.45; }
.review-author { display:flex;align-items:center;gap:8px; }
.author-av { width:24px;height:24px;border-radius:50%;background:var(--primary);color:white;display:flex;align-items:center;justify-content:center;font-size:0.65rem;font-weight:800;font-family:var(--font-head); }
.review-author span { font-size:0.72rem;color:rgba(255,255,255,0.6); }

.card-notify {
  top: 8%; right: 5%;
  display: flex; align-items: center; gap: 10px;
  min-width: 165px;
  animation-duration: 4.5s; animation-delay: -3s;
}
.notify-icon { width:32px;height:32px;border-radius:10px;background:rgba(30,169,82,0.2);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.notify-icon svg { width:16px;height:16px;color:#4ade80; }
.notify-text strong { display:block;color:white;font-family:var(--font-head);font-size:0.8rem; }
.notify-text span { color:rgba(255,255,255,0.55);font-size:0.7rem; }

@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(0.5deg); }
  66%      { transform: translateY(6px) rotate(-0.5deg); }
}

/* Glass card variants */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
}
.glass-card-dark {
  background: rgba(6,18,50,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em;
  animation: fadeInUp 1s 1.2s ease forwards;
  opacity: 0;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: white;
  border-bottom: 1px solid var(--divider);
  padding: 28px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative; z-index: 10;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-pill {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 36px;
}
.stat-pill svg { width:24px;height:24px;color:var(--primary); }
.stat-pill strong { display:block;font-family:var(--font-head);font-size:1.75rem;font-weight:800;color:var(--primary);line-height:1; }
.stat-pill span { font-size:0.78rem;color:var(--text-muted);font-weight:500; }
.strip-divider { width:1px;height:40px;background:var(--divider); }

/* ===== SECTION COMMONS ===== */
.section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.section-label span {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.section-label.light span { color: #86efac; }
.label-line { height: 1px; width: 48px; background: var(--accent); opacity: 0.4; }
.label-line.light { background: rgba(255,255,255,0.3); opacity: 1; }

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-headline.light { color: white; }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 500px; margin-bottom: 0; }
.section-sub.light { color: rgba(255,255,255,0.7); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
}
.header-inner { display:flex;align-items:center;gap:16px;height:100%;max-width:var(--container);margin:0 auto;padding:0 20px; }

.logo { display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0; }
.logo-mark { width:36px;height:36px;flex-shrink:0; }
.logo-fallback { display:block; }
.logo-text { font-family:var(--font-head);font-size:1.2rem;font-weight:400;color:white;transition:color 0.3s ease; }
.logo-text strong { font-weight:900; }
.site-header.scrolled .logo-text { color:var(--primary); }
.site-header.scrolled .logo-fallback rect { fill:var(--primary); }

.main-nav { display:flex;align-items:center;gap:4px;margin-left:auto; }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 13px;
  font-family: var(--font-head);
  font-size: 0.84rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color:white;background:rgba(255,255,255,0.1); }
.site-header.scrolled .nav-link { color:var(--text-secondary); }
.site-header.scrolled .nav-link:hover { color:var(--primary);background:rgba(11,61,145,0.06); }
.nav-icon { width:13px;height:13px; }

.nav-vendor-btn {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  color: white;
}
.nav-vendor-btn:hover { background:rgba(255,255,255,0.2);border-color:white; }
.site-header.scrolled .nav-vendor-btn { color:var(--primary);border-color:var(--primary);background:transparent; }
.site-header.scrolled .nav-vendor-btn:hover { background:rgba(11,61,145,0.06); }
.nav-vendor-btn svg { width:14px;height:14px; }

.nav-login-btn {
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-weight: 700;
}
.nav-login-btn:hover { background:var(--accent-dark) !important; }

/* Dropdown */
.nav-dropdown { position:relative; }
.glass-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 220px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  z-index: 200;
}
.nav-dropdown:hover .glass-menu { opacity:1;visibility:visible;transform:translateY(0) scale(1); }
.glass-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem; color: var(--text);
  border-radius: 8px; text-decoration: none;
  transition: all 0.18s ease;
}
.glass-menu a:hover { background:rgba(11,61,145,0.06);color:var(--primary); }
.glass-menu a svg { width:15px;height:15px;color:var(--primary);flex-shrink:0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: auto;
  width: 36px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: white; border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.header-school-logo { margin-left:10px;flex-shrink:0; }
.header-school-logo img { width:38px;height:38px;object-fit:contain; }

/* ===== HOW IT WORKS STEPS ===== */
.how-section { background: white; }
.steps-timeline {
  max-width: 800px;
  margin: 56px auto 0;
  position: relative;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--divider), var(--accent), var(--divider));
  transform: translateX(-50%);
}
.step-item {
  display: flex; align-items: flex-start; gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.step-item.right { flex-direction: row-reverse; }

.step-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--hero-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(11,61,145,0.3);
  position: relative; z-index: 2;
}
.step-dot span { font-family:var(--font-head);font-size:0.75rem;font-weight:800;color:white; }

.step-content {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.step-content:hover { transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(11,61,145,0.2); }
.step-icon-wrap {
  width:44px;height:44px;border-radius:12px;
  background:rgba(11,61,145,0.08);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
  transition:all 0.3s ease;
}
.step-content:hover .step-icon-wrap { background:var(--primary); }
.step-icon-wrap svg { width:22px;height:22px;color:var(--primary);transition:color 0.3s ease; }
.step-content:hover .step-icon-wrap svg { color:white; }
.step-content h3 { font-family:var(--font-head);font-size:1rem;font-weight:700;margin-bottom:8px; }
.step-content p { font-size:0.875rem;color:var(--text-muted);line-height:1.65; }
.step-connector-line { display:none; }

.disclaimer-pill {
  display: flex; align-items: center; gap: 14px;
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  margin-top: 40px;
}
.disclaimer-pill svg { width:18px;height:18px;color:var(--amber);flex-shrink:0; }
.disclaimer-pill p { font-size:0.875rem;color:var(--text-secondary);line-height:1.6; }

/* ===== TRUST SECTION ===== */
.trust-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.trust-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.trust-bg-img img { width:100%;height:100%;object-fit:cover; }
.trust-bg-overlay { position:absolute;inset:0;background:linear-gradient(135deg,rgba(6,18,50,0.95) 0%,rgba(11,61,145,0.88) 100%); }

.trust-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.trust-content .section-sub.light { margin-bottom:0; }
.trust-feats { display:flex;flex-direction:column;gap:20px;margin-top:36px; }
.trust-feat-item { display:flex;align-items:flex-start;gap:16px; }
.tfi-icon { width:44px;height:44px;border-radius:12px;background:rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.tfi-icon svg { width:20px;height:20px;color:#86efac; }
.trust-feat-item h4 { font-family:var(--font-head);font-size:0.95rem;font-weight:700;color:white;margin-bottom:4px; }
.trust-feat-item p { font-size:0.84rem;color:rgba(255,255,255,0.6);line-height:1.55; }

.trust-cards-col { display:flex;flex-direction:column;gap:16px; }
.tc-card {
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 0.3s ease;
}
.tc-card:hover { transform:translateX(8px); }
.tc-card.shift { margin-left:32px; }
.tcc-icon { width:40px;height:40px;border-radius:12px;background:rgba(30,169,82,0.15);display:flex;align-items:center;justify-content:center;margin-bottom:12px; }
.tcc-icon svg { width:20px;height:20px;color:#86efac; }
.tc-card strong { display:block;color:white;font-family:var(--font-head);font-size:0.95rem;margin-bottom:4px; }
.tc-card span { font-size:0.8rem;color:rgba(255,255,255,0.5); }
.tcc-stars { color:var(--amber);font-size:1rem;margin-bottom:8px; }
.tc-card p { font-size:0.84rem;color:rgba(255,255,255,0.75);font-style:italic;line-height:1.55;margin-bottom:8px; }
.tcc-stat { font-family:var(--font-head);font-size:2rem;font-weight:900;color:white;line-height:1;margin-bottom:6px; }

/* ===== VENDOR CTA ===== */
.vendor-cta-section { background:var(--bg);padding:88px 0; }
.vcta-card {
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,#061e4a 0%,#0b3d91 50%,#0e4da8 100%);
  border-radius:28px;
  padding:72px 64px;
}
#vctaCanvas { position:absolute;inset:0;width:100%;height:100%;pointer-events:none; }
.vcta-inner {
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.vcta-text .section-headline { color:white;margin-bottom:14px; }
.vcta-text p { color:rgba(255,255,255,0.72);font-size:1rem;line-height:1.7; }

.vcta-plans { display:flex;gap:12px;flex-wrap:wrap;margin-bottom:32px; }
.vcta-plan {
  flex:1;min-width:100px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:16px;
  padding:18px 16px;
  text-align:center;
  position:relative;
  transition:all 0.25s ease;
}
.vcta-plan:hover { background:rgba(255,255,255,0.15);transform:translateY(-4px); }
.vcta-plan.featured { background:rgba(255,255,255,0.15);border-color:rgba(255,255,255,0.35); }
.vp-popular { position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:var(--amber);color:white;font-family:var(--font-head);font-size:0.62rem;font-weight:800;padding:3px 12px;border-radius:999px;text-transform:uppercase;letter-spacing:0.06em;white-space:nowrap; }
.vp-label { display:block;font-family:var(--font-head);font-size:0.72rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.55);margin-bottom:6px; }
.vp-price { display:block;font-family:var(--font-head);font-size:1.5rem;font-weight:900;color:white;line-height:1; }
.vp-period { display:block;font-size:0.72rem;color:rgba(255,255,255,0.5);margin-top:4px; }

.vcta-actions { display:flex;gap:12px;flex-wrap:wrap; }
.btn-vcta-primary {
  display:inline-flex;align-items:center;gap:8px;
  background:white;color:var(--primary);
  padding:14px 28px;border-radius:999px;
  font-family:var(--font-head);font-size:0.9rem;font-weight:700;
  text-decoration:none;transition:all 0.25s ease;
}
.btn-vcta-primary:hover { background:#f0f4ff;transform:translateY(-2px);box-shadow:0 12px 32px rgba(0,0,0,0.2); }
.btn-vcta-primary svg { width:16px;height:16px; }

.btn-vcta-ghost {
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;color:white;
  padding:14px 28px;border-radius:999px;
  border:1.5px solid rgba(255,255,255,0.35);
  font-family:var(--font-head);font-size:0.9rem;font-weight:600;
  text-decoration:none;transition:all 0.25s ease;
}
.btn-vcta-ghost:hover { background:rgba(255,255,255,0.1);border-color:white;transform:translateY(-2px); }
.btn-vcta-ghost svg { width:16px;height:16px;transition:transform 0.25s ease; }
.btn-vcta-ghost:hover svg { transform:translateX(4px); }

/* ===== FOOTER ===== */
.site-footer { background:linear-gradient(135deg,#04122e 0%,#0b3d91 100%); }
.footer-inner { padding:72px 0 0; }
.footer-top { display:grid;grid-template-columns:280px 1fr;gap:64px;margin-bottom:56px;padding:0 20px;max-width:var(--container);margin-left:auto;margin-right:auto; }
.footer-brand p { color:rgba(255,255,255,0.5);font-size:0.88rem;margin-top:16px;line-height:1.65;max-width:240px; }
.footer-socials { display:flex;gap:8px;margin-top:20px; }
.social-btn { width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.55);text-decoration:none;transition:all 0.22s ease; }
.social-btn:hover { background:var(--primary);border-color:var(--primary);color:white;transform:translateY(-2px); }
.social-btn svg { width:15px;height:15px; }

.footer-cols { display:grid;grid-template-columns:repeat(4,1fr);gap:32px; }
.footer-col h5 { font-family:var(--font-head);font-size:0.72rem;font-weight:800;text-transform:uppercase;letter-spacing:0.12em;color:rgba(255,255,255,0.35);margin-bottom:16px; }
.footer-col a { display:block;padding:5px 0;font-size:0.875rem;color:rgba(255,255,255,0.6);text-decoration:none;transition:color 0.2s ease; }
.footer-col a:hover { color:white; }

.footer-bottom { border-top:1px solid rgba(255,255,255,0.07);padding:24px 20px;max-width:var(--container);margin:0 auto;text-align:center; }
.footer-bottom p { font-size:0.76rem;color:rgba(255,255,255,0.3);line-height:1.65; }
.footer-legal-note { font-size:0.7rem !important;margin-top:4px; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero-container { grid-template-columns:1fr;text-align:center; }
  .hero-right { display:none; }
  .hero-eyebrow,.hero-trust-row,.hero-actions { justify-content:center; }
  .hero-desc { margin-left:auto;margin-right:auto; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-cards-col { flex-direction:row;flex-wrap:wrap; }
  .tc-card.shift { margin-left:0; }
  .vcta-inner { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-cols { grid-template-columns:repeat(2,1fr); }
  .steps-timeline::before { left:26px; }
  .step-item,.step-item.right { flex-direction:row; }
  .step-item.right .step-content { order:1; }
}

@media (max-width:768px) {
  .main-nav { display:none;position:fixed;top:var(--header-h);left:0;right:0;bottom:0;background:rgba(255,255,255,0.98);backdrop-filter:blur(20px);flex-direction:column;align-items:stretch;padding:20px;gap:4px;overflow-y:auto;z-index:999;box-shadow:0 20px 60px rgba(0,0,0,0.15); }
  .main-nav.open { display:flex; }
  .nav-link { color:var(--text);padding:14px 16px;font-size:1rem;border-radius:12px; }
  .nav-link:hover { color:var(--primary);background:rgba(11,61,145,0.06); }
  .glass-menu { position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:rgba(11,61,145,0.04); }
  .nav-toggle { display:flex; }
  .header-school-logo { display:none; }
  .stats-inner { flex-direction:column; }
  .strip-divider { width:80%;height:1px; }
  .vcta-card { padding:36px 24px; }
  .footer-cols { grid-template-columns:1fr 1fr; }
  .steps-timeline::before { display:none; }
}

@media (max-width:480px) {
  .hero-headline { font-size:2rem; }
  .footer-cols { grid-template-columns:1fr; }
  .vcta-plans { flex-direction:column; }
}