/* ══════════════════════════════════════════════════
   FindScholarshipForMe — style.css FIXED
   Original Antigravity structure preserved
   + Landing.css variables added
══════════════════════════════════════════════════ */

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

:root {
  /* ── Original variables ── */
  --navy:       #0b0f1a;
  --navy-2:     #111827;
  --navy-3:     #1c2537;
  --blue:       #3b82f6;
  --blue-2:     #2563eb;
  --blue-glow:  rgba(59,130,246,0.15);
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --tint:       #f1f5f9;
  --gray-1:     #e2e8f0;
  --gray-2:     #94a3b8;
  --gray-3:     #64748b;
  --gray-4:     #475569;
  --text:       #0f172a;
  --text-2:     #334155;
  --text-3:     #64748b;
  --green:      #10b981;
  --green-bg:   #ecfdf5;
  --amber:      #f59e0b;
  --amber-bg:   #fffbeb;
  --red:        #ef4444;
  --red-bg:     #fef2f2;
  --r-sm:       6px;
  --r-md:       10px;
  --r-lg:       14px;
  --r-xl:       20px;
  --r-full:     9999px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15);

  /* ── Antigravity variables (landing.css needs these) ── */
  --bg-dark:        #0b0f1a;
  --bg-darker:      #070a12;
  --color-primary:  #3b82f6;
  --color-accent:   #10b981;
  --color-danger:   #ef4444;
  --color-warning:  #f59e0b;
  --text-main:      #ffffff;
  --text-muted:     rgba(255,255,255,0.5);
  --text-subtle:    rgba(255,255,255,0.3);
  --border-color:   rgba(255,255,255,0.08);
  --glass-bg:       rgba(255,255,255,0.04);
  --glass-blur:     blur(12px);
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      14px;
  --radius-xl:      20px;
  --font-heading:   'Sora', sans-serif;
  --font-body:      'DM Sans', sans-serif;
}

/* ── Base ──────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; color: var(--text-main); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
p  { color: rgba(255,255,255,0.6); line-height: 1.7; }
a  { color: var(--color-primary); text-decoration: none; }
img { max-width: 100%; }
input, select, textarea, button { font-family: 'DM Sans', sans-serif; }
.pg-hidden { display: none !important; }

/* ── Layout ──────────────────────────────────── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5.5rem 0; position: relative; z-index: 1; }

/* ── ORB BACKGROUND ──────────────────────────── */
.orb-container { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(37,99,235,.55) 0%, transparent 70%);
  top: -250px; left: -200px;
  animation: orbMove1 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,116,144,.4) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orbMove2 16s ease-in-out infinite;
}
@keyframes orbMove1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-60px,40px) scale(1.1)} }
@keyframes orbMove2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(50px,-40px) scale(.9)} }

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(7,10,18,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all .35s ease;
}
.nav-container {
  display: flex; align-items: center; gap: 1.5rem;
  height: 64px;
}
.logo {
  font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-main); text-decoration: none;
  letter-spacing: -.02em; flex-shrink: 0; cursor: pointer;
}
.logo svg { width: 22px; height: 22px; color: var(--color-primary); }
.nav-menu {
  display: flex; list-style: none; gap: 2px; margin-left: auto;
}
.nav-menu li a, .nav-link {
  padding: 6px 12px; font-size: 13.5px; color: rgba(255,255,255,.6);
  border-radius: 8px; transition: all .15s; white-space: nowrap; text-decoration: none; display: block;
}
.nav-menu li a:hover, .nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: none; cursor: pointer;
  align-items: center; justify-content: center; color: #fff; margin-left: auto;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  font-family: 'Sora', sans-serif; border-radius: 10px;
  border: none; cursor: pointer; transition: all .2s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--color-primary); color: #fff;
}
.btn-primary:hover { background: var(--blue-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,.35); }
.btn-secondary {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.8);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1;
  min-height: 92vh; display: flex; align-items: center;
  padding: 100px 0 60px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content {}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 99px;
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.7);
}
.badge-primary { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.3); color: #93c5fd; }
.badge-warning { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.3); color: #fcd34d; }
.text-gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGrad 4s linear infinite;
}
@keyframes shimmerGrad { 0%{background-position:-200% center} 100%{background-position:200% center} }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.hero p   { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 2rem; max-width: 500px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1rem; }
.hero-visual { position: relative; }
.hero-visual-inner {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ══════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .sub {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--color-primary); text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .875rem; }
.section-header p  { font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   GLASS PANELS
══════════════════════════════════════════════ */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: border-color .25s, transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.glass-panel:hover {
  border-color: rgba(59,130,246,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(59,130,246,.15);
  transform: translateY(-4px);
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.step-card  { padding: 1.75rem 1.5rem; position: relative; }
.step-number {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,.05); line-height: 1; margin-bottom: .75rem;
}
.step-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--color-primary);
  transition: all .25s;
}
.step-card:hover .step-icon { background: rgba(59,130,246,.2); transform: scale(1.1); }
.step-card h3 { margin-bottom: .5rem; font-size: 1rem; }
.step-card p  { font-size: 13.5px; }

/* ══════════════════════════════════════════════
   COUNTRIES
══════════════════════════════════════════════ */
.countries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.country-card {
  padding: 1.375rem 1.25rem; cursor: pointer;
  text-align: center; position: relative; overflow: hidden;
}
.country-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,.06), rgba(16,185,129,.04));
  opacity: 0; transition: opacity .3s; border-radius: inherit;
}
.country-card:hover::before { opacity: 1; }
.country-flag-container {
  font-size: 2.5rem; margin-bottom: .75rem; display: block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.country-card:hover .country-flag-container { transform: scale(1.2) rotate(-5deg); }
.country-card h3 { font-size: 14px; margin-bottom: .375rem; }
.country-card p  { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.5; }

/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.feature-card  { padding: 1.625rem; position: relative; overflow: hidden; }
.feature-card::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  transition: left .4s ease;
}
.feature-card:hover::after { left: 100%; }
.feature-card.locked { border-color: rgba(245,158,11,.15); }
.feature-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); transition: transform .25s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-card h3 { margin-bottom: .5rem; font-size: 1rem; }
.feature-card p  { font-size: 13.5px; line-height: 1.7; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testimonial-card  { padding: 1.75rem; position: relative; overflow: hidden; }
.testimonial-card::after {
  content: '"'; position: absolute; bottom: -15px; right: 20px;
  font-size: 110px; font-family: Georgia,serif;
  color: rgba(59,130,246,.06); line-height: 1; pointer-events: none;
}
.rating { font-size: 15px; margin-bottom: 1rem; letter-spacing: .05em; }
.testimonial-card p { font-size: 14px; font-style: italic; line-height: 1.75; margin-bottom: 1.25rem; color: rgba(255,255,255,.7); }
.user-profile { display: flex; align-items: center; gap: 10px; }
.user-avatar  { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#3b82f6,#10b981); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.user-info h4   { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.user-info span { font-size: 11.5px; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.125rem 0; font-size: 15px; font-weight: 500;
  font-family: 'Sora', sans-serif; background: none; border: none;
  cursor: pointer; text-align: left; color: var(--text-main); gap: 1rem;
  transition: color .2s;
}
.faq-trigger:hover { color: var(--color-primary); }
.faq-trigger svg { flex-shrink: 0; transition: transform .3s ease; color: rgba(255,255,255,.4); }
.faq-item.active .faq-trigger svg { transform: rotate(180deg); }
.faq-item.active { border-color: rgba(59,130,246,.3); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,1,.36,1); }
.faq-item.active .faq-content { max-height: 200px; }
.faq-content-inner { padding: 0 0 1.25rem; font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-form-container { padding: 2rem; max-width: 580px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); }
.form-control {
  width: 100%; padding: 11px 14px; font-size: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-color);
  border-radius: 10px; color: var(--text-main);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: rgba(59,130,246,.5); box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
.form-control::placeholder { color: rgba(255,255,255,.25); }
textarea.form-control { min-height: 100px; resize: vertical; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border-color); padding: 3rem 0 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.7; margin-top: .75rem; max-width: 280px; }
.footer-column h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: .875rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--color-primary); }
.social-links { display: flex; gap: 8px; margin-top: 1rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.social-icon:hover { background: rgba(59,130,246,.15); color: var(--color-primary); border-color: rgba(59,130,246,.3); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--border-color); font-size: 13px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .5rem; }

/* ══════════════════════════════════════════════
   AUTH MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-overlay.active .modal-box { animation: modalIn .35s cubic-bezier(.34,1.2,.64,1) both; }
@keyframes modalIn { from{opacity:0;transform:translateY(30px) scale(.96)} to{opacity:1;transform:translateY(0) scale(1)} }
.modal-box {
  position: relative; border-radius: 20px; padding: 2rem;
  max-width: 420px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .15s;
}
.modal-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.modal-tabs { display: flex; gap: 4px; margin-bottom: 1.5rem; background: rgba(255,255,255,.04); border-radius: 10px; padding: 4px; }
.modal-tab-btn {
  flex: 1; padding: 8px; font-size: 13px; font-weight: 500;
  border: none; border-radius: 7px; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.5);
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.modal-tab-btn.active { background: rgba(59,130,246,.2); color: #93c5fd; }
.social-auth { margin-bottom: 1rem; }
.btn-social {
  width: 100%; padding: 12px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--border-color); border-radius: 10px;
  background: rgba(255,255,255,.04); color: var(--text-main);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 10px; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.btn-social:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-1px); }
.auth-separator { display: flex; align-items: center; gap: 12px; margin: 1rem 0; font-size: 11px; color: rgba(255,255,255,.3); font-weight: 600; letter-spacing: .08em; }
.auth-separator::before, .auth-separator::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }
.auth-form { display: none; }
.auth-form.active { display: block; }
#auth-error-msg { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2); border-radius: 8px; padding: 10px 14px; }

/* ══════════════════════════════════════════════
   DASHBOARD (keeping original styles)
══════════════════════════════════════════════ */
.agent-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.agent-sidebar { display: flex; flex-direction: column; border-right: 1px solid var(--border-color); background: rgba(0,0,0,.3); position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.as-top { padding: 16px; border-bottom: 1px solid var(--border-color); }
.as-av  { width: 32px; height: 32px; border-radius: 50%; background: rgba(59,130,246,.2); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.as-nav { flex: 1; padding: 10px 8px; }
.as-section { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .08em; padding: 6px 8px 4px; }
.as-item { width: 100%; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,.5); background: none; border: none; cursor: pointer; text-align: left; transition: all .15s; margin-bottom: 1px; font-family: 'DM Sans', sans-serif; }
.as-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.as-item.active { background: rgba(59,130,246,.12); color: #93c5fd; font-weight: 500; }
.as-item i { font-size: 16px; flex-shrink: 0; }
.as-bottom { padding: 12px; border-top: 1px solid var(--border-color); }
.as-prog-track { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin: 6px 0; }
.as-prog-fill  { height: 100%; background: var(--color-primary); border-radius: 2px; transition: width .6s ease; }
.as-prog-pct   { font-size: 11px; color: var(--color-primary); font-weight: 500; }

.agent-main { display: flex; flex-direction: column; min-height: 100vh; }
.agent-topbar { padding: 14px 1.5rem; border-bottom: 1px solid var(--border-color); background: rgba(7,10,18,.8); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10; }
.atb-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; }
.atb-sub   { font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 1px; }
.agent-tab { display: none; flex: 1; overflow-y: auto; }
.agent-tab.active { display: block; }

.dash-body { padding: 1.5rem 1.5rem 3rem; max-width: 820px; }
.dash-greeting { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.dash-sub  { font-size: 13.5px; color: rgba(255,255,255,.4); margin-bottom: 1.75rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 1.75rem; }
.dstat { background: rgba(255,255,255,.04); border: 1px solid var(--border-color); border-radius: 16px; padding: 1rem 1.25rem; transition: all .2s; }
.dstat:hover { border-color: rgba(59,130,246,.3); transform: translateY(-2px); }
.dstat-v { font-family: 'Sora', sans-serif; font-size: 1.875rem; font-weight: 700; color: #fff; }
.dstat-l { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 3px; }
.dash-section-hdr { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: .875rem; }
.task-list { border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.02); }
.t-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--border-color); font-size: 13px; transition: background .1s; }
.t-item:last-child { border-bottom: none; }
.t-item:hover { background: rgba(255,255,255,.03); }
.t-check { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid rgba(255,255,255,.2); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .15s; }
.t-check.done { background: var(--green); border-color: var(--green); }
.t-check.done i { font-size: 11px; color: #fff; }
.t-text { flex: 1; color: rgba(255,255,255,.8); }
.t-text.done { text-decoration: line-through; color: rgba(255,255,255,.3); }
.t-badge { font-size: 11px; padding: 2px 9px; border-radius: 99px; font-weight: 500; white-space: nowrap; }
.t-urgent { background: rgba(239,68,68,.12); color: #f87171; }
.t-soon   { background: rgba(245,158,11,.12); color: #fbbf24; }
.t-ok     { background: rgba(16,185,129,.12); color: #34d399; }
.schol-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sc-card { border: 1px solid var(--border-color); border-radius: 12px; padding: 12px 14px; transition: all .15s; background: rgba(255,255,255,.02); }
.sc-card:hover { border-color: rgba(59,130,246,.3); box-shadow: 0 0 0 2px rgba(59,130,246,.1); }
.sc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.sc-name  { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9); line-height: 1.3; }
.sc-match { font-size: 11px; padding: 2px 8px; border-radius: 99px; background: rgba(16,185,129,.12); color: #34d399; font-weight: 600; white-space: nowrap; }
.sc-country { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.sc-dl { font-size: 11px; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 4px; }

.chat-shell { display: flex; flex-direction: column; height: calc(100vh - 65px); }
.chat-msgs  { flex: 1; padding: 1.25rem; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; }
.chat-msg   { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-av   { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.chat-av.agent { background: rgba(59,130,246,.2); color: #60a5fa; }
.chat-av.user  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
.chat-bw { max-width: 78%; }
.chat-bubble { padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.65; white-space: pre-wrap; word-wrap: break-word; }
.chat-msg.agent .chat-bubble { background: rgba(255,255,255,.05); border: 1px solid var(--border-color); color: rgba(255,255,255,.85); border-bottom-left-radius: 4px; }
.chat-msg.user  .chat-bubble { background: rgba(59,130,246,.2); color: rgba(255,255,255,.9); border-bottom-right-radius: 4px; }
.chat-time { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 4px; }
.chat-msg.user .chat-time { text-align: right; }
.t-dots { display: flex; gap: 4px; align-items: center; padding: 4px 2px; }
.t-dot  { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); animation: tdot 1s ease-in-out infinite; }
.t-dot:nth-child(2){animation-delay:.15s} .t-dot:nth-child(3){animation-delay:.3s}
@keyframes tdot { 0%,60%,100%{transform:scale(.7);opacity:.4} 30%{transform:scale(1);opacity:1} }
.chat-suggestions { padding: .75rem 1.25rem; display: flex; flex-wrap: wrap; gap: 7px; border-top: 1px solid var(--border-color); }
.chat-suggestions button { padding: 5px 13px; font-size: 12px; border: 1px solid var(--border-color); border-radius: 99px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.6); cursor: pointer; transition: all .15s; }
.chat-suggestions button:hover { background: rgba(255,255,255,.08); color: #fff; }
.chat-input-bar { padding: .875rem 1.25rem; border-top: 1px solid var(--border-color); display: flex; gap: 8px; align-items: flex-end; background: rgba(7,10,18,.8); backdrop-filter: blur(12px); }
.chat-input-bar textarea { flex: 1; font-size: 14px; padding: 10px 13px; border: 1px solid var(--border-color); border-radius: 12px; resize: none; min-height: 42px; max-height: 110px; background: rgba(255,255,255,.04); color: #fff; transition: border-color .15s; }
.chat-input-bar textarea:focus { outline: none; border-color: rgba(59,130,246,.5); }
.chat-send { width: 40px; height: 40px; border-radius: 12px; background: var(--color-primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .15s; }
.chat-send:hover { background: var(--blue-2); transform: scale(1.05); }
.chat-send i { font-size: 17px; }

.profile-body { padding: 1.5rem; max-width: 620px; }
.pf-card  { border: 1px solid var(--border-color); border-radius: 16px; padding: 1.25rem 1.5rem; margin-bottom: 12px; background: rgba(255,255,255,.03); }
.pf-hdr   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pf-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; }
.pf-edit  { font-size: 13px; color: var(--color-primary); cursor: pointer; }
.pf-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pf-label { font-size: 11px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.pf-value { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); }

/* Mob menu btn */
.mob-menu-btn { display: none; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: none; cursor: pointer; font-size: 18px; align-items: center; justify-content: center; color: #fff; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual  { max-width: 600px; margin: 0 auto; }
  .steps-grid   { grid-template-columns: repeat(2,1fr); }
  .countries-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid  { grid-template-columns: repeat(2,1fr); }
  .agent-shell  { grid-template-columns: 1fr; }
  .agent-sidebar { display: none; position: fixed; z-index: 100; width: 260px; height: 100vh; left: 0; top: 0; box-shadow: 0 0 60px rgba(0,0,0,.6); }
  .agent-sidebar.open { display: flex; }
  .mob-menu-btn { display: flex; }
  .schol-list   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width:768px) {
  .nav-menu    { display: none; }
  .nav-toggle  { display: flex; }
  .hero        { padding: 80px 0 50px; min-height: auto; }
  .hero h1     { font-size: 2.1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dash-stats  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-menu.nav-open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(7,10,18,.98); backdrop-filter: blur(20px); padding: 1rem; border-bottom: 1px solid var(--border-color); z-index: 199; gap: 4px; }
}
@media (max-width:640px) {
  .hero h1      { font-size: 1.85rem; }
  .countries-grid { grid-template-columns: 1fr 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .dash-stats     { grid-template-columns: 1fr; }
  .hero-ctas      { flex-direction: column; }
  .chat-bw        { max-width: 88%; }
  .pf-grid        { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
