@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --red: #B5121B;
  --red-dark: #8a0e15;
  --red-light: #d4343d;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --charcoal: #1a1a1a;
  --black: #0a0a0a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button { border: none; cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-link { color: var(--gray-800); }
.navbar.scrolled .nav-logo { color: var(--gray-900); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
.nav-logo span { color: var(--red); }
/* Logo wrap */
.nav-logo-wrap { display: inline-flex; align-items: center; height: 48px; }
.navbar.scrolled .nav-logo-wrap { height: 42px; }
/* Both logo images */
.nav-logo-img { height: 100%; width: auto; }
/* Default (dark bg): show light, hide dark */
.nav-logo-img--light { display: block !important; }
.nav-logo-img--dark { display: none !important; }
/* Scrolled (light bg): show dark, hide light */
.navbar.scrolled .nav-logo-img--light { display: none !important; }
.navbar.scrolled .nav-logo-img--dark { display: block !important; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.3px; transition: all 0.3s var(--ease); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--red); }
.nav-cta {
  padding: 10px 24px; background: var(--red); color: var(--white); border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px;
  transition: all 0.3s var(--ease); border: 1px solid transparent;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(181,18,27,0.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.navbar.scrolled .hamburger span { background: var(--gray-800); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(26,26,26,0.6) 50%, rgba(181,18,27,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; padding: 0 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--red-light); }
.hero p { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto 40px; line-height: 1.8; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.3px;
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,18,27,0.35); }
.btn-outline {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn-dark { background: var(--gray-900); color: var(--white); }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scroll-anim 2s ease infinite; }
@keyframes scroll-anim { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── SECTIONS ── */
.section { padding: 120px 0; }
.section-dark { background: var(--gray-900); color: var(--white); }
.section-light { background: var(--gray-50); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 20px;
}
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); max-width: 600px; line-height: 1.8; font-weight: 300; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-subtitle { max-width: none; margin-bottom: 32px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-card {
  padding: 28px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--gray-200); transition: all 0.4s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.stat-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.5px; }
.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-image-accent {
  position: absolute; bottom: -20px; right: -20px; width: 180px; height: 180px;
  border: 3px solid var(--red); border-radius: var(--radius-lg); z-index: -1;
}

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  padding: 36px 28px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(181,18,27,0.06);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--red); font-size: 1.4rem; transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ── FOUNDER ── */
.founder-section { background: linear-gradient(135deg, var(--gray-900), var(--charcoal)); }
.founder-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
.founder-image-frame {
  position: relative; width: 100%; max-width: 380px; border-radius: 16px; overflow: hidden;
  margin: 0 auto;
}
.founder-image-frame::after {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(to bottom, transparent 60%, var(--charcoal) 100%);
  pointer-events: none;
}
.founder-image-frame img { width: 100%; height: auto; display: block; border-radius: 16px; filter: grayscale(15%); }
.founder-image-ring {
  position: absolute; inset: -2px; border-radius: 18px;
  border: 1px solid rgba(181,18,27,0.25); pointer-events: none;
}

.founder-content h3 { font-size: 0.8rem; font-weight: 600; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.founder-content h2 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -0.5px; }
.founder-content .founder-title { font-size: 1rem; color: var(--gray-400); margin-bottom: 24px; }
.founder-content p { color: var(--gray-400); line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.founder-achievements { display: flex; gap: 32px; flex-wrap: wrap; }
.achievement { display: flex; align-items: center; gap: 12px; }
.achievement-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(181,18,27,0.15); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; }
.achievement span { color: var(--gray-300); font-size: 0.85rem; font-weight: 500; }

/* ── PAGE HEROES ── */
.page-hero {
  position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; text-align: center;
}
.page-hero .hero-overlay { background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(26,26,26,0.65)); }
.page-hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-weight: 300; }

/* ── FEATURE CARDS ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  padding: 40px 32px; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--gray-200); transition: all 0.4s var(--ease); position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.feature-card-number { font-size: 3rem; font-weight: 900; color: rgba(181,18,27,0.08); line-height: 1; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: process; }
.process-step { text-align: center; position: relative; counter-increment: process; }
.process-step::before {
  content: counter(process, decimal-leading-zero); display: block;
  font-size: 3.5rem; font-weight: 900; color: rgba(181,18,27,0.08); margin-bottom: 16px; line-height: 1;
}
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }
.process-connector { position: absolute; top: 30px; right: -16px; width: 32px; height: 1px; background: var(--gray-300); }
.process-step:last-child .process-connector { display: none; }

/* ── PARTNERS ── */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.partner-card {
  padding: 40px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center;
  min-height: 120px; transition: all 0.4s var(--ease); filter: grayscale(1); opacity: 0.6;
}
.partner-card:hover { filter: grayscale(0); opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.partner-card span { font-size: 1rem; font-weight: 700; color: var(--gray-600); letter-spacing: 0.5px; }

/* ── CONTACT ── */
.contact-section { background: linear-gradient(135deg, var(--gray-900), var(--black)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-400); letter-spacing: 0.5px; margin-bottom: 8px; text-transform: uppercase; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: 8px; font-size: 0.95rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font); transition: all 0.3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); background: rgba(255,255,255,0.08); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-600); }
.btn-submit {
  width: 100%; padding: 16px; background: var(--red); color: var(--white); border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.3px; transition: all 0.3s var(--ease);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,18,27,0.3); }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.contact-info p { color: var(--gray-400); line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(181,18,27,0.12); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.1rem; }
.contact-detail span { color: var(--gray-300); font-size: 0.95rem; }

/* ── FOOTER ── */
/* ── Fix horizontal shift on all pages ── */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ── FOOTER — Dark Navy Accordion Style ── */
.footer { background: #0d1117; padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand h3 span { color: var(--red); }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer .nav-logo-wrap { height: 44px; }
.footer .nav-logo-img--light { display: block; }
.footer .nav-logo-img--dark { display: none; }
.footer-brand p { color: #6b7d93; font-size: 0.88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  letter-spacing: 0; text-transform: none; margin-bottom: 16px; cursor: default;
}
.footer-col-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.footer-arrow {
  display: none; font-size: 1.4rem; color: #4a5568;
  transition: transform 0.35s ease; font-weight: 300;
}
.footer-col a { display: block; color: #6b7d93; font-size: 0.88rem; padding: 5px 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.footer-bottom p { color: #4a5568; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #6b7d93; font-size: 0.82rem; text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: #6b7d93; font-size: 1.1rem; transition: color 0.3s var(--ease); }
.footer-socials a:hover { color: var(--white); }
.footer-confidentiality { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; margin-bottom: 0; }
.footer-confidentiality p { color: #3d4f63; font-size: 0.72rem; line-height: 1.6; max-width: 800px; font-style: italic; }
.footer-credit { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0 0; text-align: center; }
.footer-credit p { color: #3d4f63; font-size: 0.75rem; letter-spacing: 0.5px; }
.footer-credit a { color: #6b7d93; text-decoration: none; font-weight: 600; transition: color 0.3s var(--ease); }
.footer-credit a:hover { color: var(--white); }

/* ── STATS BANNER ── */
.stats-banner { background: var(--charcoal); padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.stats-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-number { font-size: 2rem; font-weight: 800; color: var(--red); }
.stat-item .stat-label { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── THREE PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.pillar-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 40px 32px; text-decoration: none; color: inherit; position: relative; overflow: hidden; transition: all 0.4s var(--ease); }
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--red); }
.pillar-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(181,18,27,0.08); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.4rem; margin-bottom: 20px; transition: all 0.3s var(--ease); }
.pillar-card:hover .pillar-icon { background: var(--red); color: var(--white); }
.pillar-number { font-size: 4rem; font-weight: 900; color: rgba(0,0,0,0.03); position: absolute; top: 16px; right: 24px; line-height: 1; }
.pillar-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--charcoal); margin-bottom: 4px; }
.pillar-subtitle { font-size: 0.85rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.pillar-card p:last-of-type { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; flex-grow: 1; }
.pillar-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--red); margin-top: 20px; transition: gap 0.3s var(--ease); }
.pillar-card:hover .pillar-cta { gap: 14px; }
.pillar-featured { background: var(--charcoal); border-color: var(--charcoal); }
.pillar-featured h3 { color: var(--white); }
.pillar-featured p:last-of-type { color: var(--gray-400); }
.pillar-featured .pillar-number { color: rgba(255,255,255,0.04); }
.pillar-featured .pillar-icon { background: rgba(181,18,27,0.2); }
.pillar-featured:hover .pillar-icon { background: var(--red); color: var(--white); }

/* ── SECTION DARK ── */
.section-dark { background: var(--charcoal); }

/* ── WHY TLC GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px 20px; transition: all 0.3s var(--ease); }
.why-item:hover { background: rgba(181,18,27,0.08); border-color: rgba(181,18,27,0.2); }
.why-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(181,18,27,0.12); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 0.9rem; }
.why-item span { color: var(--gray-300); font-size: 0.88rem; line-height: 1.5; }

/* ── REGIONAL PRESENCE ── */
.presence-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 48px; }
.presence-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 32px 16px; text-align: center; transition: all 0.3s var(--ease); }
.presence-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.presence-flag { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.presence-name { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }

/* ── SDG IMPACT ── */
.sdg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.sdg-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 40px 32px; text-align: center; transition: all 0.3s var(--ease); }
.sdg-card:hover { background: rgba(181,18,27,0.08); border-color: rgba(181,18,27,0.3); }
.sdg-number { font-size: 3.5rem; font-weight: 900; color: var(--red); margin-bottom: 8px; line-height: 1; }
.sdg-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.sdg-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }

/* ── EDUCATION PAGE ── */

/* Hero */
.edu-hero {
  position: relative; min-height: 75vh; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.edu-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(26,26,26,0.7) 50%, rgba(181,18,27,0.12) 100%);
}
.edu-hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 140px 24px 100px;
}
.edu-hero-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 300; color: var(--white);
  line-height: 1.6; letter-spacing: -0.3px; font-style: italic; border: none; margin: 0; padding: 0;
}
.edu-hero-quote span { display: block; }
.edu-ampersand { font-style: normal; color: var(--red); font-weight: 700; font-size: 1.1em; }

/* Section Titles */
.edu-section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--red);
  text-align: center; margin-bottom: 56px; letter-spacing: -0.5px; position: relative;
}
.edu-section-title::after {
  content: ''; display: block; width: 60px; height: 3px; background: var(--red);
  margin: 16px auto 0; border-radius: 2px;
}

/* Service Cards */
.edu-services-section { background: var(--white); }
.edu-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.edu-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 44px 36px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--red); transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.edu-card:hover::before { transform: scaleX(1); }
.edu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.edu-card-title {
  font-size: 1.4rem; font-weight: 800; color: var(--red); margin-bottom: 24px; letter-spacing: -0.3px;
}
.edu-card-list { list-style: none; padding: 0; margin: 0; }
.edu-card-list li {
  position: relative; padding-left: 20px; padding-bottom: 14px; font-size: 0.92rem;
  color: var(--gray-700); line-height: 1.7;
}
.edu-card-list li::before {
  content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--red); opacity: 0.7;
}
.edu-card-list li:last-child { padding-bottom: 0; }

/* Advisers Section */
.edu-advisers-section { background: var(--gray-50); padding-top: 20px; }
.edu-advisers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.edu-adviser-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all 0.4s var(--ease); text-align: center;
}
.edu-adviser-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(181,18,27,0.2); }
.edu-adviser-card--centered { grid-column: 1 / -1; max-width: 320px; margin: 0 auto; }

.edu-adviser-header { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 16px; }
.edu-adviser-photo {
  width: 120px; height: 120px; min-width: 120px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gray-200); background: var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.edu-adviser-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(30%); transition: all 0.4s var(--ease); }
.edu-adviser-card:hover .edu-adviser-photo img { filter: grayscale(0%); transform: scale(1.05); }
.edu-adviser-card:hover .edu-adviser-photo { border-color: var(--red); }

.edu-adviser-name-row { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.edu-adviser-name-row h3 { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.3px; margin: 0; }
.edu-adviser-role { font-size: 0.82rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }

.edu-linkedin-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-500); font-size: 0.85rem;
  transition: all 0.3s var(--ease); text-decoration: none; margin-top: 4px;
}
.edu-linkedin-btn:hover { background: #0077B5; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,119,181,0.3); }

.edu-adviser-bio-text { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; text-align: center; margin: 0; }

.edu-adviser-info h3 { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.3px; margin: 0 0 6px; }
.edu-adviser-meta { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }

.edu-adviser-bio { list-style: none; padding: 0; margin: 0; }
.edu-adviser-bio li {
  position: relative; padding-left: 18px; padding-bottom: 10px; font-size: 0.88rem;
  color: var(--gray-600); line-height: 1.7; text-align: left;
}
.edu-adviser-bio li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--red); opacity: 0.5;
}
.edu-adviser-bio li:last-child { padding-bottom: 0; }

/* Founder Featured Card (Basem — full width, premium) */
.edu-founder-card {
  display: flex; align-items: center; gap: 48px;
  background: linear-gradient(135deg, #fefefe 0%, #f8f6f4 100%);
  border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 48px 56px; margin-bottom: 40px; transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.edu-founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--red), #c0392b); border-radius: 4px 0 0 4px;
}
.edu-founder-card:hover { box-shadow: 0 16px 48px rgba(181,18,27,0.1); border-color: rgba(181,18,27,0.2); }
.edu-founder-photo {
  width: 220px; height: 220px; min-width: 220px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--gray-200); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.edu-founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: grayscale(10%); transition: all 0.5s var(--ease);
}
.edu-founder-card:hover .edu-founder-photo img { filter: grayscale(0%); transform: scale(1.04); }
.edu-founder-card:hover .edu-founder-photo { border-color: var(--red); }
.edu-founder-info { flex: 1; }
.edu-founder-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red); background: rgba(181,18,27,0.07);
  padding: 4px 14px; border-radius: 20px; margin-bottom: 10px;
}
.edu-founder-info h3 {
  font-size: 1.75rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.5px; margin: 0 0 6px;
}
.edu-founder-info .edu-adviser-role { display: block; margin-bottom: 10px; font-size: 0.85rem; }
.edu-founder-info .edu-linkedin-btn { margin-bottom: 16px; }
.edu-founder-info .edu-adviser-bio-text { font-size: 0.92rem; text-align: left; line-height: 1.8; }

/* Team member cards — clean vertical centered */
.edu-adviser-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.3px; margin: 12px 0 4px; }



/* ── HOME PAGE — TLC Education / EdTech Split ── */
.home-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 500px; }
.home-split-panel { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 80px 48px; text-align: center; overflow: hidden; }
.home-split-panel img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 0; }
.home-split-panel .split-overlay { position: absolute; inset: 0; z-index: 1; }
.home-split-panel .split-content { position: relative; z-index: 2; max-width: 480px; }
.home-split-panel .split-content h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.5px; }
.home-split-panel .split-content p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }
.home-split-panel .split-content .btn { font-size: 0.85rem; }
.split-edu .split-overlay { background: linear-gradient(135deg, rgba(10,10,10,0.78), rgba(26,26,26,0.65)); }
.split-tech .split-overlay { background: linear-gradient(135deg, rgba(10,10,10,0.82), rgba(181,18,27,0.2)); }

/* ── FOUNDER LINKEDIN ICON ── */
.founder-linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: #0077B5;
  color: #fff; font-size: 0.95rem; vertical-align: middle; margin-left: 10px;
  transition: all 0.3s var(--ease); text-decoration: none;
}
.founder-linkedin:hover { background: #005f8f; transform: scale(1.12); box-shadow: 0 4px 14px rgba(0,119,181,0.4); }

/* ── CALLIGRAPHY DECORATION ── */
.calligraphy-section { position: relative; }
.calligraphy-border { position: absolute; top: 0; bottom: 0; width: 80px; opacity: 0.12; pointer-events: none; z-index: 0; }
.calligraphy-border img { width: 100%; height: 100%; object-fit: cover; }
.calligraphy-border--left { left: 0; }
.calligraphy-border--right { right: 0; }
.calligraphy-section > .container { position: relative; z-index: 1; }

/* ── 21st CENTURY EDTECH SECTION ── */
.edtech-century { position: relative; overflow: hidden; }
.edtech-century .calligraphy-border { width: 100px; opacity: 0.08; }

/* ── VENTURE CAPITAL PAGE — SERVICE CARDS WITH ICONS ── */
.vc-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.vc-service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 44px 32px; text-align: center; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.vc-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--red); transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.vc-service-card:hover::before { transform: scaleX(1); }
.vc-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.vc-service-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.vc-service-icon img { width: 100%; height: 100%; object-fit: contain; }
.vc-service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--charcoal); }
.vc-service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ── EDTECH PARTNERS LOGOS ── */
.edtech-partners-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 40px; }
.edtech-partner-logo { height: 70px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: all 0.3s var(--ease); }
.edtech-partner-logo:hover { filter: grayscale(0); opacity: 1; }

/* ── PARTNERS PAGE — HARDCODED LOGO GRIDS ── */
.projects-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.project-logo-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 120px;
  transition: all 0.4s var(--ease);
}
.project-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.project-logo-card img { max-height: 70px; width: auto; max-width: 180px; object-fit: contain; }

.strategic-partners-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; margin-top: 48px; }
.strategic-partner-logo { height: 70px; width: auto; object-fit: contain; transition: all 0.3s var(--ease); }
.strategic-partner-logo:hover { transform: scale(1.08); }

/* ── EDUCATION PAGE — CALLIGRAPHY DECORATIONS ── */
.edu-calligraphy-section { position: relative; overflow: hidden; padding-bottom: 0; }
.edu-calligraphy-left, .edu-calligraphy-right, .edu-calligraphy-top, .edu-calligraphy-bottom {
  position: absolute; opacity: 0.08; pointer-events: none; z-index: 0;
}
.edu-calligraphy-left { left: 0; top: 0; bottom: 0; width: 90px; }
.edu-calligraphy-right { right: 0; top: 0; bottom: 0; width: 90px; }
.edu-calligraphy-top { left: 0; top: 0; width: 120px; height: 120px; }
.edu-calligraphy-bottom { left: 0; bottom: 0; width: 120px; height: 120px; }
.edu-calligraphy-left img, .edu-calligraphy-right img { width: 100%; height: 100%; object-fit: cover; }
.edu-calligraphy-top img, .edu-calligraphy-bottom img { width: 100%; height: 100%; object-fit: contain; }


/* ── ANIMATIONS — Framer Motion Inspired ── */

/* Spring easing */
:root {
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-motion: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--spring-smooth), transform 0.9s var(--spring-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0) rotate(0) scale(1); }

/* Directional reveals */
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s var(--spring-smooth), transform 0.9s var(--spring-smooth); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s var(--spring-smooth), transform 0.9s var(--spring-smooth); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale reveal */
.reveal-scale { opacity: 0; transform: scale(0.85); transition: opacity 0.8s var(--spring-smooth), transform 0.8s var(--spring); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Blur-in reveal */
.reveal-blur { opacity: 0; filter: blur(12px); transform: translateY(20px); transition: opacity 0.9s var(--spring-smooth), filter 0.9s var(--spring-smooth), transform 0.9s var(--spring-smooth); }
.reveal-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Hero Entrance Choreography ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroButtonIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroScrollPulse {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-badge { animation: heroBadgeIn 0.8s var(--spring-smooth) 0.3s both; }
.hero h1 {
  min-height: 1.2em; opacity: 1; animation: none;
  border-right: 3px solid rgba(255,255,255,0.85);
}
.hero h1.typing { animation: cursorBlink 0.7s step-end infinite; }
.hero h1.typing-done { border-right-color: transparent; animation: none; }
@keyframes cursorBlink {
  0%, 100% { border-right-color: rgba(255,255,255,0.85); }
  50% { border-right-color: transparent; }
}
.hero p { animation: heroFadeUp 1s var(--spring-smooth) 3.5s both; }
.hero-actions { animation: heroButtonIn 0.9s var(--spring) 3.8s both; }
.hero-scroll { animation: heroScrollPulse 0.8s var(--spring-smooth) 4.2s both; }

/* ── Stats Banner Entrance ── */
@keyframes statSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stats-banner .stat-item {
  opacity: 0; animation: statSlideUp 0.7s var(--spring) both;
}
.stats-banner .stat-item:nth-child(1) { animation-delay: 0.1s; }
.stats-banner .stat-item:nth-child(2) { animation-delay: 0.2s; }
.stats-banner .stat-item:nth-child(3) { animation-delay: 0.3s; }
.stats-banner .stat-item:nth-child(4) { animation-delay: 0.4s; }
.stats-banner .stat-item:nth-child(5) { animation-delay: 0.5s; }
.stats-banner .stat-item:nth-child(6) { animation-delay: 0.6s; }

/* ── Pillar Card Hover Lift ── */
.pillar-card {
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--ease-motion), border-color 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.pillar-card .pillar-icon {
  transition: transform 0.5s var(--spring);
}
.pillar-card:hover .pillar-icon {
  transform: scale(1.15) rotate(-5deg);
}

/* ── Why TLC Card Glow on Hover ── */
.why-item {
  transition: transform 0.4s var(--spring), background 0.4s ease, box-shadow 0.4s ease;
}
.why-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 30px rgba(181,18,27,0.08);
}
.why-item .why-icon {
  transition: transform 0.5s var(--spring), background 0.4s ease;
}
.why-item:hover .why-icon {
  transform: scale(1.12);
  background: rgba(181,18,27,0.25);
}

/* ── Founder Photo Parallax Float ── */
@keyframes founderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.founder-image-frame img {
  transition: transform 0.6s var(--spring-smooth);
}
.founder-section:hover .founder-image-frame img {
  animation: founderFloat 4s ease-in-out infinite;
}

/* ── SDG Card Number Glow ── */
.sdg-number {
  transition: transform 0.4s var(--spring), text-shadow 0.4s ease;
}
.sdg-card:hover .sdg-number {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(181,18,27,0.5);
}

/* ── Presence Card Pop ── */
.presence-card {
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease, border-color 0.3s ease;
}
.presence-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: var(--red);
}
.presence-card .presence-flag {
  transition: transform 0.5s var(--spring);
}
.presence-card:hover .presence-flag {
  transform: scale(1.2);
}

/* ── Section Label Line Animation ── */
@keyframes labelLineGrow {
  from { width: 0; }
  to   { width: 24px; }
}
.reveal.visible .section-label::before,
.reveal-left.visible .section-label::before,
.reveal-blur.visible .section-label::before {
  animation: labelLineGrow 0.6s var(--spring-smooth) 0.3s both;
}

/* ── Smooth Page Load ── */
@keyframes pageLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageLoad 0.5s ease both; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px); z-index: 9999; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  display: flex; visibility: hidden;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; visibility: visible; }
.mobile-menu a { color: var(--white); font-size: 1.3rem; font-weight: 600; text-decoration: none; padding: 6px 0; }
.mobile-menu a.btn { font-size: 0.95rem; padding: 12px 28px; width: auto; max-width: 200px; border-radius: 8px; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 2.5rem; cursor: pointer; z-index: 10000; line-height: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-achievements { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .presence-grid { grid-template-columns: repeat(3, 1fr); }
  .sdg-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .edu-advisers-grid { gap: 24px; }
  .vc-services-grid { grid-template-columns: repeat(2, 1fr); }
  .home-split { grid-template-columns: 1fr; }
  .calligraphy-border { width: 50px; }
  .projects-logo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
  /* Accordion footer — matching design */
  .footer { padding: 32px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; margin-bottom: 24px; }
  .footer-brand { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(100,130,170,0.15); }
  .footer-col { border-bottom: 1px solid rgba(100,130,170,0.15); padding: 0; }
  .footer-col h4 { margin-bottom: 0; padding: 18px 0; cursor: pointer; font-size: 1.05rem; font-weight: 700; }
  .footer-arrow { display: inline-block; transition: transform 0.35s ease; }
  .footer-col.open .footer-arrow { transform: rotate(180deg); }
  .footer-col-links { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0; }
  .footer-col.open .footer-col-links { max-height: 300px; padding-bottom: 16px; }
  .footer-col-links a { padding: 8px 0 8px 4px; font-size: 0.9rem; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { justify-content: center; max-width: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .presence-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-cards-grid { grid-template-columns: 1fr; }
  .edu-advisers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .edu-adviser-card--centered { max-width: none; }
  /* Founder card — tablet: stack vertically, center everything */
  .edu-founder-card {
    flex-direction: column; text-align: center;
    padding: 32px 24px; gap: 20px;
  }
  .edu-founder-card::before {
    width: 100%; height: 4px; top: 0; left: 0;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, var(--red), #c0392b);
  }
  .edu-founder-info .edu-adviser-bio-text { text-align: center; }
  .edu-founder-info .edu-linkedin-btn { margin: 0 auto 12px; }
  .edu-founder-label { margin: 0 auto 10px; }
  .edu-founder-photo { width: 150px; height: 150px; min-width: 150px; }
  .edu-hero { min-height: 60vh; }
  .edu-hero-quote { font-size: clamp(1.1rem, 4vw, 1.6rem); }
  .vc-services-grid { grid-template-columns: 1fr; }
  .calligraphy-border { display: none; }
  .projects-logo-grid { grid-template-columns: 1fr; gap: 16px; }
  .project-logo-card { padding: 20px; min-height: 100px; }
  .project-logo-card img { max-width: 140px; }
  .strategic-partners-row { gap: 32px; }
  .home-split-panel { padding: 60px 24px; }
  /* Team cards — tablet: compact centered */
  .edu-adviser-card {
    padding: 24px 16px; text-align: center;
  }
  .edu-adviser-card h3 { font-size: 1rem; }
  .edu-adviser-photo { width: 90px; height: 90px; min-width: 90px; margin: 0 auto; }
  .edu-adviser-role { font-size: 0.7rem; }
  .edu-adviser-bio-text { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px; }
  .stat-number { font-size: 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .presence-grid { grid-template-columns: 1fr 1fr; }
  .edu-card { padding: 28px 20px; }
  /* Team grid — mobile: single column, horizontal cards */
  .edu-advisers-grid { grid-template-columns: 1fr; gap: 12px; }
  .edu-adviser-card {
    display: flex; flex-direction: row; align-items: center;
    text-align: left; padding: 16px; gap: 16px;
  }
  .edu-adviser-card h3 { font-size: 0.95rem; margin: 0 0 4px; }
  .edu-adviser-photo { width: 72px; height: 72px; min-width: 72px; margin: 0; flex-shrink: 0; }
  .edu-adviser-info { flex: 1; min-width: 0; }
  .edu-adviser-meta { justify-content: flex-start; gap: 8px; margin-bottom: 0; }
  .edu-adviser-card .edu-adviser-role { font-size: 0.65rem; margin-bottom: 0; }
  .edu-adviser-card .edu-linkedin-btn { width: 26px; height: 26px; font-size: 0.65rem; margin-top: 0; }
  .edu-adviser-card .edu-adviser-bio-text { display: none; }
  /* Founder — mobile: smaller, cleaner */
  .edu-founder-card { padding: 24px 16px; gap: 16px; }
  .edu-founder-photo { width: 120px; height: 120px; min-width: 120px; }
  .edu-founder-info h3 { font-size: 1.2rem; }
  .edu-founder-info .edu-adviser-role { font-size: 0.75rem; }
  .edu-founder-info .edu-adviser-bio-text { font-size: 0.82rem; line-height: 1.6; display: block; }
  .edu-founder-label { font-size: 0.62rem; padding: 3px 10px; }
  .edu-section-title { font-size: 1.5rem; }
}
