/* ── UNIPILGRIM GLOBAL DESIGN SYSTEM ── */
:root {
  --navy: #09142b;
  --navy-dark: #040915;
  --navy-light: #162447;
  --blue: #1d4ed8;
  --blue-hover: #1e40af;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.12);
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #b45309;
  --gold-glow: rgba(245, 158, 11, 0.15);
  --green: #059669;
  --green-light: #ecfdf5;
  --green-border: #a7f3d0;
  --purple: #7c3aed;
  --purple-light: #f5f3ff;
  --white: #ffffff;
  --gray-25: #fcfcfd;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius-xl: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 36px -4px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px -12px rgba(15, 23, 42, 0.22);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
nav {
  background: rgba(9, 20, 43, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 2rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav .logo-wrapper { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
nav .logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--gold), #d97706); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--navy); box-shadow: 0 2px 8px rgba(245,158,11,0.3); }
nav .logo { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
nav .logo span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul li a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: var(--transition); }
nav ul li a:hover { color: var(--white); }
nav .nav-cta { background: var(--gold); color: var(--navy-dark) !important; padding: 0.6rem 1.4rem; border-radius: var(--radius-sm); font-weight: 700 !important; box-shadow: 0 2px 10px rgba(245,158,11,0.3); }
nav .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
@media (max-width: 800px) {
  .hamburger { display: flex; }
  nav ul { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1.5rem 2rem 2.5rem; gap: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-xl); }
  nav ul.open { display: flex; }
}

/* ── COMMON BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(245,158,11,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4) !important;
  transform: translateY(-2px);
}
.btn-outline {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-outline:hover {
  border-color: var(--gray-500);
  color: var(--navy);
  background: var(--gray-50);
}

/* ── SECTIONS ── */
.section { padding: 90px 2rem; }
.section-alt { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.section-narrow { max-width: 1180px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .overline { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 0.75rem; display: block; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.7px; }
.section-header p { color: var(--gray-600); font-size: 1.1rem; max-width: 650px; margin: 0 auto; }

/* ── HERO SECTION (HOME) ── */
.home-hero {
  background: radial-gradient(circle at 50% 20%, #172a54 0%, var(--navy) 65%, var(--navy-dark) 100%);
  padding: 140px 2rem 90px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}
.home-hero-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 2; }
.badge-pill-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.home-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.home-hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-hero p.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 780px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .home-hero h1 { font-size: 2.3rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.hero-stat-item .stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); display: block; }
.hero-stat-item .stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }

/* ── HOW IT WORKS ── */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 850px) { .how-it-works-grid { grid-template-columns: 1fr; } }
.how-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  transition: var(--transition);
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.how-step-num {
  width: 44px; height: 44px;
  background: var(--blue-glow);
  color: var(--blue);
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.how-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; }
.how-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* ── PARTNER UNIVERSITY CARDS WITH LOGOS (NO COURSE TABLES) ── */
.partners-filter { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 2.75rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.55rem 1.35rem;
  border-radius: 99px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue-light); color: var(--blue); transform: translateY(-1px); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 4px 12px rgba(9,20,43,0.15); }

.partners-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}
.uni-showcase-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.uni-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.uni-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.uni-logo-box, .result-uni-logo {
  width: 72px;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
  min-height: 72px;
  max-height: 72px;
  flex: 0 0 72px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.uni-logo-box img, .result-uni-logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 56px !important;
  max-height: 56px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: auto;
}
.uni-card-info {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.uni-card-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.uni-card-info .uni-loc {
  font-size: 0.86rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.uni-badges-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.uni-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.uni-badge.london { background: var(--blue-glow); color: var(--blue); }
.uni-badge.russell { background: var(--navy); color: var(--white); }
.uni-badge.online { background: var(--gold-glow); color: var(--gold-dark); }
.uni-badge.public { background: var(--gray-100); color: var(--gray-700); }

.uni-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}
.uni-features-list li {
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.uni-features-list li .feat-icon { flex-shrink: 0; font-size: 1rem; }
.uni-features-list li strong { color: var(--gray-900); }

.uni-timetable-note {
  font-size: 0.76rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--gray-200);
}
.uni-card-cta {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
}
.uni-card-cta a, .uni-card-cta button {
  flex: 1;
  text-align: center;
  padding: 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.uni-card-cta .btn-inquire {
  background: var(--blue);
  color: var(--white);
  border: none;
}
.uni-card-cta .btn-inquire:hover { background: var(--blue-hover); }
.uni-card-cta .btn-wa {
  background: #25D366;
  color: var(--white);
  border: none;
}
.uni-card-cta .btn-wa:hover { background: #1eb956; }

/* ── SFE COMPLETE FUNDING HUB (HOME & RESULTS) ── */
.funding-hub {
  background: linear-gradient(135deg, #09142b 0%, #162447 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.funding-hub::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.funding-hub-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}
.funding-hub-header .hub-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 1rem;
}
.funding-hub-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.funding-hub-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.65;
}

.funding-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .funding-cards-grid { grid-template-columns: 1fr; } }

.funding-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.funding-card.highlight {
  background: linear-gradient(180deg, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.03) 100%);
  border-color: rgba(245,158,11,0.4);
}
.funding-card .f-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.funding-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.35rem; color: var(--white); }
.funding-card .f-amount { font-size: 1.85rem; font-weight: 800; color: var(--gold); margin-bottom: 0.75rem; }
.funding-card .f-amount.green { color: #34d399; }
.funding-card .f-desc { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.25rem; }
.funding-card ul { list-style: none; padding: 0; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.funding-card ul li { font-size: 0.85rem; color: rgba(255,255,255,0.8); padding: 0.35rem 0; display: flex; align-items: flex-start; gap: 0.5rem; }
.funding-card ul li::before { content: '✓'; color: var(--gold); font-weight: bold; }

/* SFE Comprehensive Breakdown Card (Results Page) */
.sfe-full-breakdown-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin: -35px auto 3rem;
  max-width: 1100px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10;
}
.sfe-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sfe-card-top h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #065f46;
}
.sfe-card-top p {
  color: #047857;
  font-size: 1rem;
  margin-top: 0.25rem;
}
.guarantee-badge {
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.funding-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .funding-tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .funding-tiers-grid { grid-template-columns: 1fr; } }
.funding-tier-box {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
}
.funding-tier-box.highlight {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.funding-tier-box .t-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #065f46;
  display: block;
}
.funding-tier-box .t-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.25rem;
  display: block;
}
.funding-tier-box .t-sub {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.35rem;
  display: block;
  line-height: 1.35;
}

.extra-grants-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.extra-grants-box h3 {
  font-size: 1.15rem;
  color: #78350f;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.extra-grants-box p {
  color: #92400e;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.grants-items-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 750px) { .grants-items-row { grid-template-columns: 1fr; } }
.grant-item {
  background: var(--white);
  border: 1px solid #fef3c7;
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.grant-item strong {
  display: block;
  color: #78350f;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
.grant-item span {
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.4;
  display: block;
}

/* ── QUIZ / STANDALONE QUESTIONNAIRE PAGE ── */
.quiz-page {
  min-height: 90vh;
  padding: 110px 2rem 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, #eff6ff 100%);
}
.quiz-container {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
@media (max-width: 600px) {
  .quiz-container { padding: 2rem 1.25rem; }
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.progress-text { font-size: 0.88rem; color: var(--gray-600); font-weight: 700; }
.flow-badge { font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 99px; background: var(--gray-100); color: var(--gray-700); }
.flow-badge.sfe { background: var(--green-light); color: var(--green); border: 1px solid var(--green-border); }
.flow-badge.intl { background: var(--blue-glow); color: var(--blue); }

.progress-bar {
  background: var(--gray-200);
  border-radius: 99px;
  height: 8px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step { display: none; }
.step.active { display: block; animation: stepFadeIn 0.3s ease-out; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.welcome-step { text-align: center; }
.welcome-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(9, 20, 43, 0.15);
}
.welcome-step h1 { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.5px; }
.welcome-step p.intro-lead { font-size: 1.05rem; color: var(--gray-600); line-height: 1.65; max-width: 620px; margin: 0 auto 2rem; }

.welcome-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
@media (max-width: 650px) { .welcome-features { grid-template-columns: 1fr; } }
.welcome-feat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.welcome-feat strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.3rem; }

.btn-start {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.1rem 2.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-start:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,0.45); }

.step-header { text-align: center; margin-bottom: 2.25rem; }
.step-header .step-icon {
  width: 64px; height: 64px;
  background: var(--gray-100);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1rem;
}
.step-header h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.5px; }
.step-header p { color: var(--gray-600); font-size: 1rem; max-width: 540px; margin: 0 auto; }

.options { display: flex; flex-direction: column; gap: 0.85rem; }
.options-multi { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 600px) { .options-multi { grid-template-columns: 1fr; } }

.option-btn {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: var(--transition);
  font-size: 1rem;
  text-align: left;
  width: 100%;
  position: relative;
}
.option-btn:hover { border-color: var(--blue-light); background: #f8fafc; transform: translateY(-1px); }
.option-btn.selected { border-color: var(--blue); background: #eff6ff; box-shadow: 0 0 0 1px var(--blue); }
.option-btn.selected::after {
  content: '✓';
  margin-left: auto;
  width: 26px; height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.option-btn .opt-icon { font-size: 1.6rem; min-width: 36px; text-align: center; }
.option-btn .opt-text { flex-grow: 1; }
.option-btn .opt-text strong { display: block; color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.option-btn .opt-text span { font-size: 0.85rem; color: var(--gray-600); line-height: 1.4; display: block; }
.option-btn.work-route { border-color: #fde68a; background: #fffdf5; }
.option-btn.work-route:hover { border-color: var(--gold); background: #fefce8; }
.option-btn.work-route.selected { border-color: var(--gold); background: #fef3c7; }
.option-btn.work-route.selected::after { background: var(--gold); color: var(--navy-dark); }

.sfe-details-card {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}
.sfe-details-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; }
.sfe-details-card ul { list-style: none; padding: 0; }
.sfe-details-card ul li { padding: 0.35rem 0; color: var(--gray-700); display: flex; align-items: flex-start; gap: 0.5rem; }
.sfe-details-card ul li::before { content: '•'; color: var(--blue); font-weight: bold; }

.country-search-wrap { margin-bottom: 0.75rem; }
.country-search-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}
.country-search-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
select.country-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  outline: none;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
select.country-select:focus { border-color: var(--blue); }

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  gap: 1rem;
}
.btn-back {
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-700);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-back:hover { border-color: var(--gray-600); color: var(--navy); background: var(--gray-50); }
.btn-next {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 2.2rem;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-next:hover:not(:disabled) { background: var(--blue-hover); transform: translateY(-1px); }
.btn-next:disabled { background: var(--gray-300); color: var(--gray-500); cursor: not-allowed; box-shadow: none; }

/* ── RESULTS PAGE SPECIFIC STYLES ── */
.results-hero-header {
  background: radial-gradient(circle at 50% 20%, #172a54 0%, var(--navy) 65%, var(--navy-dark) 100%);
  padding: 120px 2rem 50px;
  color: var(--white);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.results-hero-content {
  max-width: 860px;
  margin: 0 auto;
}
.results-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.results-hero-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 1rem;
}
.results-hero-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.profile-tags-summary {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.profile-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.matched-section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.matched-section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.matched-section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.results-cards-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.result-institution-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.result-institution-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}
.result-institution-card.top-rank {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 36px rgba(245,158,11,0.18);
}
.top-match-badge {
  position: absolute;
  top: -14px; left: 28px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.result-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.result-uni-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
}
.result-uni-title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.result-uni-title h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.result-uni-title .loc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-top: 0.2rem;
}
.match-score-pill {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}

.result-pills-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--gray-700);
}
.pill.highlight { background: #e0e7ff; color: #3730a3; }
.pill.sfe { background: #ecfdf5; color: #065f46; font-weight: 700; }
.pill.work { background: #fef3c7; color: #92400e; }

.result-courses-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.result-courses-box h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.65rem;
}
.result-courses-box ul { list-style: none; padding: 0; }
.result-courses-box ul li {
  padding: 0.45rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.result-courses-box ul li:last-child { border-bottom: none; }
.result-courses-box ul li .deg-lvl {
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

.timetable-disclaimer-note {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.45;
  background: #f1f5f9;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.result-actions-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-chat-advisor {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.btn-chat-advisor:hover { background: var(--blue-hover); }

/* ── ADMISSIONS LIVE CHAT WIDGET ── */
.advisor-chat-launcher {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.advisor-teaser {
  background: var(--white);
  color: var(--gray-800);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  font-size: 0.88rem;
  border: 1px solid var(--gray-200);
  max-width: 290px;
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer; transition: var(--transition);
}
.advisor-teaser:hover { transform: translateY(-2px); }
.advisor-trigger-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 99px;
  padding: 8px 18px 8px 10px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(9,20,43,0.3);
  transition: var(--transition);
}
.advisor-trigger-btn:hover { background: #11234a; transform: translateY(-2px); }
.advisor-avatar-wrap { position: relative; width: 44px; height: 44px; }
.advisor-avatar {
  width: 100%; height: 100%; border-radius: 50%; background: #e2e8f0;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.advisor-online-badge {
  position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; background: #10b981; border: 2px solid var(--navy); border-radius: 50%;
}
.advisor-meta { text-align: left; }
.advisor-name { font-weight: 700; font-size: 0.92rem; display: block; line-height: 1.2; }
.advisor-status { font-size: 0.74rem; color: #10b981; font-weight: 600; display: block; }

.advisor-chat-window {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  width: 395px; height: 600px;
  max-width: calc(100vw - 32px); max-height: calc(100vh - 48px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  z-index: 1001;
  flex-direction: column;
  overflow: hidden;
  animation: chatOpen 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.advisor-chat-window.open { display: flex; }
@keyframes chatOpen {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-header-avatar {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.chat-header-avatar span.dot {
  position: absolute; bottom: 0; right: 0; width: 11px; height: 11px; background: #10b981; border: 2px solid var(--navy); border-radius: 50%;
}
.chat-header-text h4 { font-size: 0.95rem; font-weight: 700; line-height: 1.2; display: flex; align-items: center; gap: 0.35rem; }
.chat-header-text p { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.verified-badge { font-size: 0.75rem; color: var(--gold); }
.leader-badge { font-size: 0.75rem; background: var(--gold); color: var(--navy-dark); padding: 1px 6px; border-radius: 4px; font-weight: 800; }

.chat-header-actions { display: flex; gap: 0.4rem; }
.chat-header-btn {
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  padding: 4px 8px; border-radius: 6px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.chat-header-btn:hover { background: rgba(255,255,255,0.2); }

.chat-messages {
  flex: 1; padding: 1.25rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; background: #f8fafc;
}
.chat-bubble {
  max-width: 84%; padding: 0.85rem 1.1rem; border-radius: 16px; font-size: 0.92rem; line-height: 1.5; position: relative; word-break: break-word;
}
.chat-bubble.advisor {
  background: var(--white); color: var(--gray-800); align-self: flex-start; border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.chat-bubble.advisor.leader {
  border-color: #fde68a; background: #fffdf5;
}
.advisor-bubble-author {
  font-size: 0.72rem; font-weight: 700; color: var(--blue); display: block; margin-bottom: 0.25rem;
}
.chat-bubble.advisor.leader .advisor-bubble-author { color: var(--gold-dark); }

.chat-bubble.user {
  background: var(--blue); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-time { font-size: 0.68rem; margin-top: 0.35rem; opacity: 0.6; display: block; }
.chat-bubble.user .chat-time { text-align: right; color: rgba(255,255,255,0.8); }

.chat-transfer-notice {
  font-size: 0.78rem; color: #92400e; background: #fef3c7; border: 1px solid #fde68a;
  border-radius: 8px; padding: 0.5rem 0.75rem; text-align: center; margin: 0.25rem 0;
}

.chat-chips { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.5rem; }
.chat-chip {
  background: var(--white); border: 1px solid #bfdbfe; color: var(--blue); padding: 0.45rem 0.8rem;
  border-radius: 12px; font-size: 0.82rem; font-weight: 600; text-align: left; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.chat-chip:hover { background: #eff6ff; border-color: var(--blue); transform: translateX(2px); }

.typing-indicator {
  display: none; align-self: flex-start; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; border-bottom-left-radius: 4px; padding: 0.65rem 0.95rem; gap: 6px; align-items: center;
}
.typing-indicator.active { display: flex; }
.typing-dot {
  width: 6px; height: 6px; background: var(--gray-400); border-radius: 50%; animation: typingPulse 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingPulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; background: var(--blue); }
}

.chat-input-area {
  padding: 0.75rem 0.9rem; background: var(--white); border-top: 1px solid var(--gray-200); display: flex; flex-direction: column; gap: 0.45rem;
}
.chat-quick-actions {
  display: flex; gap: 0.4rem; overflow-x: auto; padding-bottom: 2px; -webkit-overflow-scrolling: touch;
}
.chat-quick-actions::-webkit-scrollbar { display: none; }
.chat-quick-btn {
  background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-700);
  padding: 0.3rem 0.65rem; border-radius: 99px; font-size: 0.76rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: var(--transition); display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0;
}
.chat-quick-btn:hover {
  background: #eff6ff; border-color: var(--blue-light); color: var(--blue);
}
.chat-quick-btn.leader-quick {
  background: #fffbeb; border-color: #fde68a; color: #b45309;
}
.chat-quick-btn.leader-quick:hover {
  background: #fef3c7; border-color: var(--gold); color: #92400e;
}
.chat-input-form { display: flex; gap: 0.45rem; align-items: center; position: relative; }
.chat-attach-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); color: var(--gray-700);
  border: 1px solid var(--gray-300); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: var(--transition);
}
.chat-attach-btn:hover { background: #eff6ff; color: var(--blue); border-color: var(--blue-light); transform: scale(1.05); }
.chat-input {
  flex: 1; padding: 0.7rem 0.95rem; border: 1px solid var(--gray-300); border-radius: 99px;
  font-size: 0.88rem; font-family: inherit; outline: none; transition: var(--transition);
}
.chat-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.chat-send-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: var(--white);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; transition: var(--transition);
}
.chat-send-btn:hover { background: var(--blue-hover); transform: scale(1.05); }

/* Document Upload Attachment Card */
.chat-doc-card {
  display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 12px; padding: 0.55rem 0.8rem; margin: 0.25rem 0;
}
.chat-bubble.advisor .chat-doc-card {
  background: #f8fafc; border-color: #e2e8f0;
}
.chat-doc-icon { font-size: 1.6rem; flex-shrink: 0; }
.chat-doc-info { display: flex; flex-direction: column; overflow: hidden; flex: 1; }
.chat-doc-name {
  font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chat-doc-meta { font-size: 0.72rem; opacity: 0.8; }
.chat-doc-badge {
  font-size: 0.7rem; font-weight: 700; background: #10b981; color: #ffffff;
  padding: 2px 7px; border-radius: 99px; flex-shrink: 0;
}
.shift-badge {
  font-size: 0.7rem; font-weight: 600; background: rgba(255,255,255,0.15);
  color: #93c5fd; padding: 1px 7px; border-radius: 99px; margin-left: 0.35rem; display: inline-block;
}
.chat-callback-card {
  background: #f8fafc; border: 1px solid #cbd5e1; border-radius: 14px; padding: 0.9rem; margin-top: 0.6rem;
}
.chat-callback-card h5 {
  margin: 0 0 0.5rem; font-size: 0.88rem; color: var(--navy); display: flex; align-items: center; gap: 5px;
}
.chat-callback-card .callback-fields {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.chat-callback-card input, .chat-callback-card select {
  width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--gray-300); border-radius: 8px;
  font-size: 0.84rem; font-family: inherit; background: var(--white); box-sizing: border-box;
}
.chat-callback-card input:focus, .chat-callback-card select:focus {
  border-color: var(--blue); outline: none; box-shadow: 0 0 0 2px var(--blue-glow);
}
.chat-callback-submit-btn {
  background: var(--blue); color: var(--white); border: none; padding: 0.55rem;
  border-radius: 8px; font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: var(--transition);
}
.chat-callback-submit-btn:hover { background: var(--blue-hover); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 1.15rem; font-weight: 700; }
footer p, footer a { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
footer a { text-decoration: none; transition: var(--transition); }
footer a:hover { color: var(--gold); }
.footer-bottom { max-width: 1180px; margin: 2.5rem auto 0; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
