/* ══════════════════════════════════════
   SKILL SYNC EDUCATION — WEBSITE STYLES
   Brand Saffron: #E07A2E  Navy: #1A3356
   ══════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron:       #E07A2E;
  --saffron-light: #F09A4E;
  --saffron-dark:  #C0611A;
  --navy:          #1A3356;
  --navy-mid:      #2D4D7A;
  --navy-light:    #3D6499;
  --cream:         #F8F3EC;
  --cream-mid:     #EDE5D8;
  --white:         #FFFFFF;
  --text:          #1A1A1A;
  --text-mid:      #4A4A4A;
  --text-light:    #7A7A7A;
  --border:        #DDD5C8;
  --font-en:       'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Inter', sans-serif;
  --font-serif:    'Noto Serif SC', 'Georgia', serif;
  --radius:        4px;
  --shadow:        0 4px 24px rgba(26,51,86,.10);
  --shadow-lg:     0 12px 48px rgba(26,51,86,.16);
  --transition:    .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────── */
.h2 {
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1.2rem;
  letter-spacing: .01em;
}
.h2.light { color: var(--white); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .75rem;
}
.label.light { color: var(--saffron-light); }

.lead {
  font-family: var(--font-en);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.lead.light { color: rgba(255,255,255,.9); }

p { color: var(--text-mid); line-height: 1.85; margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ───────────────────────────── */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding-block: 100px;
  position: relative;
}

.bg-cream { background: var(--cream); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.two-col.gap-lg { gap: 80px; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.section-hd { margin-bottom: 56px; }
.section-hd.center { text-align: center; }
.section-hd.center .h2 { max-width: 640px; margin-inline: auto; }
.section-hd.center .section-desc { max-width: 600px; margin-inline: auto; }
.section-desc { color: var(--text-mid); font-size: .95rem; line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,.75); }

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  font-weight: 500;
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}
.btn-saffron {
  background: var(--saffron);
  color: var(--white);
  border: 1.5px solid var(--saffron);
}
.btn-saffron:hover {
  background: var(--saffron-dark);
  border-color: var(--saffron-dark);
}
.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: .9rem;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(224,122,46,.35);
}

/* ── OVERLAYS ─────────────────────────── */
.dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,51,86,.85) 0%, rgba(26,51,86,.68) 100%);
  z-index: 1;
}

/* ── REVEAL ANIMATION ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.nav.scrolled {
  background: rgba(248,243,236,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,51,86,.12);
}
.nav-inner {
  width: min(1160px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Text logo */
.nav-logo {
  font-family: var(--font-en);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: .8; }
.logo-skill {
  color: var(--white);
  transition: color var(--transition);
}
.logo-sync {
  color: var(--saffron-light);
  transition: color var(--transition);
}
.nav.scrolled .logo-skill { color: var(--navy); }
.nav.scrolled .logo-sync  { color: var(--saffron); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--saffron-light); }
.nav.scrolled .nav-links a:hover { color: var(--saffron); }
.nav-links .nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  font-weight: 600;
  padding: 9px 22px;
}
.nav-links .nav-cta:hover { background: var(--saffron-dark); color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,46,.55) 0%,
    rgba(10,22,46,.72) 50%,
    rgba(10,22,46,.82) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: heroFadeIn .9s ease .2s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--saffron);
  margin: 0 auto 32px;
}
.hero-tagline {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1.2;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  letter-spacing: .15em;
  color: var(--saffron-light);
  margin-bottom: 10px;
}
.hero-loc {
  font-size: .75rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 38px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about blockquote {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--saffron);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(224,122,46,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.pillar {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 18px 14px;
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition);
}
.pillar:hover { border-color: var(--saffron); }
.pillar h4 {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.pillar p { font-size: .78rem; color: var(--text-light); margin: 0; line-height: 1.5; }

.stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--font-en);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--saffron-dark);
}
.stat-l { font-size: .75rem; color: var(--text-light); margin-top: 2px; line-height: 1.4; }

.img-frame {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 2px solid var(--saffron);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}
.img-frame img { width: 100%; height: 480px; object-fit: cover; }
.img-frame.tall img { height: 560px; }

/* ══════════════════════════════════════
   FOUNDER
   ══════════════════════════════════════ */
.founder-quote {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--saffron);
  line-height: 1.65;
}
.expertise-box {
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.expertise-box h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 16px;
}
.expertise-box ul { display: flex; flex-direction: column; gap: 10px; }
.expertise-box li {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  padding-left: 16px;
  position: relative;
}
.expertise-box li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cred-item { display: flex; flex-direction: column; gap: 2px; }
.cred-inst {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.cred-role {
  font-size: .78rem;
  color: var(--text-light);
}

/* Founder right panel */
.founder-stats-panel {
  background: var(--navy);
  border-radius: 8px;
  padding: 48px 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.founder-badge-wrap { display: flex; justify-content: center; }
.founder-badge-large {
  width: 120px; height: 120px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.badge-initials {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.badge-title {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.pub-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pub-stat { display: flex; flex-direction: column; gap: 3px; }
.pub-n {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--saffron-light);
  line-height: 1;
}
.pub-l {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

.founder-quote-card {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}
.fq-text {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 8px;
}
.fq-lang {
  font-size: .75rem;
  color: var(--saffron-light);
  letter-spacing: .06em;
  margin: 0;
}

/* ══════════════════════════════════════
   WHY US
   ══════════════════════════════════════ */
.why-us {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.why-us .container { position: relative; z-index: 2; }

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.why-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  color: var(--saffron-light);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.why-card p { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ══════════════════════════════════════
   PHILOSOPHY
   ══════════════════════════════════════ */
.phil-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.phil-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.phil-step-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--saffron);
  transform: translateY(-4px);
}
.phil-step-num {
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--saffron);
  background: rgba(224,122,46,.08);
  border: 1px solid rgba(224,122,46,.2);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.phil-step-card h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.phil-step-card p { font-size: .9rem; color: var(--text-mid); margin: 0; line-height: 1.75; }

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.svc-img { overflow: hidden; height: 200px; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 24px 22px 28px; }
.svc-body h3 {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.svc-en {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--saffron-dark);
  margin-bottom: 12px !important;
  display: block;
}
.svc-body p { font-size: .85rem; line-height: 1.7; }

/* ══════════════════════════════════════
   RESULTS
   ══════════════════════════════════════ */
.results-block { margin-bottom: 64px; }
.results-cat {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
  letter-spacing: .02em;
}

.uni-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.uni-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.uni-logo-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.uni-logo-card img {
  max-width: 64px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}
.uni-fallback {
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.school-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.school-tag {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  font-size: .83rem;
  color: var(--text-mid);
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}
.school-tag:hover { border-color: var(--saffron); background: var(--cream); }

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process-layout { gap: 80px; align-items: start; }
.process-steps { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.p-step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.p-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px; top: 42px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.p-num {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--navy);
  color: var(--saffron-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.p-body h3 {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  padding-top: 6px;
}
.p-body p { font-size: .88rem; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-items-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.c-item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.c-item-card:hover { border-color: var(--saffron); background: var(--cream-mid); color: var(--saffron-dark); }
.c-item-card svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--saffron);
}
.section.contact .lead {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 560px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-block: 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 12px;
  line-height: 1;
}
.footer-skill { color: var(--white); }
.footer-sync  { color: var(--saffron-light); }

.footer-name {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tag {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--saffron-light);
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.footer-since { font-size: .72rem; color: rgba(255,255,255,.4); margin: 0; }

.footer-nav h5, .footer-contact-info h5 {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--saffron-light); }

.footer-contact-info p {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin: 0;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding-block: 70px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(26,51,86,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 5%;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: .9rem;
    padding: 12px 16px;
    width: 100%;
    color: rgba(255,255,255,.85) !important;
  }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.gap-lg { gap: 40px; }
  .three-col { grid-template-columns: 1fr; }
  .phil-steps-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 10px; }
  .stats { gap: 20px; }

  .img-frame img, .img-frame.tall img { height: 320px; }

  .hero-tagline { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-sub { letter-spacing: .08em; }

  .process-layout { grid-template-columns: 1fr; gap: 40px; }

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

  .uni-logo-grid { gap: 12px; }
  .uni-logo-card { width: 72px; height: 54px; }

  .contact-items-row { flex-direction: column; align-items: center; gap: 12px; }

  .pub-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .founder-stats-panel { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .container { width: 94%; }
  .hero-tagline { letter-spacing: .04em; }
  .section-hd.center .h2 { font-size: 1.7rem; }
}
