:root {
  --ink:     #060812;
  --navy:    #0B1340;
  --blue:    #1446C0;
  --cyan:    #00C2FF;
  --orange:  #FF5C1A;
  --gold:    #F5B800;
  --green:   #00C48C;
  --purple:  #7B2FFF;
  --white:   #FFFFFF;
  --off:     #F8F9FF;
  --muted:   #6B7A99;
  --border:  #E0E6FF;
  --card:    #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

/* Nav */
#school-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; }
.nav-logo-text { font-family: 'Clash Display', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }

/* Desktop styles */
.desktop-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.desktop-links a { font-size: 0.88rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.desktop-links a:hover { color: var(--navy); }

.desktop-cta {
  background: var(--orange);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.desktop-cta:hover { background: #E04500; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,92,26,0.35); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem;
}

.nav-mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
}

.mobile-menu-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}

.mobile-menu-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}

.hidden {
  display: none !important;
}

/* Mobile styles - hide desktop links, show toggle */
@media (max-width: 767px) {
  .desktop-links { display: none; }
  .desktop-cta { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding: 140px 1.25rem 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(20,70,192,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(0,194,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 90% 10%, rgba(123,47,255,0.15) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,194,255,0.12); border: 1px solid rgba(0,194,255,0.3); color: var(--cyan); padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.8)} }
.hero-title { font-family: 'Clash Display', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.hero-title em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--cyan); }
.hero-sub { font-size: clamp(0.9rem, 1.1vw, 1rem); color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 2rem; max-width: 100%; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: #fff; padding: 0.85rem 2rem; border-radius: 100px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.2s; box-shadow: 0 0 0 rgba(255,92,26,0); }
.btn-primary:hover { background: #E04500; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,92,26,0.4); }
.btn-ghost { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.btn-ghost:hover { color: #fff; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.hero-badge strong { color: rgba(255,255,255,0.9); }

/* Hero right — stats cards */
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hstat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.5rem; transition: all 0.3s; }
.hstat:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,194,255,0.3); transform: translateY(-4px); }
.hstat-num { font-family: 'Clash Display', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--cyan); letter-spacing: -0.02em; line-height: 1; }
.hstat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; }
.hstat.featured { background: linear-gradient(135deg, rgba(20,70,192,0.4), rgba(0,194,255,0.15)); border-color: rgba(0,194,255,0.3); grid-column: 1/-1; }

/* Logo strip */
.logo-strip { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 1.25rem; }
.logo-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.ls-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ls-logos { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.ls-logo { font-size: 0.82rem; font-weight: 700; color: var(--muted); opacity: 0.7; white-space: nowrap; }

/* Section wrapper */
.section { padding: 4rem 1.25rem; }
.section-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.sec-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.sec-kicker::before { content: ''; width: 24px; height: 2px; background: var(--orange); border-radius: 2px; }
.sec-title { font-family: 'Clash Display', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1rem; }
.sec-title em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--blue); }
.sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 100%; }

/* NEP alert */
.nep-alert {
  background: linear-gradient(135deg, #FFF8F0, #FFFBF5);
  border: 1px solid #FFDDB5;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.nep-icon { font-size: 1.8rem; flex-shrink: 0; }
.nep-text h4 { font-family: 'Clash Display', sans-serif; font-size: 1rem; font-weight: 700; color: #7C2D12; margin-bottom: 0.3rem; }
.nep-text p { font-size: 0.9rem; color: #9A3412; line-height: 1.65; }
.nep-pill { background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 100px; letter-spacing: 0.08em; white-space: nowrap; align-self: flex-start; }

/* NEP framework */
.nep-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.nep-card { border-radius: 16px; padding: 1.6rem; border: 1px solid var(--border); background: #fff; transition: all 0.25s; }
.nep-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--blue); }
.nep-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.nep-card-title { font-family: 'Clash Display', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.nep-card-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.nep-card-tag { display: inline-block; margin-top: 0.8rem; font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; }

/* Curriculum mapping */
.curri-section { background: var(--navy); padding: 4rem 1.25rem; }
.curri-section .sec-title { color: #fff; }
.curri-section .sec-sub { color: rgba(255,255,255,0.55); }
.curri-section .sec-kicker { color: var(--cyan); }
.curri-section .sec-kicker::before { background: var(--cyan); }

/* Tab system */
.tab-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2.5rem 0 2rem; }
.tab-btn { padding: 0.6rem 1.2rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); transition: all 0.2s; }
.tab-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.tab-btn:hover:not(.active) { background: rgba(255,255,255,0.1); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Curriculum table - scrollable */
.curri-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto; /* Enable horizontal scroll */
}
.curri-table-scroll {
  min-width: 800px; /* Minimum width to keep table readable */
}
.curri-table-header { background: rgba(255,255,255,0.05); display: grid; grid-template-columns: 1.8fr 1fr 2fr 1.2fr; gap: 0.75rem; padding: 1rem; }
.cth { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.curri-row { display: grid; grid-template-columns: 1.8fr 1fr 2fr 1.2fr; border-top: 1px solid rgba(255,255,255,0.07); padding: 1.1rem; align-items: start; transition: background 0.15s; gap: 0.75rem; }
.curri-row:hover { background: rgba(255,255,255,0.04); }
.cr-unit { }
.cr-grade-pill { font-size: 0.66rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; display: inline-block; margin-bottom: 0.4rem; }
.cr-topic { font-weight: 600; font-size: 0.9rem; color: #fff; line-height: 1.35; }
.cr-sub { font-size: 0.76rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.cr-code { }
.cr-code-badge { font-size: 0.70rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 5px; font-family: monospace; }
.cr-mission { }
.cr-mission-name { font-weight: 700; font-size: 0.88rem; color: var(--cyan); display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.3rem; }
.cr-skills { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.3rem; }
.skill-tag { font-size: 0.65rem; font-weight: 600; padding: 0.12rem 0.45rem; border-radius: 3px; }
.cr-match { }
.match-dots { display: flex; gap: 3px; margin-bottom: 0.2rem; }
.dot-f { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.dot-e { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.match-word { font-size: 0.72rem; font-weight: 700; color: var(--green); }
.match-good { color: var(--cyan); }
.match-note { font-size: 0.7rem; color: rgba(255,255,255,0.35); line-height: 1.4; margin-top: 0.3rem; }

/* Grade color helpers */
.g-cbse3  { background: #FEF9C3; color: #713F12; }
.g-cbse6  { background: #FFE4E1; color: #7F1D1D; }
.g-cbse9  { background: #DBEAFE; color: #1E40AF; }
.g-cbse11 { background: #FCE7F3; color: #831843; }
.g-cbse12 { background: #DCFCE7; color: #14532D; }
.g-ib     { background: #EDE9FE; color: #4C1D95; }
.g-ks3    { background: #E0F7FF; color: #0369A1; }
.g-igcse  { background: #FFF3E0; color: #9A3412; }
.g-alev   { background: #FCE7F3; color: #831843; }
.g-qa     { background: #FEF9C3; color: #713F12; }
.g-qnat   { background: #E0F7FF; color: #0369A1; }
.sk-blue   { background: rgba(20,70,192,0.25); color: #93C5FD; }
.sk-green  { background: rgba(0,196,140,0.2); color: #6EE7B7; }
.sk-orange { background: rgba(255,92,26,0.2); color: #FCA07A; }
.sk-purple { background: rgba(123,47,255,0.2); color: #C4B5FD; }
.sk-gold   { background: rgba(245,184,0,0.2); color: #FDE68A; }

/* How it works */
#how .sec-kicker, #how .sec-title { text-align: center; }
#how .sec-kicker { justify-content: center; }
.how-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; position: relative; }
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.how-num { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-family: 'Clash Display', sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; position: relative; z-index: 1; box-shadow: 0 8px 24px rgba(20,70,192,0.3); }
.how-title { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.how-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* Missions */
.missions-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
.mission-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.3rem; transition: all 0.25s; cursor: default; }
.mission-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.mc-emoji { font-size: 1.8rem; margin-bottom: 0.7rem; }
.mc-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.3rem; }
.mc-link { font-size: 0.76rem; color: var(--muted); line-height: 1.45; }
.mc-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.6rem; }
.mc-tag { font-size: 0.64rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 3px; background: var(--off); color: var(--blue); border: 1px solid var(--border); }

/* Why section */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.why-card { border-radius: 16px; padding: 1.6rem; border: 1px solid var(--border); transition: all 0.25s; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.why-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.why-title { font-family: 'Clash Display', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.why-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.why-tag { display: inline-block; margin-top: 0.8rem; font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; }
.w1 { background: #FFF8EE; border-color: #FED7AA; } .w1 .why-tag { background: #FFEDD5; color: #9A3412; }
.w2 { background: #F0FDF9; border-color: #A7D9C8; } .w2 .why-tag { background: #DCFCE7; color: #14532D; }
.w3 { background: #EFF6FF; border-color: #BFDBFE; } .w3 .why-tag { background: #DBEAFE; color: #1E40AF; }
.w4 { background: #F5F3FF; border-color: #DDD6FE; } .w4 .why-tag { background: #EDE9FE; color: #4C1D95; }
.w5 { background: #FFF1F2; border-color: #FECDD3; } .w5 .why-tag { background: #FFE4E6; color: #9F1239; }
.w6 { background: #F0F9FF; border-color: #BAE6FD; } .w6 .why-tag { background: #E0F2FE; color: #0C4A6E; }

/* Pricing */
.pricing-section { background: var(--off); padding: 4rem 1.25rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; position: relative; transition: all 0.25s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.price-card.featured { background: var(--navy); border-color: var(--navy); }
.price-card.featured * { color: #fff !important; }
.price-card.featured .price-feature { color: rgba(255,255,255,0.65) !important; }
.price-top-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap; }
.price-plan { font-family: 'Clash Display', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.price-amount { font-family: 'Clash Display', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; margin: 1rem 0 0.3rem; display: flex; align-items: baseline; gap: 0.75rem; }
.price-old { text-decoration: line-through; opacity: 0.6; font-size: 1.5rem; }
.price-new { font-size: 2.5rem; }
.price-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.price-feature { font-size: 0.88rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.price-feature::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-btn { display: block; text-align: center; padding: 0.85rem; border-radius: 100px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.pb-primary { background: var(--orange); color: #fff; }
.pb-primary:hover { background: #E04500; }
.pb-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.pb-outline:hover { border-color: var(--navy); }
.pb-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.pb-white:hover { background: rgba(255,255,255,0.25); }

/* Testimonial */
.testimonials-section { background: var(--off); padding: 4rem 1.25rem; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; }
.testi-text { font-size: 0.92rem; color: var(--ink); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }
.testi-text::before { content: '"'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.5rem; margin-right: 0.3rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--muted); }

/* CTA */
.cta-section { background: var(--navy); padding: 4rem 1.25rem; }
.cta-inner { text-align: center; padding: 0; position: relative; }
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(20,70,192,0.4) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.cta-title { font-family: 'Clash Display', sans-serif; font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-title em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--cyan); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-urls { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; position: relative; z-index: 1; }
.cta-url { font-size: 0.85rem; font-weight: 600; color: var(--cyan); text-decoration: none; }

/* Footer */
footer { background: #040810; padding: 2rem 1.25rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-left { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-left strong { color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; }

/* Accreditation strip */
.accred-strip { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 1.25rem; }
.accred-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.accred-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.accred-badges { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.accred-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--navy); padding: 0.5rem 1rem; background: #fff; border: 1px solid var(--border); border-radius: 8px; white-space: nowrap; }

/* WEF Section Responsive Grids */
.wef-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
@media (min-width: 640px) {
  .wef-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .wef-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wef-two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .wef-two-col-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.wef-criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .wef-criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .wef-criteria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .wef-criteria-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.wef-skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .wef-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Media Queries */
@media (max-width: 640px) {
  .cta-glow {
    height: 250px;
  }
}

@media (min-width: 640px) {
  .missions-grid { grid-template-columns: repeat(2, 1fr); }
  .nep-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero { padding: 140px 1.25rem 60px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .section { padding: 6rem 1.25rem; }
  .curri-section { padding: 6rem 1.25rem; }
  .pricing-section { padding: 6rem 1.25rem; }
  .testimonials-section { padding: 6rem 1.25rem; }
  .cta-section { padding: 6rem 1.25rem; }
  .how-steps { grid-template-columns: repeat(4, 1fr); }
  .missions-grid { grid-template-columns: repeat(3, 1fr); }
  .nep-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-container { padding: 16px 0; }
  .logo-strip { padding: 1.5rem 5vw; }
  .section { padding: 6rem 5vw; }
  .curri-section { padding: 6rem 5vw; }
  .pricing-section { padding: 6rem 5vw; }
  .testimonials-section { padding: 6rem 5vw; }
  .cta-section { padding: 6rem 5vw; }
  footer { padding: 2rem 5vw; }
  .accred-strip { padding: 2rem 5vw; }
  .missions-grid { grid-template-columns: repeat(4, 1fr); }
}

.research-behind {
  padding: 6rem 5vw;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .sec-sub {
    margin-bottom: 5%;
  }
  .curri-section {
    padding: 4rem 1rem;
  }
  .section {
    padding: 2rem 1rem;
  }
}



