/* ============================================================
   LANDING.CSS — Full landing page styles
   Imports variables.css tokens. Mobile-first, fully responsive.
   ============================================================ */

@import url('./variables.css');

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg); color: var(--text1);
  min-height: 100vh; overflow-x: hidden;
  line-height: 1.6;
}

/* ── AMBIENT GLOW ORBS ── */
.glow-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.glow-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  animation: orb1 20s ease-in-out infinite;
}
.glow-orb-2 {
  width: 500px; height: 500px; bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  animation: orb2 25s ease-in-out infinite;
}
.glow-orb-3 {
  width: 400px; height: 400px; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
  animation: orb1 30s ease-in-out infinite reverse;
}

@keyframes orb1   { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes orb2   { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-60px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin   { to{transform:rotate(360deg)} }
@keyframes progressAnim { from{width:0%} to{width:87%} }
@keyframes modalSlideIn { from{opacity:0;transform:translateY(20px) scale(0.97)} to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes pulse  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
@keyframes blink  { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── TOAST ── */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; border-radius: 8px; }
.nav-logo-text {
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  color: var(--text2); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.nav-link:hover { color: var(--text1); background: var(--glass2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  padding: 8px 18px; background: transparent;
  border: 1px solid var(--border2); border-radius: 10px;
  color: var(--text1); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { background: var(--glass2); border-color: rgba(255,255,255,0.25); }
.btn-primary-nav {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--neon), #0099cc);
  border: none; border-radius: 10px;
  color: #080B14; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 15px rgba(0,212,255,0.25);
  white-space: nowrap;
}
.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,212,255,0.4); }

/* ── USER MENU ── */
.user-menu { position: relative; }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  color: #080B14; font-weight: 800; font-size: 15px;
  border: none; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.user-avatar:hover { transform: scale(1.08); }
.user-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 14px; min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden; z-index: 2000;
}
.user-dropdown.active { display: block; animation: fadeUp 0.2s ease; }
.user-dropdown-email { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.user-dropdown-email span { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; }
.user-dropdown-email p { font-size: 13px; font-weight: 600; color: var(--text1); margin-top: 3px; word-break: break-all; }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; color: var(--text2);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all 0.15s; cursor: pointer; background: none; border: none; width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.dropdown-item:hover { background: var(--glass2); color: var(--text1); }
.dropdown-item.danger:hover { background: rgba(239,68,68,0.1); color: #FCA5A5; }
.dropdown-item i { width: 16px; text-align: center; font-size: 13px; }

/* ── HAMBURGER (mobile) ── */
.hamburger {
  display: none; background: var(--glass2); border: 1px solid var(--border);
  border-radius: 8px; width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--text1); font-size: 16px;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 16px 16px; border-top: 1px solid var(--border);
  background: rgba(8,11,20,0.97);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 14px; border-radius: 10px;
  color: var(--text2); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.mobile-link:hover { color: var(--text1); background: var(--glass2); }
.mobile-auth-btns { display: flex; gap: 10px; margin-top: 8px; }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; z-index: 1;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  font-size: 13px; font-weight: 600; color: var(--neon);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon); animation: pulse 2s infinite;
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-title-gradient {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px); color: var(--text2);
  line-height: 1.7; margin-bottom: 32px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-hero-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--neon), #0099cc);
  border: none; border-radius: 12px; color: #080B14;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(0,212,255,0.3); text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,212,255,0.45); }
.btn-hero-secondary {
  padding: 14px 28px; background: var(--glass2);
  border: 1px solid var(--border2); border-radius: 12px;
  color: var(--text1); font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.btn-hero-secondary:hover { border-color: var(--neon); color: var(--neon); background: rgba(0,212,255,0.06); transform: translateY(-2px); }
.try-timer-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text3); padding: 6px 0;
}
.try-timer-chip i { color: var(--neon3); }

/* ── HERO VISUAL (right card) ── */
.hero-visual { position: relative; }
.hero-card-main {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 20px; padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.05);
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-card-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  border: 1px solid var(--border2);
}
.hero-card-info h4 { font-size: 15px; font-weight: 700; color: var(--text1); }
.hero-card-info span { font-size: 12px; color: var(--text3); }
.hero-match-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.hero-match-label { font-size: 12px; color: var(--text2); margin-bottom: 6px; }
.hero-progress { height: 6px; background: var(--glass2); border-radius: 3px; overflow: hidden; }
.hero-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.hero-match-score { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--neon); flex-shrink: 0; }
.hero-jobs-list { display: flex; flex-direction: column; gap: 10px; }
.hero-job-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; background: var(--glass); border: 1px solid var(--border);
  border-radius: 12px; transition: all 0.2s;
}
.hero-job-item:hover { border-color: var(--border2); background: var(--glass2); }
.hero-job-left { display: flex; align-items: center; gap: 12px; }
.hero-job-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hero-job-name { font-size: 13px; font-weight: 700; color: var(--text1); }
.hero-job-co   { font-size: 11px; color: var(--text3); margin-top: 2px; }
.hero-job-badge { padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.badge-matched  { background: rgba(0,212,255,0.12); color: var(--neon); border: 1px solid rgba(0,212,255,0.25); }
.badge-trending { background: rgba(124,58,237,0.12); color: var(--neon2); border: 1px solid rgba(124,58,237,0.25); }
/* ── Floating stat chips ── */
.hero-stat-chip {
  position: absolute; background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 16px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 2;
  animation: fadeUp 1s ease both;
}
.hero-stat-chip-1 { top: -16px; left: -20px; animation-delay: 0.5s; }
.hero-stat-chip-2 { bottom: 20px; right: -20px; animation-delay: 0.7s; }
.hero-stat-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--neon); }
.hero-stat-lbl { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(13,17,23,0.8); backdrop-filter: blur(10px);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Sora', sans-serif; font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--neon); line-height: 1;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 14px; font-weight: 600; color: var(--text1); margin: 8px 0 4px; }
.stat-sub   { font-size: 12px; color: var(--text3); }

/* ══════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════ */
.section { position: relative; z-index: 1; padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--text2);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text2); max-width: 560px; line-height: 1.7; margin-bottom: 50px; }

/* ── HOW IT WORKS STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,212,255,0.03), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 800;
  color: var(--text3); letter-spacing: 0.5px; margin-bottom: 16px;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.step-icon-1 { background: rgba(0,212,255,0.1); color: var(--neon); border: 1px solid rgba(0,212,255,0.2); }
.step-icon-2 { background: rgba(124,58,237,0.1); color: var(--neon2); border: 1px solid rgba(124,58,237,0.2); }
.step-icon-3 { background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.step-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-desc  { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── BENTO FEATURES GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 26px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.accent-cyan:hover  { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.04); }
.accent-purple:hover{ border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.04); }
.accent-green:hover { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.04); }
.accent-amber:hover { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.04); }
.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.bento-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.bento-desc  { font-size: 14px; color: var(--text2); line-height: 1.7; }
.bento-big-num {
  font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800;
  line-height: 1; margin-top: 16px;
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   FOOTER (minimal)
══════════════════════════════════════ */
.landing-footer {
  border-top: 1px solid var(--border); padding: 32px 24px;
  text-align: center; position: relative; z-index: 1;
}
.landing-footer p { font-size: 13px; color: var(--text3); }
.landing-footer a { color: var(--neon); text-decoration: none; }
.landing-footer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub   { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas  { justify-content: center; }
  .hero-stat-chip-1 { top: -10px; left: 0; }
  .hero-stat-chip-2 { bottom: 10px; right: 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .bento-card.tall { grid-row: span 1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .nav-links { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .navbar-inner { padding: 0 16px; height: 58px; }
  .nav-actions  { display: none; }
  .hamburger    { display: flex; }
  .hero { padding: 80px 16px 48px; min-height: auto; }
  .hero-title   { font-size: 32px; }
  .hero-sub     { font-size: 15px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-ctas    { flex-direction: column; }
  .hero-stat-chip { display: none; }
  .section { padding: 50px 16px; }
  .section-title { font-size: 26px; }
  .section-sub   { font-size: 15px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 22px 12px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .step-card { padding: 24px 20px; }
  .toast-container { top: 70px; right: 12px; left: 12px; }
}

/* ══════════════════════════════════════
   HERO SOCIAL ROW — avatars + star rating
══════════════════════════════════════ */
.hero-social-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.hero-avatars { display: flex; }
.hero-av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #080B14;
  flex-shrink: 0;
}
.hero-av:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: var(--text2); }
.hero-social-text strong { color: var(--text1); }
.hero-stars { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--neon3); }
.hero-stars span { color: var(--text2); font-weight: 600; }

/* ══════════════════════════════════════
   SOCIAL PROOF — ticker strip
══════════════════════════════════════ */
.social-proof-section { padding: 40px 24px !important; }
.proof-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text3); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 24px;
}
.logo-ticker-wrap { overflow: hidden; position: relative; }
.logo-ticker-wrap::before,
.logo-ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.logo-ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.logo-ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.logo-ticker {
  display: flex; gap: 12px; width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.logo-ticker:hover { animation-play-state: paused; }
.logo-chip {
  padding: 10px 20px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--text2);
  white-space: nowrap; transition: all 0.2s;
}
.logo-chip:hover { border-color: var(--border2); color: var(--text1); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.testi-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 20px; padding: 26px;
  transition: all 0.3s; display: flex; flex-direction: column; gap: 14px;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.testi-stars { font-size: 16px; color: var(--neon3); letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.75; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.testi-name    { font-size: 14px; font-weight: 700; color: var(--text1); }
.testi-college { font-size: 12px; color: var(--text3); margin-top: 2px; }
.testi-highlight {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08));
  border-color: rgba(0,212,255,0.2); text-align: center; justify-content: center;
}
.testi-big-stat {
  font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800;
  background: linear-gradient(135deg, var(--neon), var(--neon2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.testi-big-label { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--text1); margin-top: 6px; }
.testi-cta-sub   { font-size: 13px; color: var(--text2); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  position: relative; z-index: 1;
  padding: 80px 24px; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, rgba(124,58,237,0.08) 100%);
  border-top: 1px solid rgba(0,212,255,0.12);
  border-bottom: 1px solid rgba(0,212,255,0.12);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-family: 'Sora', sans-serif; font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-sub   { font-size: 17px; color: var(--text2); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-trust-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--text3);
}
.cta-trust-row i { color: var(--green); margin-right: 5px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.landing-footer { position: relative; z-index: 1; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline { font-size: 13px; color: var(--text3); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 14px; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--neon); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text3); }

/* ══════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════ */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-social-row { gap: 10px; }
  .hero-stars { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-hero-primary,
  .cta-actions .btn-hero-secondary { width: 100%; justify-content: center; }
  .cta-trust-row { gap: 12px; font-size: 12px; }
  .footer-links { gap: 16px; }
}

/* ══════════════════════════════════════
   PROOF COLLEGES (honest social proof)
══════════════════════════════════════ */
.proof-colleges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 20px 0;
}
.proof-college-chip {
  padding: 7px 16px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text2); transition: all 0.2s;
}
.proof-college-chip:hover { border-color: var(--neon); color: var(--text1); }
.proof-honest-note {
  margin-top: 24px; font-size: 14px; color: var(--text2);
  line-height: 1.7; max-width: 520px; margin-left: auto; margin-right: auto;
  text-align: center;
}
.proof-honest-note strong { color: var(--text1); }

/* ══════════════════════════════════════
   REVIEW CTA CARD
══════════════════════════════════════ */
.review-cta-card {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(245,158,11,0.25); border-radius: 20px;
  padding: 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.review-cta-left { display: flex; align-items: flex-start; gap: 18px; flex: 1; }
.review-cta-icon { font-size: 36px; flex-shrink: 0; }
.review-cta-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--text1); margin-bottom: 6px; }
.review-cta-sub   { font-size: 14px; color: var(--text2); line-height: 1.6; }
.btn-leave-review {
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--neon3), #D97706);
  border: none; border-radius: 12px; color: #080B14;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-leave-review:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45); }

@media (max-width: 600px) {
  .review-cta-card { flex-direction: column; }
  .btn-leave-review { width: 100%; justify-content: center; }
  .proof-college-chip { font-size: 12px; padding: 6px 12px; }
}

/* ══════════════════════════════════════
   JOB ALERT LANDING SECTION
══════════════════════════════════════ */
.alert-landing-card {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(124,58,237,0.06));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px; padding: 40px 36px;
  display: flex; gap: 48px; align-items: flex-start;
  flex-wrap: wrap;
}
.alert-landing-left { flex: 1; min-width: 260px; display: flex; gap: 20px; align-items: flex-start; }
.alert-landing-icon { font-size: 40px; flex-shrink: 0; }
.alert-landing-title {
  font-family: 'Sora', sans-serif; font-size: clamp(20px, 3vw, 28px);
  font-weight: 800; color: var(--text1); margin-bottom: 10px; line-height: 1.2;
}
.alert-landing-sub { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.alert-landing-trust { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--text3); }
.alert-landing-trust i { color: var(--green); margin-right: 4px; }

.alert-landing-form {
  flex: 0 0 320px; display: flex; flex-direction: column; gap: 10px;
}
.alert-field {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border2);
  border-radius: 10px; color: var(--text1);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: all 0.2s;
}
.alert-field::placeholder { color: var(--text3); }
.alert-field:focus { outline: none; border-color: var(--neon); background: rgba(0,212,255,0.04); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.alert-submit-landing {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--neon), #0099cc);
  border: none; border-radius: 10px; color: #080B14;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}
.alert-submit-landing:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,212,255,0.4); }
.alert-submit-landing:disabled { opacity: 0.6; cursor: not-allowed; }
.alert-landing-note { font-size: 13px; min-height: 18px; text-align: center; }

@media (max-width: 768px) {
  .alert-landing-card { padding: 24px 20px; gap: 24px; }
  .alert-landing-form { flex: 1 1 100%; }
  .alert-landing-left { flex: 1 1 100%; }
}

/* ══════════════════════════════════════
   JOB ALERT SECTION — Landing Page
══════════════════════════════════════ */
.alert-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(0,212,255,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.alert-section-inner {
  display: flex; flex-direction: column; gap: 40px;
}
.alert-features { display: flex; flex-direction: column; gap: 10px; }
.alert-feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text2);
}
.alert-feature-item i { color: var(--green); font-size: 14px; flex-shrink: 0; }

/* Form card */
.alert-form-card {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.alert-form-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.alert-form-icon { font-size: 32px; }
.alert-form-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--text1); }
.alert-form-sub   { font-size: 12px; color: var(--text3); margin-top: 3px; }
.alert-field {
  width: 100%; padding: 12px 16px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text1);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  margin-bottom: 10px; transition: all 0.2s;
}
.alert-field::placeholder { color: var(--text3); }
.alert-field:focus {
  outline: none; border-color: var(--neon2);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.alert-submit-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--neon2), #9333ea);
  border: none; border-radius: 12px; color: white;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}
.alert-submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,0.5); }
.alert-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.alert-privacy { font-size: 12px; color: var(--text3); text-align: center; margin-top: 10px; }

/* Loading spin inside button */
.loading-spin {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Success card */
.alert-success-card {
  background: var(--bg2); border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px; padding: 40px 28px; text-align: center;
}
.alert-success-icon  { font-size: 48px; margin-bottom: 12px; }
.alert-success-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--text1); margin-bottom: 10px; }
.alert-success-sub   { font-size: 14px; color: var(--text2); line-height: 1.7; }

@media(min-width: 768px) {
  .alert-section-inner { flex-direction: row; align-items: center; gap: 60px; }
  .alert-section-left  { flex: 1; }
  .alert-section-right { flex: 0 0 380px; }
}
