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

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

:root {
  --navy: #0B1C3D;
  --navy-light: #152a57;
  --blue-pro: #2E5C8A;
  --blue-accent: #4A90E2;
  --gold: #F5A623;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-grey: #5A6C7D;
  --text-light: #FFFFFF;
  --text-light-muted: #B8C5D6;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6
}

/* ── TYPOGRAPHY & UTILITIES ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2
}

.text-center {
  text-align: center
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 12px;
  display: inline-block
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px
}

.section-title.light {
  color: var(--text-light)
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-grey);
  max-width: 700px;
  margin: 0 auto 48px
}

.section-sub.light {
  color: var(--text-light-muted)
}

section {
  padding: 90px 5%
}

.bg-dark {
  background: var(--navy);
  color: var(--text-light)
}

.bg-white {
  background: var(--bg-white)
}

.bg-light {
  background: var(--bg-light)
}

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

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

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

.container {
  max-width: 1280px;
  margin: 0 auto
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--text-light)
}

.btn-primary:hover {
  background: #3a7bc2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3)
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3)
}

.btn-outline-light:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.05)
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy)
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--text-light)
}

.btn-gold {
  background: var(--gold);
  color: var(--navy)
}

.btn-gold:hover {
  background: #e0941b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3)
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition)
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none
}

.nav-logo span {
  color: var(--blue-accent)
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  height: 100%
}

.nav-menu>li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative
}

.nav-menu>li>a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%
}

.nav-menu>li>a:hover {
  color: var(--blue-accent)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-btn-outline {
  padding: 8px 20px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition)
}

.nav-btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy)
}

.nav-btn-solid {
  padding: 10px 24px;
  background: var(--blue-accent);
  color: var(--text-light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition)
}

.nav-btn-solid:hover {
  background: #3a7bc2
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 240px;
  box-shadow: var(--shadow-md);
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--blue-accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  list-style: none;
  padding: 10px 0
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition)
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--blue-accent);
  padding-left: 24px
}

/* MOBILE MENU */
.mobile-nav-wrapper {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 24px 5%
}

.mobile-nav-wrapper.active {
  transform: translateX(0)
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.mobile-menu-list a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light)
}

.mobile-dropdown-list {
  display: none;
  list-style: none;
  padding-left: 16px;
  margin-top: 8px
}

.mobile-dropdown-list.active {
  display: block
}

.mobile-dropdown-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-grey);
  border-bottom: none;
  padding: 8px 0
}

.m-toggle-drop {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.mobile-nav-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mobile-nav-actions a {
  width: 100%;
  text-align: center;
  padding: 14px
}

/* ── HERO ── */
#hero {
  padding: 160px 5% 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px
}

.hero-tagline {
  color: var(--blue-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: block
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 24px
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  max-width: 650px
}

.hero-props {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.hero-prop {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light-muted);
  font-size: 0.95rem;
  flex: 1;
  min-width: 200px
}

.hero-prop i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

/* ── WHO WE ARE ── */
#about {
  background: var(--bg-white)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-grey);
  margin-bottom: 24px
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.diff-card {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition)
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-accent)
}

.diff-icon {
  font-size: 2rem;
  color: var(--blue-pro);
  margin-bottom: 16px
}

.diff-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px
}

.diff-text {
  font-size: 0.9rem;
  color: var(--text-grey)
}

.stat-bar {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px
}

.stat-item {
  text-align: center;
  color: var(--text-light)
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light-muted)
}

/* ── PROGRAMS ── */
#programs {
  background: var(--bg-light)
}

.prog-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.prog-tab {
  padding: 12px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-grey);
  cursor: pointer;
  transition: var(--transition)
}

.prog-tab.active,
.prog-tab:hover {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy)
}

.prog-pane {
  display: none;
  animation: fadeIn 0.4s ease
}

.prog-pane.active {
  display: block
}

.prog-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%
}

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

.prog-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px
}

.prog-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(46, 92, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue-pro);
  margin-bottom: 20px
}

.prog-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.prog-desc {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1
}

.prog-meta {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light)
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-grey);
  margin-bottom: 8px
}

.meta-item i {
  color: var(--blue-accent);
  margin-top: 3px
}

.meta-item strong {
  color: var(--navy)
}

.prog-actions {
  display: flex;
  gap: 12px;
  margin-top: auto
}

.prog-actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition)
}

.btn-learn {
  background: var(--bg-light);
  color: var(--navy);
  border: 1px solid var(--border-light)
}

.btn-learn:hover {
  background: #e9ecef
}

.btn-action {
  background: var(--blue-pro);
  color: var(--text-light)
}

.btn-action:hover {
  background: var(--navy)
}

/* ── SPOTLIGHT (GO BEYOND 99) ── */
#spotlight {
  background: var(--navy);
  color: var(--text-light)
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.spot-tag {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block
}

.spot-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px
}

.spot-sub {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  margin-bottom: 32px
}

.problem-list {
  list-style: none;
  margin-bottom: 40px
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-light-muted);
  font-size: 0.95rem
}

.problem-list li i {
  color: #ff4757;
  margin-top: 3px
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

.pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  padding: 20px;
  border-radius: 12px
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--blue-accent);
  margin-bottom: 12px
}

.pillar-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-light-muted)
}

.aaa-fw {
  background: linear-gradient(135deg, rgba(46, 92, 138, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--border-dark);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 40px
}

.aaa-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold)
}

.aaa-steps {
  display: grid;
  gap: 16px
}

.aaa-step {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.aaa-step-letter {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-accent);
  line-height: 1
}

.aaa-step-text strong {
  display: block;
  margin-bottom: 4px
}

.aaa-step-text {
  font-size: 0.9rem;
  color: var(--text-light-muted)
}

.journey-timeline {
  margin-bottom: 40px
}

.j-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative
}

.j-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  bottom: -24px;
  left: 7px;
  width: 2px;
  background: var(--border-dark)
}

.j-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 4px solid var(--navy);
  position: relative;
  z-index: 1;
  margin-top: 4px
}

.j-content h4 {
  font-size: 1rem;
  margin-bottom: 4px
}

.j-content p {
  font-size: 0.85rem;
  color: var(--text-light-muted)
}

.spot-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px
}

.spot-feat {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px
}

.spot-feat i {
  color: var(--gold)
}

.spot-urgency {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px
}

/* ── WHY US ── */
#why {
  background: var(--bg-white)
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: 12px;
  transition: var(--transition)
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--blue-pro)
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.why-text {
  color: var(--text-grey);
  font-size: 0.95rem
}

/* ── FACULTY ── */
#faculty {
  background: var(--bg-light)
}

.fac-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  padding: 40px 24px
}

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

.fac-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-light);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin: 0 auto 24px;
  display: block
}

.fac-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-pro);
  margin-bottom: 8px
}

.fac-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px
}

.fac-bio {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 24px
}

.fac-creds {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 20px
}

.fac-cred-badge {
  background: var(--bg-light);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px
}

.fac-cred-badge i {
  color: var(--gold)
}

.team-creds {
  background: var(--navy);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: var(--text-light)
}

.tc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem
}

.tc-item i {
  color: var(--gold);
  font-size: 1.2rem
}

/* ── CORPORATE SOLUTIONS ── */
#corporate {
  background: var(--bg-white)
}

.corp-card {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition);
  background: var(--bg-white)
}

.corp-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-accent)
}

.corp-icon {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px
}

.corp-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.corp-desc {
  color: var(--text-grey);
  font-size: 0.95rem
}

.corp-bottom {
  margin-top: 56px;
  text-align: center;
  padding: 48px;
  background: var(--bg-light);
  border-radius: 16px
}

.corp-bottom h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px
}

.corp-bottom p {
  color: var(--text-grey);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

/* ── PROCESS ── */
#process {
  background: var(--navy);
  color: var(--text-light)
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative
}

.proc-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-dark);
  z-index: 0
}

.proc-step {
  position: relative;
  z-index: 1;
  text-align: center
}

.proc-num {
  width: 64px;
  height: 64px;
  background: var(--blue-accent);
  border: 4px solid var(--navy);
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2)
}

.proc-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.proc-text {
  color: var(--text-light-muted);
  font-size: 0.9rem
}

/* ── METRICS ── */
#metrics {
  background: var(--bg-light)
}

.met-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.met-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: center
}

.met-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-pro);
  margin-bottom: 12px;
  line-height: 1
}

.met-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy)
}

/* ── CTA ── */
#final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-pro) 100%);
  text-align: center;
  color: var(--text-light);
  padding: 100px 5%
}

.cta-box {
  max-width: 800px;
  margin: 0 auto
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px
}

.cta-sub {
  font-size: 1.2rem;
  color: var(--text-light-muted);
  margin-bottom: 48px
}

.cta-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.cta-path {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  transition: var(--transition)
}

.cta-path:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px)
}

.cta-path h3 {
  font-size: 1.3rem;
  margin-bottom: 12px
}

.cta-path p {
  color: var(--text-light-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
  min-height: 48px
}

.cta-path .btn {
  width: 100%
}

/* ── FAQ ── */
#faq {
  background: var(--bg-white)
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto
}

.faq-cat {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-light)
}

.faq-cat:first-child {
  margin-top: 0
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--bg-white);
  overflow: hidden
}

.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition)
}

.faq-q:hover {
  background: var(--bg-light)
}

.faq-arrow {
  color: var(--blue-accent);
  transition: transform 0.3s
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-grey);
  font-size: 0.95rem
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg)
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 80px 5% 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px
}

.f-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 12px
}

.f-tagline {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 24px
}

.f-socials {
  display: flex;
  gap: 12px
}

.f-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition)
}

.f-social:hover {
  background: var(--blue-accent);
  transform: translateY(-3px)
}

.f-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-light)
}

.f-links {
  list-style: none
}

.f-links li {
  margin-bottom: 12px
}

.f-links a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition)
}

.f-links a:hover {
  color: var(--gold);
  padding-left: 4px
}

.f-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 16px
}

.f-contact i {
  color: var(--blue-accent);
  margin-top: 4px
}

.f-contact a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: var(--transition)
}

.f-contact a:hover {
  color: var(--gold)
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: var(--text-light-muted);
  font-size: 0.85rem
}

/* ── ANIMATIONS & UTILS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--blue-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: #3a7bc2
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:992px) {
  .nav-menu {
    display: none
  }

  .nav-right .nav-btn-outline {
    display: none
  }

  .hamburger {
    display: block
  }

  .about-grid,
  .spot-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .proc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
  }

  .proc-grid::before {
    display: none
  }

  .cta-paths {
    grid-template-columns: 1fr
  }

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

@media(max-width:768px) {
  section {
    padding: 70px 5%
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .diff-cards,
  .pillar-grid,
  .spot-features,
  .met-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .proc-grid {
    grid-template-columns: 1fr
  }

  .stat-bar {
    flex-direction: column
  }

  .hero-props {
    flex-direction: column;
    gap: 16px
  }

  .prog-actions {
    flex-direction: column
  }

  .team-creds {
    flex-direction: column;
    align-items: flex-start
  }
}