/*
Theme Name: My Theme
Theme URI: https://
Author: Kavindu Siriwardhana
Author URI: https://
Description: My theme developed by Kavindu
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://
Text Domain: myTheme
*/


/* ===== UAboard Design System ===== */

:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Color system */
  --navy-900: #171717;
  --navy-800: #260707;
  --navy-700: #430909;
  --navy-600: #700b0b;
  --blue-600: #d90000;
  --blue-500: #ed1111;
  --blue-400: #ff4b4b;
  --purple-600: #a00000;
  --purple-500: #ff6b6b;
  --accent: #d90000;

  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f3f3f3;
  --gray-200: #e7e7e7;
  --gray-300: #d6d6d6;
  --gray-400: #b0b0b0;
  --gray-500: #858585;
  --gray-600: #666666;
  --gray-700: #4c4c4c;
  --gray-800: #333333;
  --gray-900: #1f1f1f;

  --success: #20c997;
  --warning: #fab005;
  --error: #fa5252;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(23, 23, 23, .06);
  --shadow-md: 0 4px 20px rgba(23, 23, 23, .08);
  --shadow-lg: 0 12px 40px rgba(23, 23, 23, .12);
  --shadow-xl: 0 24px 64px rgba(23, 23, 23, .16);
  --shadow-glow: 0 0 40px rgba(217, 0, 0, .15);

  /* Layout */
  --container: 1280px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --nav-h: 68px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: all .2s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 10px; }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 0, 0, .3);
}
.btn-primary:hover {
  background: var(--blue-500);
  box-shadow: 0 6px 22px rgba(217, 0, 0, .42);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy-800);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--gray-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-video {
  color: var(--blue-600);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(217, 0, 0, .28);
  box-shadow: 0 4px 14px rgba(217, 0, 0, .12);
}
.btn-video:hover {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 6px 22px rgba(217, 0, 0, .3);
  transform: translateY(-1px);
}
.play-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding-left: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

.btn-glow {
  box-shadow: 0 4px 14px rgba(217, 0, 0, .4), 0 0 32px rgba(217, 0, 0, .25);
}
.btn-glow:hover {
  box-shadow: 0 6px 24px rgba(217, 0, 0, .5), 0 0 48px rgba(217, 0, 0, .35);
}

/* ===== Video Modal ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.video-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, .78);
  backdrop-filter: blur(8px);
}
.video-modal-panel {
  position: relative;
  width: min(900px, 100%);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(23, 23, 23, .35);
  transform: translateY(12px) scale(.98);
  transition: transform .25s ease;
}
.video-modal.is-open .video-modal-panel { transform: translateY(0) scale(1); }
.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: var(--white);
  background: linear-gradient(110deg, var(--navy-800), var(--blue-600));
}
.video-modal-head h2 { font-size: 17px; font-weight: 700; }
.video-modal-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: rgba(255, 255, 255, .18); transform: rotate(90deg); }
.video-frame { aspect-ratio: 16 / 9; background: var(--navy-900); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
body.video-modal-open { overflow: hidden; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
   display: block !important;
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 12px rgba(23, 23, 23, .06);
}
.nav-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--navy-900);
}
.nav-logo-mark { display: flex; align-items: center; }
.nav-logo-mark img { width: 142px; height: auto; }
.nav-logo-text { display: none; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-login {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .2s;
}
.nav-login:hover { color: var(--navy-900); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 0;
}
.nav-mobile-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-glow {
  display: none;
}
.hero-glow-1 {
  width: 520px; height: 520px;
  background: var(--blue-400);
  top: -120px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: var(--purple-500);
  bottom: -80px; left: -80px;
  opacity: .2;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 23, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-content { width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-600);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--success);
  opacity: .4;
  animation: pulse 2s infinite;
}
.pulse-dot-red { background: var(--error); }
.pulse-dot-red::after { background: var(--error); }
@keyframes pulse {
  0% { transform: scale(1); opacity: .4; }
  70% { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--navy-900);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.65;
  max-width: none;
  margin-bottom: 36px;
}
.hero-ctas {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-ctas .btn-video {
  grid-column: 1 / -1;
  justify-self: start;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
}
.dot-sep { color: var(--gray-300); }

.hide-mobile { display: inline; }

/* ===== Hero Dashboard Visual ===== */
.hero-visual { perspective: 1200px; }
.dash {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gray-200);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .6s ease;
  animation: float-dash 6s ease-in-out infinite;
}
.dash:hover { transform: rotateY(-2deg) rotateX(1deg) translateY(-4px); }
@keyframes float-dash {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

.dash-window {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28ca42; }
.dash-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
}

.dash-body { padding: 22px; }
.dash-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-600);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.ai-spark {
  color: var(--purple-500);
  font-size: 14px;
}
.ai-spark-large { font-size: 22px; }

.dash-match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--white);
  margin-bottom: 16px;
}
.dash-match-top { display: flex; align-items: center; gap: 14px; }
.dash-uni-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.dash-uni-name {
  font-size: 16px;
  font-weight: 700;
}
.dash-uni-program {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
.dash-match-ring {
  position: relative;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-match-pct {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.ring-progress { transition: stroke-dashoffset 1.5s ease; }

.dash-countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.dash-country {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
}
.flag { font-size: 20px; display: inline-flex; align-items: center; vertical-align: middle; line-height: 1; }
.flag img { width: 20px; height: 15px; border-radius: 2px; display: block; object-fit: cover; }
.flag-small img { width: 16px; height: 12px; }
.flag-inline { display: inline-flex; margin-right: 4px; }
.flag-inline img { width: 16px; height: 12px; }
.dash-country-name {
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
}
.dash-country-count {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.dash-progress { margin-bottom: 16px; }
.dash-progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.dash-progress-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.dash-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-400), var(--purple-500));
  border-radius: 100px;
  transition: width 1.5s ease;
}

.dash-ai-chat {
  background: linear-gradient(135deg, rgba(217,0,0,.06), rgba(217,0,0,.06));
  border: 1px solid rgba(217,0,0,.12);
  border-radius: var(--radius);
  padding: 14px;
}
.dash-ai-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--navy-800);
  font-weight: 500;
}

/* ===== Trust Section ===== */
.trust {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -.02em;
  color: var(--navy-900);
  margin-bottom: 40px;
}
.trust-image {
  max-width: 900px;
  margin: 0 auto 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
}
.trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.trust-image:hover img { transform: scale(1.03); }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-stat-label {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy-900);
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-top: 18px;
  line-height: 1.65;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0 0 32px;
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
}
.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.step-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 24px;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.step:hover .step-img img { transform: scale(1.06); }
.step-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  padding: 0 24px;
}
.step-line {
  position: absolute;
  top: 188px; right: -12px;
  width: 24px; height: 2px;
  background: var(--gray-200);
  z-index: 1;
}
.step:last-child .step-line { display: none; }
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -.01em;
  padding: 0 24px;
}
.step-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  padding: 0 24px;
}

/* ===== AI Chat ===== */
.ai-chat-wrap { max-width: 760px; margin: 0 auto; }
.ai-chat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.ai-chat-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.ai-chat-name { font-weight: 600; font-size: 15px; flex: 1; }
.ai-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
}
.ai-chat-body { padding: 24px 20px; }
.chat-msg { margin-bottom: 18px; display: flex; }
.chat-msg-user { justify-content: flex-end; }
.chat-msg-ai { gap: 12px; }
.chat-avatar {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.chat-bubble {
  max-width: 80%;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.6;
}
.chat-bubble-user {
  background: var(--blue-600);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
}
.chat-bubble-ai {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 18px 18px 18px 4px;
  color: var(--gray-800);
}
.chat-bubble-ai strong { color: var(--blue-600); }

.ai-chat-recs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 20px 20px;
}
.rec-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.rec-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
}
.rec-card-flag { font-size: 24px; }
.rec-card-flag img { width: 24px; height: 18px; border-radius: 3px; display: block; }
.rec-card-name { font-size: 13px; font-weight: 700; margin-top: 6px; }
.rec-card-program { font-size: 12px; color: var(--gray-600); margin-top: 2px; }
.rec-card-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: rgba(32, 201, 151, .1);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===== University Discovery ===== */
.discover-wrap { max-width: 980px; margin: 0 auto; }
.discover-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--gray-400); }
.filter-chip.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.uni-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all .3s;
  opacity: 1;
  overflow: hidden;
}
.uni-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.uni-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.uni-card:hover .uni-card-img img { transform: scale(1.06); }
.uni-card.hidden { display: none; }
.uni-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}
.uni-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 24px 24px 0;
}
.uni-card-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.uni-card-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  background: rgba(217, 0, 0, .08);
  padding: 5px 12px;
  border-radius: 100px;
}
.uni-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 6px;
  padding: 0 24px;
}
.uni-card-loc {
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
}
.uni-card-program {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
  padding: 0 24px;
}
.uni-card-footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 0 24px;
}
.uni-card-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--gray-700);
}
.uni-card-tag-soft {
  background: rgba(32, 201, 151, .08);
  color: var(--success);
}
.uni-card-meter {
  height: 4px;
  background: var(--gray-100);
  border-radius: 100px;
  margin: 16px 24px 24px;
  overflow: hidden;
}
.uni-card-meter-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-400), var(--purple-500));
  border-radius: 100px;
  transition: width 1.5s ease;
}

/* ===== CV Section (split) ===== */
.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cv-grid-reverse .cv-left { order: 2; }
.cv-grid-reverse .cv-right { order: 1; }
.cv-left .section-eyebrow { margin-bottom: 14px; }
.cv-left .section-title { text-align: left; }
.cv-left .section-sub { margin-bottom: 32px; }
.cv-left .section-title { margin-bottom: 18px; }
.cv-student-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.cv-student-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cv-student-img:hover img { transform: scale(1.04); }

.cv-upload {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color .2s;
}
.cv-upload:hover { border-color: var(--blue-400); }
.cv-upload-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}
.cv-upload-title { font-weight: 700; font-size: 16px; color: var(--navy-900); }
.cv-upload-sub { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.cv-upload-text { flex: 1; }

.cv-profile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.cv-profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.cv-profile-avatar {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.cv-profile-name { font-weight: 700; font-size: 16px; color: var(--navy-900); }
.cv-profile-sub { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.cv-profile-head .ai-spark { margin-left: auto; }

.cv-ratings { margin-bottom: 24px; }
.cv-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.cv-rating-label { font-size: 14px; color: var(--gray-700); font-weight: 500; }
.cv-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
  letter-spacing: 1px;
}
.cv-stars::after {
  content: '';
}

.cv-profile-section { margin-bottom: 20px; }
.cv-profile-section:last-child { margin-bottom: 0; }
.cv-profile-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.cv-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cv-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 7px 14px;
  border-radius: 8px;
}

/* ===== Interview Card ===== */
.interview-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.interview-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217, 0, 0, .3), transparent 70%);
  border-radius: 50%;
}
.interview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.interview-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--error);
}
.interview-count { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }
.interview-question {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  position: relative;
}
.interview-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 28px;
  position: relative;
}
.interview-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}
.interview-scores { display: flex; flex-direction: column; gap: 14px; position: relative; }
.interview-score {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  align-items: center;
  gap: 14px;
}
.interview-score-label { font-size: 14px; color: rgba(255,255,255,.8); }
.interview-score-bar {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  overflow: hidden;
}
.interview-score-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-400), var(--purple-500));
  border-radius: 100px;
  transition: width 1.5s ease;
}
.interview-score-val { font-size: 14px; font-weight: 700; text-align: right; }

/* ===== Globe Section ===== */
.globe-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}
.globe {
  position: relative;
  width: 440px; height: 360px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 10px;
  
}
.globe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.globe-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 5%;
  background: var(--blue-500);
  box-shadow: 0 0 12px var(--blue-500);
  animation: dot-pulse 2.5s infinite;
}
.globe-dot-1 { top: 20%; left: 30%; }
.globe-dot-2 { top: 35%; left: 65%; background: var(--purple-500); box-shadow: 0 0 12px var(--purple-500); }
.globe-dot-3 { top: 55%; left: 25%; background: var(--success); box-shadow: 0 0 12px var(--success); }
.globe-dot-4 { top: 45%; left: 50%; }
.globe-dot-5 { top: 70%; left: 60%; background: var(--purple-500); box-shadow: 0 0 12px var(--purple-500); }
.globe-dot-6 { top: 25%; left: 55%; }
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .6; }
}

.globe-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.globe-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  animation: float-card 4s ease-in-out infinite;
  animation-delay: var(--d);
}
.globe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== Dashboard Preview ===== */
.dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.dashboard-body { padding: 28px; }
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dash-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
}
.dash-stat-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.dash-stat-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 4px 0;
  letter-spacing: -.02em;
}
.dash-stat-bar {
  height: 4px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}
.dash-stat-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blue-400), var(--purple-500));
  border-radius: 100px;
  transition: width 1.5s ease;
}

.dashboard-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dash-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.dash-panel-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.dash-panel-list { display: flex; flex-direction: column; gap: 10px; }
.dash-panel-item {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.dash-panel-item strong { color: var(--blue-600); }

/* ===== Final CTA ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800) 50%, var(--navy-700));
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-glow-1 {
  width: 500px; height: 500px;
  background: var(--blue-500);
  opacity: .15;
  top: -150px; left: -100px;
}
.cta-glow-2 {
  width: 400px; height: 400px;
  background: var(--purple-500);
  opacity: .12;
  bottom: -100px; right: -50px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-free {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}

/* ===== Discover with AI Section ===== */
.discover-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.section-title-left { text-align: left; }
.section-sub-left { text-align: left; margin-left: 0; }

.ai-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 36px 0 36px;
}
.ai-journey-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}
.ai-journey-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(217, 0, 0, .08);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.ai-journey-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.ai-journey-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.ai-journey-connector {
  width: 2px;
  height: 20px;
  background: var(--gray-200);
  margin-left: 19px;
}

.discover-ai-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.discover-ai-cta-sub {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

.ai-reco-dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.ai-reco-body { padding: 24px; }
.ai-reco-sublabel {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 16px;
}

.ai-profile-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
}
.ai-profile-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.ai-profile-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-profile-attr {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
}
.ai-profile-key { color: var(--gray-500); font-weight: 500; }
.ai-profile-val { color: var(--navy-900); font-weight: 600; }

.ai-reco-section-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.ai-reco-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
  transition: box-shadow .2s, border-color .2s;
}
.ai-reco-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.ai-reco-card-featured {
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.ai-reco-card-small { padding: 16px 18px; }
.ai-reco-card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.suitability-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(23, 23, 23, .04);
}
.suitability-green { background: #25a56a; }
.suitability-amber { background: #d69424; }
.suitability-red { background: #d64b4b; }
.flag-small { font-size: 15px; }

.ai-reco-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.ai-reco-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.ai-reco-card-title-sm {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.ai-reco-card-uni {
  font-size: 13px;
  color: var(--gray-600);
}
.ai-reco-card-uni-sm {
  font-size: 12px;
  color: var(--gray-500);
}

.ai-reco-match {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.ai-reco-match-ring {
  position: relative;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-reco-match-pct {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.ai-reco-match-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 2px;
}
.ai-reco-match-inline {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  background: rgba(217, 0, 0, .08);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.ai-reco-match-bar {
  height: 5px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}
.ai-reco-match-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  border-radius: 100px;
  transition: width 1.5s ease;
}

.ai-reco-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ai-reco-insight-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.ai-reco-insight-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-reco-insight-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  line-height: 1.5;
}
.ai-reco-insight-pro { color: var(--gray-700); }
.ai-reco-insight-warn { color: var(--gray-700); }
.ai-reco-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.ai-reco-warn {
  color: var(--warning);
  flex-shrink: 0;
}
.ai-reco-btn { width: 100%; }

/* ===== Transition Section ===== */
.transition-section {
  padding: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.transition-inner { text-align: center; }
.transition-title {
  padding: 72px 24px 40px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy-900);
}
.transition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.transition-card {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 7vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: filter .3s ease;
}
.transition-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(135deg, transparent 0 45%, rgba(255,255,255,.2) 45% 46%, transparent 46% 100%), linear-gradient(45deg, transparent 0 70%, rgba(255,255,255,.12) 70% 71%, transparent 71% 100%);
  pointer-events: none;
}
.transition-card:hover { filter: brightness(1.08); }
.transition-card-ai {
  background: linear-gradient(135deg, #0c1c38, #142d52);
}
.transition-card-search {
  background: linear-gradient(135deg, #486c22, #6f942b);
}
.transition-card-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
  color: var(--white);
}
.transition-card-type {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.transition-card-quote {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: 28px;
}
.transition-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.transition-card-cta .ai-spark { color: #b9deff; }
.transition-card-search .transition-card-cta .ai-spark { color: #d9f29f; }
.transition-card-arrow {
  font-size: 20px;
  line-height: 1;
  margin-left: 4px;
}

/* ===== Find a Course Section (Static Screenshot Mockup) ===== */
.fc-mockup-wrap {
  max-width: 980px;
  margin: 0 auto;
  perspective: 1600px;
}
.fc-mockup {
  position: relative;
  transform: rotateX(2deg) rotateY(-1.5deg);
  transition: transform .6s ease;
}
.fc-mockup:hover { transform: rotateX(0deg) rotateY(0deg) translateY(-4px); }

.fc-mockup-browser {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gray-200);
  overflow: hidden;
}
.fc-mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.fc-mockup-browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
.fc-mockup-browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.fc-mockup-browser-dots span:nth-child(1) { background: #ff5f57; }
.fc-mockup-browser-dots span:nth-child(2) { background: #ffbd2e; }
.fc-mockup-browser-dots span:nth-child(3) { background: #28ca42; }
.fc-mockup-browser-url {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  text-align: center;
}
.fc-mockup-browser-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 4px 12px;
  flex-shrink: 0;
}

.fc-mockup-body { padding: 28px 32px 0; }

.fc-mockup-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.fc-mockup-search-icon { color: var(--gray-400); flex-shrink: 0; }
.fc-mockup-search-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
}
.fc-mockup-search-year {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px 12px;
}

.fc-mockup-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.fc-mockup-filter-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  background: rgba(217, 0, 0, .06);
  border: 1px solid rgba(217, 0, 0, .15);
  border-radius: 100px;
  padding: 4px 14px;
}
.fc-mockup-filter-sep { color: var(--gray-300); font-size: 13px; }

.fc-mockup-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  padding-bottom: 40px;
}

.fc-mockup-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

.fc-mockup-sidebar {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.fc-mockup-sidebar-head {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.fc-mockup-filter-group { margin-bottom: 18px; }
.fc-mockup-filter-group:last-child { margin-bottom: 0; }
.fc-mockup-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.fc-mockup-filter-sub {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 4px;
}
.fc-mockup-check-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fc-mockup-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
}
.fc-mockup-checkbox {
  width: 15px; height: 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
}
.fc-mockup-checkbox-checked {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}
.fc-mockup-check-checked { color: var(--navy-900); font-weight: 600; }
.fc-mockup-range-text {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 6px;
}
.fc-mockup-range-bar {
  height: 5px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}
.fc-mockup-range-fill {
  height: 100%;
  width: 65%;
  background: var(--blue-600);
  border-radius: 100px;
}
.fc-mockup-range-fill-narrow { width: 80%; }

.fc-mockup-result {
  display: grid;
  grid-template-columns: 32px 1fr 240px;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.fc-mockup-result-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-300);
  padding-top: 2px;
}
.fc-mockup-result-main { min-width: 0; }
.fc-mockup-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.fc-mockup-result-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.fc-mockup-result-uni {
  font-size: 14px;
  color: var(--gray-600);
}
.fc-mockup-result-match {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  background: rgba(217, 0, 0, .08);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.fc-mockup-result-match-high {
  background: rgba(217, 0, 0, .12);
}
.fc-mockup-result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.fc-mockup-meta-sep { color: var(--gray-300); }

.fc-mockup-insight {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.fc-mockup-insight-head {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.fc-mockup-insight-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fc-mockup-insight-pro,
.fc-mockup-insight-warn {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}

.fc-mockup-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.fc-mockup-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.fc-mockup-float-card-1 {
  top: -20px;
  right: -30px;
  animation: float-card 5s ease-in-out infinite;
}
.fc-mockup-float-card-2 {
  bottom: 80px;
  left: -24px;
  animation: float-card 5s ease-in-out infinite;
  animation-delay: 1.5s;
}


/* ===== Final Visual Message ===== */
.final-message-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.final-message-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.final-message-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 18px;
}
.final-message-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
  .globe-wrap { grid-template-columns: 1fr; gap: 32px; }
  .globe { width: 280px; height: auto; }
  .dashboard-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .discover-ai-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-reco-dashboard { max-width: 560px; margin: 0 auto; }
  .fc-mockup-content { grid-template-columns: 180px 1fr; gap: 18px; }
  .fc-mockup-result { grid-template-columns: 28px 1fr 200px; gap: 16px; }
  .ai-reco-insights { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .hero { padding: calc(var(--nav-h) + 48px) 0 72px; }
  .cv-grid { grid-template-columns: 1fr; gap: 40px; }
  .cv-grid-reverse .cv-left { order: 1; }
  .cv-grid-reverse .cv-right { order: 2; }
  .cv-left .section-title { text-align: left; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .ai-chat-recs { grid-template-columns: 1fr; }
  .globe-cards { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hide-mobile { display: none; }
  .hero-ctas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-ctas .btn {
    width: 100%;
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    white-space: normal;
  }
  .hero-ctas .btn-video {
    grid-column: 1 / -1;
  }
  .dash { transform: none; animation: none; }
  .dash:hover { transform: translateY(-4px); }
  .cv-upload { flex-wrap: wrap; }
  .transition-cards { grid-template-columns: 1fr 1fr; }
  .transition-card { padding: 36px 5vw; min-height: 280px; }
  .transition-card-quote { font-size: clamp(1rem, 3.5vw, 1.5rem); }
  .transition-title { padding: 48px 20px 28px; }
  .fc-mockup { transform: none; }
  .fc-mockup:hover { transform: translateY(-4px); }
  .fc-mockup-content { grid-template-columns: 1fr; }
  .fc-mockup-sidebar { display: none; }
  .fc-mockup-result { grid-template-columns: 1fr; gap: 14px; }
  .fc-mockup-result-num { display: none; }
  .fc-mockup-float-card { display: none; }
  .fc-mockup-body { padding: 20px; }
  .fc-mockup-browser-badge { display: none; }
  .transition-card-type {font-size: 9px !important;}
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .trust-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: 1fr; }
  .trust-image { aspect-ratio: 16 / 10; }
  .ai-profile-attrs { flex-direction: column; gap: 6px; }
  .fc-mockup-insight { display: none; }
   .transition-card-type {font-size: 9px !important;}
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .dash, .globe-card { animation: none; }
}


@media (min-width: 1025px){
  .course-find-steps{
    padding: 10px 100px;
  }
}