/* ===== CSS Variables ===== */
:root {
  --navy: #1B2137;
  --navy-light: #2A3352;
  --accent: #CF5B2E;
  --accent-light: #E8784A;
  --accent-dark: #A84823;
  --gold: #E8A44C;
  --gold-light: #F0C078;
  --white: #FFFFFF;
  --gray-50: #FAFAF9;
  --gray-100: #F5F4F2;
  --gray-200: #E7E5E2;
  --gray-300: #D4D1CC;
  --gray-400: #A3A09B;
  --gray-500: #6E6B66;
  --gray-600: #4A4844;
  --gray-700: #3A3835;
  --gray-800: #262524;
  --gray-900: #1A1918;
  --green: #2D8659;
  --red: #DC2626;
  --orange: #CF5B2E;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.05), 0 10px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 10px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
  background: none;
  border-bottom: none;
}

/* Dark opaque background once scrolling starts (content doesn't show through) */
.navbar.scrolling-dark {
  background: var(--navy);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

/* Full logo (shield + text as one image) - wider aspect ratio */
.logo-full {
  height: 56px;
}

.navbar.scrolled .logo-full {
  height: 46px;
}

/* White logo for dark backgrounds (hero, before scroll) */
.logo-white {
  display: block;
  filter: brightness(1.6) drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

/* Dark logo for light backgrounds (after scroll) */
.logo-dark {
  display: none;
  filter: none;
}

/* Logo text - clean two-line layout */
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  line-height: 1.15;
  margin-left: 2px;
}

.logo-text-top {
  display: flex;
  align-items: baseline;
}

.logo-text strong {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.logo-text .logo-text-med {
  font-size: 1.3rem;
  font-weight: 300;
  margin-left: 5px;
  font-style: italic;
}

.logo-text .logo-text-global {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* White text for dark backgrounds */
.logo-text-white {
  display: flex;
}
.logo-text-white strong { color: #fff; }
.logo-text-white .logo-text-med { color: #E8A44C; }
.logo-text-white .logo-text-global { color: rgba(255,255,255,0.55); }

/* Dark text for light backgrounds */
.logo-text-dark {
  display: none;
}
.logo-text-dark strong { color: var(--navy); }
.logo-text-dark .logo-text-med { color: var(--accent); }
.logo-text-dark .logo-text-global { color: var(--gray-400); }

.navbar.scrolled .logo-img {
  height: 46px;
}

.navbar.scrolled .logo-dark {
  display: block;
}

.navbar.scrolled .logo-white {
  display: none;
}

.navbar.scrolled .logo-text-dark {
  display: flex;
}

.navbar.scrolled .logo-text-white {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--navy);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 700;
}

.navbar.scrolled .nav-links a.active {
  color: var(--accent);
  font-weight: 700;
}

#auth-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-login:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

.navbar.scrolled .nav-login {
  border-color: var(--gray-300);
  color: var(--gray-700) !important;
}

.navbar.scrolled .nav-login:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: rgba(0,166,153,0.05);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8,145,178,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #3B2218 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(207,91,46,0.12);
  background: radial-gradient(circle, rgba(207,91,46,0.08) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(232,164,76,0.08);
  background: radial-gradient(circle, rgba(232,164,76,0.05) 0%, transparent 60%);
}

.hero-subpage {
  min-height: auto;
}

.hero-subpage .hero-content {
  padding: 100px 0 60px;
}

/* Page hero for dedicated subpages (mentors, community) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #3B2218 100%);
  text-align: center;
  color: var(--white);
  padding: 120px 0 60px;
}

.page-hero-short {
  padding: 100px 0 48px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero .hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero .section-tag {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ===== Stats Strip ===== */
/* ===== About Strip ===== */
.about-strip {
  background: linear-gradient(135deg, #141829, #1B2137);
  border-top: 1px solid rgba(207, 91, 46, 0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-strip-headline h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-strip-headline p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
}

.about-strip-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-point-accent {
  width: 3px;
  min-height: 100%;
  background: #E8784A;
  border-radius: 2px;
  flex-shrink: 0;
}

.about-point h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-point p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(207,91,46,0.06);
  pointer-events: none;
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(207,91,46,0.05);
  pointer-events: none;
}

.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light .section-sub {
  color: var(--white);
}

.section-header.light .section-sub {
  color: rgba(255,255,255,0.7);
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(207,91,46,0.1), rgba(207,91,46,0.04));
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header.light .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.credential-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.credential strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.credential span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 400px;
  justify-content: center;
  border: 2px dashed var(--gray-300);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

.about-image-placeholder span {
  font-weight: 600;
  color: var(--gray-600);
}

.placeholder-sub {
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: var(--gray-400) !important;
}

/* ===== Programs ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.program-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.program-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
}

.program-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.program-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.program-card > p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

.program-features {
  list-style: none;
  margin-bottom: 32px;
}

.program-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.program-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== LF3 Featured Partner Card ===== */
.lf3-feature-card {
  background: linear-gradient(135deg, #1B2137 0%, #2D3555 100%);
  border-radius: 20px;
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}

.lf3-feature-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(207, 91, 46, 0.12);
  border-radius: 50%;
}

.lf3-feature-tag {
  display: inline-block;
  background: rgba(207, 91, 46, 0.2);
  color: #E8784A;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.lf3-feature-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 4px;
  color: white;
}

.lf3-feature-uni {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 20px;
}

.lf3-feature-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}

.lf3-feature-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lf3-stat {
  text-align: center;
}

.lf3-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #E8784A;
}

.lf3-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.lf3-feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lf3-highlight {
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 600px) {
  .logo-text {
    display: none !important;
  }
  .logo-img {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .lf3-feature-card {
    padding: 32px 24px;
  }
  .lf3-feature-content h2 {
    font-size: 1.6rem;
  }
  .lf3-feature-stats {
    gap: 20px;
  }
  .lf3-feature-highlights {
    flex-direction: column;
  }
}

/* ===== Comparison Table ===== */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 600px;
}

.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.comparison-table thead th:first-child {
  background: transparent;
  border-radius: var(--radius) 0 0 0;
}

.comparison-table thead th.ct-highlight {
  background: var(--accent);
  font-size: 0.92rem;
}

.comparison-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  text-align: center;
}

.comparison-table tbody td.ct-label {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
}

.comparison-table tbody td.ct-highlight {
  background: rgba(207, 91, 46, 0.04);
}

.comparison-table .green {
  color: var(--green);
}

/* ===== Apply Stepper ===== */
.stepper {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 40px;
  max-width: 800px;
  padding: 0 20px;
}

.stepper-line {
  position: absolute;
  top: 22px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.stepper-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.stepper-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 2px 8px rgba(207, 91, 46, 0.25);
}

.stepper-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.stepper-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.apply-highlights {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.apply-details {
  max-width: 800px;
  margin: 32px auto 0;
}

.apply-detail-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.apply-detail-block summary {
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apply-detail-block summary::-webkit-details-marker {
  display: none;
}

.apply-detail-block summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.apply-detail-block[open] summary::after {
  content: '−';
}

.apply-detail-block[open] summary {
  border-bottom: 1px solid var(--gray-200);
}

.detail-content {
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.detail-content ul {
  list-style: none;
  padding: 0;
}

.detail-content ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.detail-content ul li:last-child {
  border-bottom: none;
}

.deadline-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}

.deadline-row:last-child {
  border-bottom: none;
}

.deadline-date {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  margin-right: 16px;
}

@media (max-width: 768px) {
  .stepper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
  }
  .stepper-line {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .stepper-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 12px 0;
  }
  .stepper-circle {
    flex-shrink: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .stepper-item h4 {
    margin-bottom: 4px;
  }
  .deadline-row {
    flex-direction: column;
    gap: 2px;
  }
  .deadline-date {
    margin-right: 0;
  }
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.cta-box h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Mentorship Process ===== */
.process-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  flex: 1;
}

.step-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  align-self: center;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonial-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
}

/* Testimonial quote and author styles for homepage */
.testimonial-quote {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-quote-icon {
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 8px;
  display: block;
}

.testimonial-quote p {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonials-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.contact-card h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.contact-direct {
  text-align: center;
  margin-top: 40px;
}

.contact-direct p {
  color: rgba(255,255,255,0.5);
}

.contact-direct a {
  color: var(--accent-light);
  font-weight: 600;
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo .logo-img {
  height: 40px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===== Animations ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    display: none;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-700) !important;
    font-size: 1rem;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .about-strip {
    padding: 48px 0;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 32px 24px;
  }
}

/* ===== Why Europe Box ===== */
.why-europe-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin-bottom: 48px;
}

.why-europe-box h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.why-item strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== USMLE Pathway ===== */
.pathway-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.pathway-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--green));
}

.pathway-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.pathway-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: -60px;
  z-index: 2;
}

.highlight-marker {
  background: linear-gradient(135deg, var(--green), var(--accent)) !important;
  color: var(--white) !important;
  border-color: var(--green) !important;
  font-size: 1.3rem;
}

.pathway-content {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  flex: 1;
}

.pathway-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.pathway-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.pathway-note {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(207,91,46,0.04), rgba(232,164,76,0.04));
  padding: 24px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(207,91,46,0.12);
}

.pathway-note p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== For Parents ===== */
.parent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.parent-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.parent-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.parent-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.parent-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-europe-box {
    padding: 32px 24px;
  }
  .pathway-timeline {
    padding-left: 50px;
  }
  .pathway-marker {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    left: -50px;
  }
  .pathway-timeline::before {
    left: 18px;
  }
  .parent-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Mentors ===== */
.mentors-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mentor-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.mentor-card:hover {
  box-shadow: var(--shadow-lg);
}

.mentor-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto;
  border: 4px solid var(--accent);
}

.mentor-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--accent);
}

.mentor-info h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.mentor-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.mentor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.mentor-tag {
  background: linear-gradient(135deg, rgba(207,91,46,0.08), rgba(207,91,46,0.03));
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.mentor-journey {
  margin-bottom: 16px;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.journey-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(207,91,46,0.08);
  border-radius: 6px;
  color: var(--accent, var(--accent, #CF5B2E));
}

.journey-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mentor-bio {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.mentor-specialties {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.mentor-specialties strong {
  color: var(--gray-700);
}

/* ===== Specialty Tracks ===== */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.specialty-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}

.specialty-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.specialty-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(207,91,46,0.08);
  border-radius: 50%;
  color: var(--accent, var(--accent, #CF5B2E));
}

.specialty-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialty-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.specialty-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

.specialty-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.specialty-note a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured-pricing {
  border: 2px solid var(--accent);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(207,91,46,0.15);
}

.pricing-card.featured-pricing:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 48px rgba(207,91,46,0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header-card {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-header-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.price-sub {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.88rem;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.4;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li.included {
  color: var(--gray-700);
}

.pricing-features li.included::before {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-features li.not-included {
  color: var(--gray-300);
  font-style: italic;
  font-size: 0.82rem;
}

.pricing-features li.not-included::before {
  content: '—';
  position: absolute;
  left: 6px;
  top: 10px;
  color: var(--gray-300);
}

.pricing-features li.bonus {
  color: var(--accent);
  font-weight: 600;
}

.pricing-features li.bonus::before {
  content: '✓';
  color: var(--accent);
}

.session-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 20px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(27,42,74,0.03), rgba(207,91,46,0.03));
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.session-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.4;
  text-align: left;
}

.session-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--gray-400);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== Pricing Divider ===== */
.pricing-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0 12px;
}

.pricing-divider::before,
.pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.pricing-divider span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-divider-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0 0 28px;
}

/* ===== Board Review Banner ===== */
/* ===== Board Review Card (inside pricing grid) ===== */
.pricing-card-board {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.pricing-card-board:hover {
  border-color: rgba(207, 91, 46, 0.4);
}

.pricing-card-board .pricing-header-card h3 {
  color: var(--white);
}

.pricing-card-board .pricing-header-card .price {
  color: var(--white);
}

.pricing-card-board .pricing-header-card .price-sub {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card-board .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card-board .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.board-review-packages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  flex: 1;
}

.board-pkg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.board-pkg:hover {
  background: rgba(255, 255, 255, 0.12);
}

.board-pkg-featured {
  background: rgba(207, 91, 46, 0.18);
  border-color: rgba(207, 91, 46, 0.4);
}

.board-pkg-featured:hover {
  background: rgba(207, 91, 46, 0.25);
}

.board-pkg-badge {
  position: absolute;
  top: -9px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 20px;
}

.board-pkg-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.board-pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.board-pkg-detail {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== Community ===== */
.community-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.community-content h2 {
  font-size: 1.8rem;
  margin: 12px 0;
}

.community-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.community-features {
  list-style: none;
  margin-bottom: 24px;
}

.community-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.community-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.community-count {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 8px;
}

.community-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 85%;
}

.bubble-1, .bubble-3 {
  background: var(--gray-100);
  color: var(--gray-700);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.bubble-2, .bubble-4 {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.blog-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(207,91,46,0.08), rgba(207,91,46,0.03));
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.blog-coming {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Pathways Grid ===== */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pathway-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.pathway-icon-big {
  font-size: 3rem;
  margin-bottom: 16px;
}

.pathway-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}

.pathway-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pathway-card > p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.pathway-highlights {
  list-style: none;
  margin-bottom: 28px;
}

.pathway-highlights li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.pathway-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pathway-cta {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.pathway-cta .arrow {
  transition: var(--transition);
  display: inline-block;
}

.pathway-card:hover .pathway-cta .arrow {
  transform: translateX(4px);
}

/* ===== Services Grid (Study Abroad) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207,91,46,0.08);
  border-radius: 10px;
  color: var(--accent, var(--accent, #CF5B2E));
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.7;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* ===== Mentorship Services Grid ===== */
.mentorship-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mentorship-service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.mentorship-service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mentorship-service h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.mentorship-service p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.7;
}

/* ===== Entrance Exam Section ===== */
.exam-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.exam-subjects {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.exam-subject {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.exam-subject h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.exam-subject p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.7;
}

.exam-features h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.exam-features ul {
  list-style: none;
}

.exam-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.exam-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.exam-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.coming-soon-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.exam-cta-box h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.exam-cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== Pricing Categories ===== */
.pricing-category {
  margin-bottom: 60px;
}

.pricing-category:last-of-type {
  margin-bottom: 0;
}

.pricing-category-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.pricing-category-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ===== Responsive - New Sections ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mentorship-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exam-content {
    grid-template-columns: 1fr;
  }
  .pricing-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .pathways-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .mentorship-services-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid-3,
  .pricing-grid-4 {
    grid-template-columns: 1fr !important;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .board-pkg-featured {
    margin-top: 4px;
  }
}

/* ===== Trustpilot ===== */
.trustpilot-box {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.trustpilot-box p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.trustpilot-box a {
  color: #00b67a;
}

/* ===== Responsive - New Sections ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mentor-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mentor-journey, .mentor-specialties, .mentor-bio {
    text-align: left;
  }
  .mentor-tags {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card.featured-pricing {
    transform: none;
  }
  .pricing-card.featured-pricing:hover {
    transform: translateY(-4px);
  }
  .community-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== How to Apply Section ===== */
.apply-steps {
  max-width: 800px;
  margin: 0 auto 48px;
}

.apply-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.apply-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.apply-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.apply-step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.apply-step-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Info grid: deadlines + exam details */
.apply-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.apply-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.apply-info-card:hover {
  box-shadow: var(--shadow-lg);
}

.apply-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.deadline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deadline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}

.deadline-row:last-child {
  border-bottom: none;
}

.deadline-date {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
  white-space: nowrap;
}

.deadline-desc {
  color: var(--gray-600);
  font-size: 0.9rem;
  text-align: right;
}

.apply-detail-list {
  list-style: none;
  padding: 0;
}

.apply-detail-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.apply-detail-list li:last-child {
  border-bottom: none;
}

.apply-detail-list li strong {
  color: var(--navy);
}

/* Exam-Free Admission */
.apply-examfree {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.apply-examfree h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.apply-examfree-sub {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.examfree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.examfree-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.examfree-item:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.examfree-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.examfree-item p {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* After Admission */
.apply-after {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.apply-after h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.after-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: 8px;
  transition: var(--transition);
}

.after-item:hover {
  background: var(--gray-100);
}

.after-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.after-item p {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== Application Intake Form ===== */
.apply-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.apply-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 0 100%;
}

.form-group label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.form-group label .required {
  color: var(--accent-light);
}

.form-group label .optional {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(207, 91, 46, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.form-message {
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.form-success {
  background: rgba(45, 134, 89, 0.15);
  border: 1px solid rgba(45, 134, 89, 0.3);
  color: #6ee7a0;
}

.form-error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
}

/* ===== Responsive: How to Apply & Form ===== */
@media (max-width: 768px) {
  .apply-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .apply-form {
    padding: 24px;
  }

  .deadline-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .deadline-desc {
    text-align: left;
  }

  .examfree-grid {
    grid-template-columns: 1fr;
  }

  .after-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 9999;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  max-width: 800px;
}
.cookie-banner a {
  color: var(--accent-light);
  text-decoration: underline;
}
.cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.cookie-banner .cookie-accept:hover {
  background: var(--accent-dark);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
}
