/* Self-hosted Plus Jakarta Sans */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/media/fonts/PlusJakartaSans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/media/fonts/PlusJakartaSans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* EU-inspired professional color palette */
  --primary-color: #003399;
  --primary-dark: #002266;
  --primary-light: #0044cc;
  --secondary-color: #ffcc00;
  --accent-color: #00a3d9;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b7280;
  --bg-light: #f8f8f6;
  --bg-warm: #f7f6f3;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --border-light: #f0f0f0;
  --dark-bg: #1e293b;
  --dark-accent: #38bdf8;

  /* Subtle shadows for editorial depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px -2px rgba(0, 0, 0, 0.08), 0 1px 3px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 6px 16px -4px rgba(0, 0, 0, 0.08), 0 2px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 12px 24px -6px rgba(0, 0, 0, 0.08), 0 4px 10px -4px rgba(0, 0, 0, 0.03);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  box-shadow: none;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  min-height: 64px;
  box-sizing: border-box;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 2rem;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.nav-logo {
  height: auto;
  max-height: 36px !important;
  max-width: 180px !important;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-line-1 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-line-2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.125rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.85rem;
  transition: color var(--transition-base);
  position: relative;
  padding: 0.5rem 0.75rem;
  display: block;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after {
  transform: scaleX(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-base);
  border-radius: 1px;
  display: block;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.nav-dropdown:hover > .nav-link .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.1), 0 2px 8px -2px rgba(0, 0, 0, 0.06);
  min-width: 200px;
  z-index: 1001;
  border: 1px solid var(--border-light);
}

.nav-dropdown:hover > .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 51, 153, 0.04);
  color: var(--primary-color);
}

/* Team page hero */
.page-header--team {
  padding-bottom: 4rem;
}

.team-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: shapeFloat 6s ease-in-out infinite, shapeFadeIn 0.8s ease-out forwards;
}

.shape--1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.18) 0%, rgba(255, 204, 0, 0) 70%);
  top: 15%;
  left: 8%;
  animation-delay: 0s, 0.2s;
}

.shape--2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 163, 217, 0.22) 0%, rgba(0, 163, 217, 0) 70%);
  top: 25%;
  right: 12%;
  animation-delay: 1s, 0.4s;
}

.shape--3 {
  width: 80px;
  height: 80px;
  background: rgba(255, 204, 0, 0.25);
  bottom: 20%;
  left: 18%;
  border-radius: 12px;
  transform: rotate(25deg);
  animation-delay: 2s, 0.6s;
}

.shape--4 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 163, 217, 0.12) 0%, rgba(0, 163, 217, 0) 70%);
  bottom: -5%;
  right: 5%;
  animation-delay: 0.5s, 0.3s;
}

.shape--5 {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.15);
  top: 35%;
  left: 42%;
  animation-delay: 1.5s, 0.5s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes shapeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-role-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1rem 2.25rem;
}

.hero-role-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-role-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-role-stat--filled .hero-role-number {
  color: var(--secondary-color);
}

.hero-role-stat--open .hero-role-number {
  color: var(--accent-color);
}

.hero-role-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}

.hero-role-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 1.75rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: #e8eef6;
  color: var(--text-dark);
  padding: 0;
  text-align: left;
  overflow: hidden;
}

.hero-background {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0;
  min-height: 620px;
  padding: 3rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem 0;
}

.hero-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  max-width: 540px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-medium);
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

/* Hero right panel */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 504px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0, 51, 153, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating background squares — homepage hero */
.hero-shape {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
  will-change: transform;
}

@keyframes heroFloat1 {
  0%   { right: -12%; transform: rotate(0deg); }
  100% { right: 110%; transform: rotate(-25deg); }
}
@keyframes heroFloat2 {
  0%   { left: -10%; transform: rotate(0deg); }
  100% { left: 108%; transform: rotate(20deg); }
}
@keyframes heroFloat3 {
  0%   { right: -14%; transform: rotate(0deg); }
  100% { right: 112%; transform: rotate(35deg); }
}
@keyframes heroFloat4 {
  0%   { left: -12%; transform: rotate(0deg); }
  100% { left: 106%; transform: rotate(-15deg); }
}

.hero-shape--1 {
  width: 260px;
  height: 260px;
  background: rgba(0, 51, 153, 0.045);
  top: 5%;
  animation: heroFloat1 34s linear infinite;
}
.hero-shape--2 {
  width: 180px;
  height: 180px;
  background: rgba(0, 51, 153, 0.04);
  bottom: 12%;
  border-radius: 22px;
  animation: heroFloat2 28s linear infinite -10s;
}
.hero-shape--3 {
  width: 140px;
  height: 140px;
  background: rgba(0, 51, 153, 0.035);
  top: 50%;
  animation: heroFloat3 40s linear infinite -18s;
}
.hero-shape--4 {
  width: 200px;
  height: 200px;
  background: rgba(0, 51, 153, 0.03);
  top: 20%;
  border-radius: 28px;
  animation: heroFloat4 32s linear infinite -6s;
}

/* =============================================
   HOMEPAGE SECTIONS
   ============================================= */

/* Shared section kicker */
.section-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

/* --- What is NextGen Education --- */
.whatis {
  background: var(--bg-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.whatis .container {
  position: relative;
  z-index: 1;
}

.whatis-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 2rem;
}

.whatis-statement {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.whatis-body {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 1.5rem;
  max-width: 850px;
}

.whatis-body:last-child {
  margin-bottom: 0;
}

/* --- Problem section --- */
.problem-section {
  background: var(--dark-bg);
  color: white;
  padding: 6rem 0;
  position: relative;
}

.what-is-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.what-is-left {
  position: sticky;
  top: 7rem;
}

.what-is-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark-accent);
  margin-bottom: 1.5rem;
}

.what-is-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}

.what-is-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.what-is-point {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.what-is-point:last-child {
  padding-bottom: 0;
}

.what-is-point h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.what-is-point p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

.what-is-point--conclusion {
  border-top: none;
  padding-top: 1rem;
}

.what-is-point--conclusion p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
}

/* --- Decades of Experience --- */
.decades-section {
  background: var(--bg-warm);
  padding: 6rem 0;
}

.decades-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.decades-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 1.75rem;
}

.decades-text p {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.decades-text p:last-child {
  margin-bottom: 0;
}

.decades-callout {
  position: relative;
  padding-top: 1rem;
}

.decades-callout-inner {
  background: #fffcf0;
  border-radius: 20px;
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.08);
}

.decades-callout-icon {
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
  z-index: 1;
}

.decades-quote {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* --- Vision / Empowered Students --- */
.vision-section {
  background: var(--bg-white);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vision-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

/* EU stars circle */
.vision-title-wrap {
  position: relative;
  padding: 0 0 3rem;
  margin: 0 0 0.75rem;
  clip-path: inset(-200px -200px 0 -200px);
}

.eu-stars {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 110%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: starsRotate 90s linear infinite;
}

.eu-star {
  position: absolute;
  color: #FFCC00;
  font-size: 2.5rem;
  line-height: 1;
  --a: calc(var(--i) * 360deg / 27);
  left: calc(50% + 280px * cos(var(--a)));
  top: calc(50% - 280px * sin(var(--a)));
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  user-select: none;
  -webkit-user-select: none;
}

.vision-inner.aos-animate .eu-star {
  animation: starPop 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.04s);
}

@keyframes starPop {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  55% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.45; }
}

@keyframes starsRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.vision-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.vision-body {
  position: relative;
  z-index: 1;
}

.vision-body p {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 1.25rem;
  text-align: center;
}

.vision-pullquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.35;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.vision-cta-text {
  font-size: 1.0625rem;
  color: var(--text-medium);
  margin: 0 0 2rem;
}

.vision-btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(0, 51, 153, 0.25);
}

.vision-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.3);
}

/* Reasons grid — editorial numbered cards */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.reason-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: 16px;
  background: transparent;
  border-left: 3px solid transparent;
  transition: all var(--transition-base);
}

.reason-card:hover {
  transform: none;
  box-shadow: none;
}

.reason-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  opacity: 0.2;
}

.reason-num--blue { color: var(--primary-color); }
.reason-num--teal { color: var(--accent-color); }
.reason-num--gold { color: #d4a800; }
.reason-num--navy { color: var(--primary-dark); }

.reason-body h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.25rem 0 0.5rem;
}

.reason-body p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* --- Pillars / Why this matters --- */
.pillars-section {
  background: var(--bg-white);
  padding: 6rem 0;
}

.pillars-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.pillars-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.pillars-sub {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillars-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.pillar-card {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  text-align: left;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-icon-wrap--blue {
  background: rgba(0, 51, 153, 0.08);
  color: var(--primary-color);
}

.pillar-icon-wrap--teal {
  background: rgba(0, 163, 217, 0.1);
  color: var(--accent-color);
}

.pillar-icon-wrap--gold {
  background: rgba(255, 204, 0, 0.12);
  color: #b8930a;
}

.pillar-icon-wrap--navy {
  background: rgba(0, 34, 102, 0.08);
  color: var(--primary-dark);
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100px, 20%);
  height: 1px;
  background: var(--border-color);
}

.section-alt + .section::before,
.section + .section-alt::before {
  display: none;
}

.section:first-of-type {
  padding-top: 5rem;
}

.section-alt {
  background: var(--bg-warm);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 1.75rem;
  padding: 0.625rem 1.25rem;
  background: rgba(0, 51, 153, 0.06);
  border-radius: 50px;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 3.5rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.section-conclusion {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-top: 2.5rem;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-top: none;
  border-left: 3px solid var(--primary-color);
  line-height: 1.7;
  background: var(--bg-warm);
  border-radius: 0 8px 8px 0;
  padding-right: 1.75rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 60%, #001a4d 100%);
  color: white;
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 60%, rgba(0, 163, 217, 0.12) 0%, transparent 40%);
  opacity: 1;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.page-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  opacity: 0.92;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.content-block {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1rem;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.content-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.content-block p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block p + p {
  margin-top: 1rem;
}

.lead {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

/* Key Points Grid */
.key-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3.5rem 0 2rem;
}

.key-points-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.key-point-card {
  background: var(--bg-white);
  padding: 2.25rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  text-align: left;
  position: relative;
}

.key-point-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 51, 153, 0.2);
}

.key-point-icon {
  margin-bottom: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(0, 51, 153, 0.05);
  border-radius: 10px;
}

.key-point-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.key-point-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  margin-top: 0;
  letter-spacing: -0.01em;
}

.key-point-card p {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 0;
  margin-top: 0.25rem;
}

/* Layers Visual */
.layers-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.layer-card {
  background: var(--bg-white);
  padding: 2rem 2.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--primary-color);
  position: relative;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.layer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-color);
}

.layer-icon {
  flex-shrink: 0;
  margin-bottom: 0;
  padding-top: 0.125rem;
}

.layer-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.layer-card-content {
  flex: 1;
  min-width: 0;
}

.layer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.layer-card p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-top: 0;
}

/* Layer Section */
.layer-section {
  max-width: 900px;
  margin: 0 auto;
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.layer-number-large {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}

.layer-header h2 {
  margin: 0;
  flex: 1;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary-color);
  transition: all var(--transition-base);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-medium);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Principle Cards */
.principle-card {
  background: var(--bg-white);
  padding: 3.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

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

.principle-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.principle-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 51, 153, 0.25);
}

.principle-card .section-label {
  margin-bottom: 0;
}

.principle-card h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  margin-top: 0;
}

.principle-card h3 {
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.375rem;
}

.principle-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
}

/* About page team grid */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 2.5rem 0 3rem;
}

.about-team-member {
  text-align: center;
}

.about-team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--border-light);
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-member h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.about-team-role {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.about-team-member p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-medium);
}

/* About page — founder cards */
.about-founders {
  background: var(--bg-warm);
  padding: 6rem 0;
}

.about-founders-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.about-founders-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.about-founders-header p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
}

.about-founders-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.about-founder {
  display: flex;
  gap: 2rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 2rem;
  transition: all var(--transition-base);
}

.about-founder:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--border-light);
}

.about-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-founder-info {
  flex: 1;
  min-width: 0;
}

.about-founder-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.about-founder-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.about-founder-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-founder-links {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.about-founder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  transition: all var(--transition-base);
  text-decoration: none;
}

.about-founder-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.about-founder-info p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0;
}

.about-founder-email {
  margin-top: 0.5rem;
}

.about-founder-email a {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
}

.about-founders-cta {
  text-align: center;
  max-width: 680px;
  margin: 2rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
}

.about-founders-cta a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-founders-cta a:hover {
  color: var(--primary-dark);
}

.hiw-programme-inner--centered {
  text-align: center;
}

.hiw-programme-inner--centered .hiw-programme-text {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hiw-programme .hiw-layer-link {
  background: #fff;
}

/* Demo screen mockup */
.demo-screen {
  max-width: 55%;
  margin: 2.5rem auto 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 3px solid var(--border-color, #e2e5ea);
  display: block;
  text-decoration: none;
}

.demo-screen img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.demo-screen:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}

.demo-screen-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  background: rgba(0, 34, 102, 0.15);
}

.demo-screen:hover .demo-screen-overlay {
  opacity: 1;
}

.demo-screen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.demo-screen:hover .demo-screen-btn {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

.demo-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 820px;
  margin: 1.25rem auto 0;
}

.demo-link-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--bg-warm);
  border: 1px solid var(--border-color, #e2e5ea);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.demo-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.1));
}

.demo-link-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-dark, #002266);
  color: #fff;
  border-radius: 10px;
}

.demo-link-text {
  flex: 1;
  min-width: 0;
}

.demo-link-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--primary-dark);
  margin-bottom: 0.125rem;
}

.demo-link-text span {
  font-size: 0.8125rem;
  color: var(--text-medium);
  line-height: 1.4;
}

.demo-link-arrow {
  flex-shrink: 0;
  color: var(--text-light, #999);
  transition: transform 0.25s ease;
}

.demo-link-card:hover .demo-link-arrow {
  transform: translateX(3px);
  color: var(--primary-dark);
}

@media (max-width: 600px) {
  .demo-links {
    grid-template-columns: 1fr;
  }
}

.hiw-programme-note {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 1.5rem 0 0;
}

.hiw-programme-note:first-of-type {
  margin-top: 2rem;
}

/* Get Involved contact section */
.gi-contact {
  background: var(--bg-warm);
  padding: 6rem 0;
}

.gi-contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.gi-contact .section-kicker {
  margin-bottom: 1rem;
}

.gi-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.gi-contact p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
}

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

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
  color: var(--text-medium);
}

.checkbox-label input[type='checkbox'] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  line-height: 1.5;
}

/* Roadmap */
.roadmap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all var(--transition-base);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.roadmap-step:hover {
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.roadmap-step-full {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
}

.step-content {
  flex: 1;
  width: 100%;
}

.step-content h3 {
  margin-bottom: 0.375rem;
  margin-top: 0;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.125rem;
}

.step-content p {
  margin-bottom: 0;
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 1.25rem 0;
  padding-left: 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

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

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.5rem;
  width: 28px;
  height: 28px;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.feature-list li:hover {
  padding-left: 2.75rem;
}

/* Commitments Grid */
.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.commitment-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.commitment-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.commitment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.commitment-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 51, 153, 0.2);
}

.commitment-card h3 {
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
}

.commitment-card p {
  margin-bottom: 0;
  color: var(--text-medium);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0 2.5rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-base);
}

.team-member-image {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-white);
  background: var(--bg-light);
  position: relative;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member:hover .team-member-image {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.team-member h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.team-member-placeholder {
  /* Empty placeholder for future team member */
  display: block;
}

/* Partnership Grid */
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.partnership-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

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

.partnership-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: var(--dark-bg);
  padding: 6rem 0;
  text-align: center;
  color: white;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark-accent);
  margin-bottom: 1.25rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.cta-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0 0 2.5rem;
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--dark-bg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn-secondary:hover {
  background-color: white;
  color: var(--dark-bg);
  border-color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: nowrap;
}

/* Partner country tags */
.partner-tags-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  opacity: 0.6;
  margin: 1.5rem 0 0.5rem;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  font-size: 1rem;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 51, 153, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 51, 153, 0.2);
}

/* Footer */
.footer {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-brand-col {
  padding-right: 1rem;
}

.footer-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.875rem;
  margin: 0;
}

.footer-nav-col h4 {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

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

.footer-links-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 0.875rem;
}

.footer-meta-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 600;
}

.footer-links-meta li span:last-child {
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.8125rem;
}

.footer-privacy {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-privacy:hover {
  color: var(--text-medium);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
}

/* =============================================
   ILLUSTRATION PLACEHOLDERS
   ============================================= */
.illustration-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
  gap: 0.5rem;
}

.illustration-placeholder small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.illustration-placeholder--sm {
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}

.illustration-placeholder--wide {
  aspect-ratio: 21/9;
  margin-bottom: 2rem;
}

/* Whatis two-column grid */
.whatis-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.whatis-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
}

.whatis-illustration-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vision illustration */
.vision-illustration {
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* Decades illustration */
.decades-illustration {
  margin-bottom: 0;
}

/* =============================================
   HOW IT WORKS PAGE
   ============================================= */

/* Hero — light blue, matching homepage */
.hiw-hero {
  background: #e8eef6;
  color: var(--text-dark);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Floating background squares */
.hiw-shape {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
  will-change: transform;
}

@keyframes hiwSlideRight {
  0%   { left: -15%; transform: rotate(0deg); }
  100% { left: 105%; transform: rotate(30deg); }
}

@keyframes hiwSlideLeft {
  0%   { right: -15%; transform: rotate(0deg); }
  100% { right: 105%; transform: rotate(-30deg); }
}

.hiw-shape--1 {
  width: 220px;
  height: 220px;
  background: rgba(0, 51, 153, 0.05);
  top: 8%;
  animation: hiwSlideRight 26s linear infinite -8s;
}

.hiw-shape--2 {
  width: 180px;
  height: 180px;
  background: rgba(0, 51, 153, 0.04);
  bottom: 5%;
  border-radius: 24px;
  animation: hiwSlideLeft 30s linear infinite -14s;
}

.hiw-shape--3 {
  width: 140px;
  height: 140px;
  background: rgba(0, 51, 153, 0.035);
  top: 45%;
  animation: hiwSlideRight 22s linear infinite -5s;
}

/* Floating squares — What Children Learn hero */
.wcl-shape {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
  will-change: transform;
}

@keyframes wclDrift1 {
  0%   { left: -10%; transform: rotate(0deg); }
  100% { left: 110%; transform: rotate(40deg); }
}
@keyframes wclDrift2 {
  0%   { right: -12%; transform: rotate(0deg); }
  100% { right: 108%; transform: rotate(-20deg); }
}
@keyframes wclDrift3 {
  0%   { left: -14%; transform: rotate(0deg); }
  100% { left: 112%; transform: rotate(15deg); }
}
@keyframes wclDrift4 {
  0%   { right: -10%; transform: rotate(0deg); }
  100% { right: 110%; transform: rotate(-35deg); }
}

.wcl-shape--1 {
  width: 200px;
  height: 200px;
  background: rgba(0, 51, 153, 0.045);
  top: 10%;
  animation: wclDrift1 36s linear infinite -4s;
}
.wcl-shape--2 {
  width: 160px;
  height: 160px;
  background: rgba(0, 51, 153, 0.04);
  bottom: 8%;
  border-radius: 24px;
  animation: wclDrift2 24s linear infinite -12s;
}
.wcl-shape--3 {
  width: 120px;
  height: 120px;
  background: rgba(0, 51, 153, 0.035);
  top: 55%;
  animation: wclDrift3 42s linear infinite -20s;
}
.wcl-shape--4 {
  width: 180px;
  height: 180px;
  background: rgba(0, 51, 153, 0.03);
  top: 25%;
  border-radius: 28px;
  animation: wclDrift4 30s linear infinite -8s;
}

/* Get Involved hero — wider container so h1 fits 2 lines */
.hiw-hero.gi-hero .container {
  max-width: 1060px;
}

/* Floating squares — Get Involved hero */
.gi-shape {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
  will-change: transform;
}

@keyframes giGlide1 {
  0%   { right: -12%; transform: rotate(0deg); }
  100% { right: 112%; transform: rotate(-30deg); }
}
@keyframes giGlide2 {
  0%   { left: -10%; transform: rotate(0deg); }
  100% { left: 108%; transform: rotate(25deg); }
}
@keyframes giGlide3 {
  0%   { right: -15%; transform: rotate(0deg); }
  100% { right: 110%; transform: rotate(45deg); }
}
@keyframes giGlide4 {
  0%   { left: -12%; transform: rotate(0deg); }
  100% { left: 110%; transform: rotate(-20deg); }
}

.gi-shape--1 {
  width: 240px;
  height: 240px;
  background: rgba(0, 51, 153, 0.04);
  top: 6%;
  animation: giGlide1 38s linear infinite -2s;
}
.gi-shape--2 {
  width: 150px;
  height: 150px;
  background: rgba(0, 51, 153, 0.045);
  bottom: 10%;
  border-radius: 22px;
  animation: giGlide2 26s linear infinite -16s;
}
.gi-shape--3 {
  width: 110px;
  height: 110px;
  background: rgba(0, 51, 153, 0.035);
  top: 40%;
  animation: giGlide3 20s linear infinite -7s;
}
.gi-shape--4 {
  width: 190px;
  height: 190px;
  background: rgba(0, 51, 153, 0.03);
  top: 60%;
  border-radius: 26px;
  animation: giGlide4 44s linear infinite -22s;
}

/* Floating squares — About hero */
.about-shape {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
  will-change: transform;
}

@keyframes aboutMove1 {
  0%   { left: -12%; transform: rotate(0deg); }
  100% { left: 112%; transform: rotate(35deg); }
}
@keyframes aboutMove2 {
  0%   { right: -10%; transform: rotate(0deg); }
  100% { right: 110%; transform: rotate(-40deg); }
}
@keyframes aboutMove3 {
  0%   { right: -14%; transform: rotate(0deg); }
  100% { right: 108%; transform: rotate(20deg); }
}
@keyframes aboutMove4 {
  0%   { left: -10%; transform: rotate(0deg); }
  100% { left: 108%; transform: rotate(-30deg); }
}

.about-shape--1 {
  width: 220px;
  height: 220px;
  background: rgba(0, 51, 153, 0.04);
  top: 8%;
  animation: aboutMove1 32s linear infinite -6s;
}
.about-shape--2 {
  width: 170px;
  height: 170px;
  background: rgba(0, 51, 153, 0.045);
  bottom: 6%;
  border-radius: 26px;
  animation: aboutMove2 22s linear infinite -14s;
}
.about-shape--3 {
  width: 130px;
  height: 130px;
  background: rgba(0, 51, 153, 0.035);
  top: 50%;
  animation: aboutMove3 38s linear infinite -3s;
}
.about-shape--4 {
  width: 160px;
  height: 160px;
  background: rgba(0, 51, 153, 0.03);
  top: 22%;
  border-radius: 22px;
  animation: aboutMove4 46s linear infinite -20s;
}

.hiw-hero .container {
  position: relative;
  z-index: 1;
  max-width: 740px;
  text-align: center;
  margin: 0 auto;
}

.hiw-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hiw-hero .hiw-hero-sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--text-medium);
  font-weight: 500;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 0;
}

/* Intro prose section */
.hiw-intro {
  background: var(--bg-white);
  padding: 5rem 0 4rem;
}

.hiw-intro-prose {
  max-width: 820px;
  margin: 0 auto;
}

.hiw-intro-prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 1.25rem;
}

.hiw-intro-prose p:last-child {
  margin-bottom: 0;
}

/* Programme strip — 3 highlights */
.hiw-programme {
  background: var(--bg-warm);
  padding: 5.5rem 0;
}

/* What Children Learn — principles grid */
.wcl-principles {
  background: var(--bg-white);
  padding: 0 0 6rem;
}

.wcl-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.wcl-principle {
  background: var(--bg-warm);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 2rem 1.75rem;
  transition: all var(--transition-base);
}

.wcl-principle:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-2px);
}

.wcl-principle-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.wcl-principle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  flex-shrink: 0;
}

.wcl-principle h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.wcl-principle p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-medium);
  margin: 0 0 0.875rem;
}

.wcl-principle p:last-child {
  margin-bottom: 0;
}

/* What Children Learn — how they learn section */
.wcl-how {
  background: var(--bg-white);
  padding: 6rem 0;
}

.wcl-how-inner {
  max-width: 820px;
  margin: 0 auto;
}

.wcl-how-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem 0 2.5rem;
  display: block;
  box-shadow: var(--shadow-md);
}

.wcl-how h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.wcl-how p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 1.25rem;
}

.wcl-how p:last-child {
  margin-bottom: 0;
}

.wcl-how-inner--centered {
  text-align: center;
}

.hiw-programme-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hiw-programme h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.hiw-programme-text {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 2.5rem;
  max-width: 740px;
}

.hiw-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hiw-highlight {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  text-align: left;
  transition: all var(--transition-base);
}

.hiw-highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.hiw-highlight-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.hiw-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 163, 217, 0.1);
  color: var(--accent-color);
}

.hiw-highlight strong {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hiw-highlight span {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Layers section */
.hiw-layers {
  background: var(--bg-white);
  padding: 6rem 0;
}

.hiw-layers-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hiw-layers-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

.hiw-layers-header p {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* Layer stack — 2x2 grid */
.hiw-layers-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* When odd number of cards, last one spans full width */
.hiw-layer-link:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* Layer link cards */
.hiw-layer-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem;
  background: var(--bg-warm);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-base);
}

/* Visual variant — single column, image-left cards */
.hiw-layers-stack--visual {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.hiw-layers-stack--visual .hiw-layer-link {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  border-left: none;
}

.hiw-layers-stack--visual .hiw-layer-img {
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  display: block;
}

.hiw-layers-stack--visual .hiw-layer-link-top {
  padding: 1.75rem 2rem 0;
}

.hiw-layers-stack--visual .hiw-layer-content {
  padding: 0.5rem 2rem 1.75rem;
}

.hiw-layer-link:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  border-left-color: var(--accent-color);
  transform: translateY(-3px);
}

.hiw-layer-link-top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.hiw-layer-link-top h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.hiw-layer-link-top .hiw-layer-arrow {
  margin-left: auto;
}

.hiw-layer-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hiw-layer-content {
  flex: 1;
  min-width: 0;
}

.hiw-layer-link h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 0.625rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hiw-layer-link p {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

.hiw-layer-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 51, 153, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--primary-color);
}

.hiw-layer-link:hover .hiw-layer-arrow {
  background: var(--primary-color);
  color: white;
}

/* Split section — schools + academy */
.hiw-split {
  background: var(--bg-warm);
  padding: 6rem 0;
}

.hiw-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.hiw-split-col {
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hiw-split-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hiw-split-body {
  padding: 2rem 2.5rem 2.5rem;
}

.hiw-split-col h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hiw-split-col h2 .hiw-split-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.hiw-split-col p {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.hiw-split-col p:last-child {
  margin-bottom: 0;
}

.hiw-split-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hiw-split-icon--blue {
  background: rgba(0, 51, 153, 0.08);
  color: var(--primary-color);
}

.hiw-split-icon--gold {
  background: rgba(245, 180, 0, 0.12);
  color: #d4940a;
}

/* Closing statement */
.hiw-closing {
  background: var(--bg-white);
  padding: 6rem 0;
  text-align: center;
}

.hiw-closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hiw-closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 2rem;
}

.hiw-closing p {
  font-size: 1.0625rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.hiw-closing p:last-child {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1875rem;
  margin-top: 2rem;
}

/* =============================================
   LAYER DETAIL PAGES
   ============================================= */

/* Layer hero */
.layer-hero {
  background: #e8eef6;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating squares — layer-hero sub-pages */
.layer-shape {
  position: absolute;
  border-radius: 18px;
  pointer-events: none;
  will-change: transform;
}

@keyframes layerSlide1 {
  0%   { right: -12%; transform: rotate(0deg); }
  100% { right: 112%; transform: rotate(25deg); }
}
@keyframes layerSlide2 {
  0%   { left: -10%; transform: rotate(0deg); }
  100% { left: 110%; transform: rotate(-30deg); }
}
@keyframes layerSlide3 {
  0%   { left: -14%; transform: rotate(0deg); }
  100% { left: 108%; transform: rotate(18deg); }
}

.layer-shape--1 {
  width: 180px;
  height: 180px;
  background: rgba(0, 51, 153, 0.04);
  top: 8%;
  animation: layerSlide1 30s linear infinite -4s;
}
.layer-shape--2 {
  width: 140px;
  height: 140px;
  background: rgba(0, 51, 153, 0.035);
  bottom: 6%;
  border-radius: 22px;
  animation: layerSlide2 36s linear infinite -16s;
}
.layer-shape--3 {
  width: 110px;
  height: 110px;
  background: rgba(0, 51, 153, 0.03);
  top: 45%;
  animation: layerSlide3 24s linear infinite -10s;
}

.layer-back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 auto 2rem;
  transition: gap var(--transition-base);
}

.layer-back:hover {
  gap: 0.625rem;
}

.layer-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.layer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.layer-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.layer-tagline {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--text-medium);
  font-weight: 500;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Layer body — prose content */
.layer-body {
  background: var(--bg-white);
  padding: 5.5rem 0;
}

.layer-prose {
  max-width: 820px;
  margin: 0 auto;
}

.layer-prose-img {
  width: 75%;
  max-width: 620px;
  height: auto;
  border-radius: 16px;
  margin: 2.5rem auto;
  display: block;
  box-shadow: var(--shadow-md);
}

.layer-lead {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.layer-prose p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0 0 1.25rem;
}

.layer-prose h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 3rem 0 1.25rem;
}

.layer-prose h2:first-of-type {
  margin-top: 2.5rem;
}

/* Topic cards (Learning Journeys + Learner Profile) */
.layer-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem -4rem 2rem;
  width: calc(100% + 8rem);
}

.layer-topic {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--bg-warm);
  transition: all var(--transition-base);
}

.layer-topic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.layer-topic h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.layer-topic h3 svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.layer-topic p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-medium);
  margin: 0;
}

/* Layer navigation between pages */
.layer-nav {
  background: var(--bg-white);
  padding: 3rem 0;
}

.layer-nav-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.layer-nav-spacer {
  flex: 1;
}

.layer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-warm);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all var(--transition-base);
  flex: 1;
  max-width: 320px;
}

.layer-nav-link:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.layer-nav-prev {
  text-align: left;
}

.layer-nav-next {
  text-align: right;
  margin-left: auto;
  flex-direction: row-reverse;
}

.layer-nav-next .layer-nav-label,
.layer-nav-next strong {
  text-align: right;
}

.layer-nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.125rem;
}

.layer-nav-link strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.layer-nav-link svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

/* =============================================
   MICRO-INTERACTIONS
   ============================================= */

/* Hero image float */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-image-wrapper {
  animation: gentleFloat 4s ease-in-out infinite;
}

/* Pillar card colored shadows on hover */
.pillar-card--blue:hover { box-shadow: 0 8px 24px rgba(0, 51, 153, 0.12); }
.pillar-card--teal:hover { box-shadow: 0 8px 24px rgba(0, 163, 217, 0.12); }
.pillar-card--gold:hover { box-shadow: 0 8px 24px rgba(255, 204, 0, 0.18); }
.pillar-card--navy:hover { box-shadow: 0 8px 24px rgba(0, 34, 102, 0.12); }

/* Decades callout hover lift */
.decades-callout-inner {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.decades-callout-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 204, 0, 0.12);
}

/* Vision button pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 51, 153, 0.25); }
  50% { box-shadow: 0 4px 24px rgba(0, 51, 153, 0.4); }
}

.vision-btn {
  animation: pulseGlow 3s ease-in-out infinite;
}

.vision-btn:hover {
  animation: none;
}

/* ============================================
   TABLET STYLES (768px - 1024px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section {
    padding: 5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.75fr;
    min-height: 540px;
  }

  .hero-content {
    padding: 7rem 3rem 4rem 0;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  }

  .hero-image-wrapper {
    max-width: 380px;
    border-radius: 16px;
  }

  .page-header {
    padding: 8.5rem 0 4.5rem;
  }

  .layers-visual {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .key-points-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

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

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

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

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

  .content-block {
    padding: 0 1.5rem;
  }

  .content-block h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }

  .layer-card,
  .key-point-card,
  .commitment-card,
  .partnership-card {
    padding: 2.25rem 2rem;
  }

  .principle-card {
    padding: 3rem 2.5rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .cta-buttons {
    flex-wrap: wrap;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
  }

  .what-is-split {
    gap: 3.5rem;
  }

  /* Decades section — tablet */
  .decades-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
  }

  .decades-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }

  /* Vision section — tablet */
  .vision-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  }

  .eu-stars {
    width: 440px;
    height: 440px;
  }

  .eu-star {
    font-size: 2rem;
    left: calc(50% + 200px * cos(var(--a)));
    top: calc(50% - 200px * sin(var(--a)));
  }

  .vision-pullquote {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  /* Pillars section — tablet */
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* How It Works — tablet */
  .hiw-hero {
    padding: 8.5rem 0 4.5rem;
  }

  .hiw-highlights {
    gap: 1rem;
  }

  .layer-topics {
    grid-template-columns: 1fr 1fr;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }

  .wcl-principles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hiw-layers-stack {
    gap: 1rem;
  }

  .hiw-split-grid {
    gap: 2rem;
  }

  .hiw-split-body {
    padding: 1.75rem 2rem 2rem;
  }

  /* Reasons grid — tablet */
  .reasons-grid {
    gap: 1.5rem 2rem;
  }

  /* About founder cards — tablet */
  .about-founders {
    padding: 5rem 0;
  }

  .about-founder {
    padding: 1.75rem;
    gap: 1.5rem;
  }

}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .navbar .container {
    padding: 0 20px;
    min-height: 56px;
  }

  .nav-logo {
    max-height: 32px;
    max-width: 150px;
  }

  .brand-line-1 {
    font-size: 0.75rem;
  }

  .brand-line-2 {
    font-size: 1rem;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 56px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    text-align: left;
    transition: right var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    gap: 0;
    border-top: 1px solid var(--border-light);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    padding: 0.875rem 1.5rem;
    width: 100%;
    font-size: 0.9375rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-warm);
  }

  /* Mobile dropdown */
  .nav-dropdown:hover > .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    background: transparent;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.open > .nav-dropdown-menu {
    display: block;
    max-height: 300px;
  }

  .nav-dropdown.open > .nav-link .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    padding: 0.625rem 1.5rem 0.625rem 2.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
  }

  .nav-dropdown-menu a:hover {
    background: var(--bg-warm);
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    padding: 5.5rem 0 2rem;
  }

  .hero-kicker {
    font-size: 0.6875rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-visual {
    padding: 0 0 2.5rem;
  }

  .hero-image-wrapper {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 32px -8px rgba(0, 51, 153, 0.15), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  }

  .hero-shape--1 { width: 160px; height: 160px; }
  .hero-shape--2 { width: 120px; height: 120px; }
  .hero-shape--3 { width: 100px; height: 100px; }
  .hero-shape--4 { width: 130px; height: 130px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .page-header {
    padding: 7rem 0 3.5rem;
  }

  .page-header--team {
    padding-bottom: 2.5rem;
  }

  .hero-role-bar {
    margin-top: 1.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
  }

  .hero-role-number {
    font-size: 1.75rem;
  }

  .hero-role-label {
    font-size: 0.8125rem;
  }

  .hero-role-divider {
    height: 28px;
    margin: 0 1.25rem;
  }

  .shape--1 { width: 120px; height: 120px; }
  .shape--2 { width: 80px; height: 80px; }
  .shape--3 { width: 50px; height: 50px; }
  .shape--4 { width: 140px; height: 140px; }
  .shape--5 { display: none; }

  .page-header h1 {
    margin-bottom: 1rem;
  }

  .content-block h2 {
    font-size: 1.75rem;
  }

  .whatis {
    padding: 4rem 0;
  }

  .whatis-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatis-statement {
    margin-bottom: 1.25rem;
  }

  .problem-section {
    padding: 4rem 0;
  }

  .what-is-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .what-is-left {
    position: static;
  }

  .section {
    padding: 4rem 0;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .layers-visual {
    grid-template-columns: 1fr;
  }

  .key-points-grid {
    grid-template-columns: 1fr;
  }

  .key-points-grid-3 {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member-placeholder {
    display: none;
  }

  .team-member-image {
    width: 100px;
    height: 100px;
  }

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

  .principle-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .principle-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .principle-card {
    padding: 2rem;
  }

  .layer-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .layer-number-large {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .roadmap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .roadmap-step {
    flex-direction: row;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .roadmap-step-full {
    grid-column: 1;
    max-width: 100%;
  }

  .step-number {
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 0.9375rem;
  }

  .step-content h3 {
    font-size: 1.0625rem;
  }

  .step-content p {
    font-size: 0.875rem;
  }

  .section:first-of-type {
    padding-top: 4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .layer-card,
  .commitment-card,
  .partnership-card {
    padding: 2rem 1.5rem;
  }

  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .key-point-card {
    padding: 2rem 1.5rem;
  }

  .key-point-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .key-point-icon svg {
    width: 24px;
    height: 24px;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .stat-label {
    font-size: 0.9375rem;
  }

  .partnership-card h3 {
    font-size: 1.25rem;
  }

  .partnership-card p {
    font-size: 1rem;
  }

  .content-block h3 {
    font-size: 1.375rem;
  }

  .content-block p {
    font-size: 1.0625rem;
  }

  .whatis {
    padding: 3rem 0;
  }

  .whatis-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .illustration-placeholder--wide {
    aspect-ratio: 16/9;
  }

  .problem-section {
    padding: 3rem 0;
  }

  .what-is-split {
    gap: 2rem;
  }

  .what-is-point {
    padding: 1.5rem 0;
  }

  /* Decades section — mobile */
  .decades-section {
    padding: 3rem 0;
  }

  .decades-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .decades-title {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
  }

  .decades-text p {
    font-size: 1rem;
  }

  .decades-callout-inner {
    padding: 2rem;
  }

  .decades-quote {
    font-size: 1.125rem;
  }

  /* Reasons grid — mobile */
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .reason-card {
    padding: 1.5rem;
  }

  .reason-num {
    font-size: 2.25rem;
  }

  /* Vision section — mobile */
  .vision-section {
    padding: 3.5rem 0;
  }

  .vision-title {
    font-size: 1.75rem;
  }

  .eu-stars {
    width: 400px;
    height: 400px;
  }

  .eu-star {
    font-size: 1.5rem;
    left: calc(50% + 180px * cos(var(--a)));
    top: calc(50% - 180px * sin(var(--a)));
  }

  .vision-title-wrap {
    padding: 0 0 1rem;
  }

  .vision-body p {
    font-size: 1rem;
  }

  .vision-pullquote {
    font-size: 1.25rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
  }

  .vision-cta-text {
    font-size: 1rem;
  }

  /* Pillars section — mobile */
  .pillars-section {
    padding: 3rem 0;
  }

  .pillars-header {
    margin-bottom: 2.5rem;
  }

  .pillars-title {
    font-size: 1.625rem;
  }

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

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pillar-card {
    padding: 1.5rem 1.25rem;
  }

  .pillar-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .pillar-card h3 {
    font-size: 1rem;
  }

  .pillar-card p {
    font-size: 0.8125rem;
  }

  .feature-list li {
    padding-left: 2rem;
    font-size: 1rem;
  }

  .feature-list li::before {
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
  }

  .feature-list li:hover {
    padding-left: 2.5rem;
  }

  .lead {
    font-size: 1.25rem;
  }

  .section-intro {
    font-size: 1.0625rem;
  }

  .section-conclusion {
    font-size: 1.0625rem;
    margin-top: 2rem;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
  }

  .cta-body {
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
  }

  /* About team mobile */
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Demo screen — mobile */
  .demo-screen {
    max-width: 100%;
    border-width: 2px;
  }

  /* About founder cards — mobile */
  .about-founders {
    padding: 3.5rem 0;
  }

  .about-founders-header {
    margin-bottom: 2rem;
  }

  .about-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .about-founder-photo {
    width: 80px;
    height: 80px;
  }

  .about-founder-top {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .about-founder-top > div:first-child {
    text-align: center;
  }

  .about-founder-links {
    justify-content: center;
  }

  .about-founder-info > p {
    text-align: left;
  }

  /* How It Works — mobile */
  .hiw-hero {
    padding: 7rem 0 3.5rem;
  }

  .hiw-hero h1 {
    font-size: 1.875rem;
  }

  .hiw-hero .hiw-hero-sub {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hiw-intro {
    padding: 3rem 0 2rem;
  }

  .wcl-principles {
    padding: 0 0 4rem;
  }

  .wcl-principles-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 600px;
  }

  .wcl-how {
    padding: 4rem 0;
  }

  .wcl-how-img {
    border-radius: 12px;
    margin: 1.5rem 0 2rem;
  }

  .wcl-principle {
    padding: 2rem 1.5rem;
  }

  .hiw-shape--1 { width: 140px; height: 140px; }
  .hiw-shape--2 { width: 120px; height: 120px; }
  .hiw-shape--3 { width: 100px; height: 100px; }

  .wcl-shape--1 { width: 130px; height: 130px; }
  .wcl-shape--2 { width: 110px; height: 110px; }
  .wcl-shape--3 { width: 85px; height: 85px; }
  .wcl-shape--4 { width: 120px; height: 120px; }

  .gi-shape--1 { width: 150px; height: 150px; }
  .gi-shape--2 { width: 100px; height: 100px; }
  .gi-shape--3 { width: 80px; height: 80px; }
  .gi-shape--4 { width: 125px; height: 125px; }

  .about-shape--1 { width: 140px; height: 140px; }
  .about-shape--2 { width: 115px; height: 115px; }
  .about-shape--3 { width: 90px; height: 90px; }
  .about-shape--4 { width: 105px; height: 105px; }

  .layer-shape--1 { width: 120px; height: 120px; }
  .layer-shape--2 { width: 95px; height: 95px; }
  .layer-shape--3 { width: 75px; height: 75px; }

  .hiw-layers-stack--visual .hiw-layer-link {
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto auto;
  }

  .hiw-layers-stack--visual .hiw-layer-img {
    grid-row: 1 / 2;
    height: 180px;
    min-height: 0;
  }

  .hiw-layers-stack--visual .hiw-layer-link-top {
    padding: 1.25rem 1.5rem 0;
  }

  .hiw-layers-stack--visual .hiw-layer-content {
    padding: 0.5rem 1.5rem 1.25rem;
  }

  .hiw-programme {
    padding: 3.5rem 0;
  }

  .hiw-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hiw-layers {
    padding: 3.5rem 0;
  }

  .hiw-layers-stack {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .hiw-layer-link {
    padding: 1.5rem;
    gap: 1rem;
  }

  .hiw-layer-img {
    height: 140px;
    border-radius: 8px;
  }

  .hiw-layer-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .hiw-layer-arrow {
    width: 32px;
    height: 32px;
  }

  /* Layer detail pages mobile */
  .layer-hero {
    padding: 7rem 0 3rem;
  }

  .layer-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.125rem;
  }

  .layer-body {
    padding: 3.5rem 0;
  }

  .layer-prose h2 {
    margin-top: 2.5rem;
  }

  .layer-prose-img {
    width: 100%;
    max-width: none;
    margin: 2rem 0;
    border-radius: 12px;
  }

  .layer-topics {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .layer-nav-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .layer-nav-link {
    max-width: none;
  }

  .layer-nav-next {
    flex-direction: row-reverse;
  }

  .hiw-split {
    padding: 3.5rem 0;
  }

  .hiw-split-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hiw-split-img {
    height: 180px;
  }

  .hiw-split-body {
    padding: 1.5rem 1.75rem 1.75rem;
  }

  .hiw-closing {
    padding: 3.5rem 0;
  }
}

/* ============================================
   SMALL MOBILE STYLES (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-block {
    padding: 0 0.5rem;
  }

  .hero-content {
    padding: 4.5rem 0 1.5rem;
  }

  .hero-title {
    font-size: 1.625rem;
    margin-bottom: 0.875rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
  }

  .hero-visual {
    padding: 0 0 2rem;
  }

  .hero-image-wrapper {
    border-radius: 14px;
  }

  .hero-shape--1 { width: 110px; height: 110px; }
  .hero-shape--2 { width: 85px; height: 85px; }
  .hero-shape--3 { width: 70px; height: 70px; }
  .hero-shape--4 { width: 90px; height: 90px; }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header--team {
    padding-bottom: 2rem;
  }

  .hero-role-bar {
    margin-top: 1.5rem;
    padding: 0.625rem 1.25rem;
    gap: 0;
  }

  .hero-role-number {
    font-size: 1.5rem;
  }

  .hero-role-label {
    font-size: 0.75rem;
  }

  .hero-role-divider {
    height: 24px;
    margin: 0 1rem;
  }

  .page-header h1 {
    font-size: 1.875rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section:first-of-type {
    padding-top: 3rem;
  }

  .content-block h2 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }

  .content-block h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }

  .content-block p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .feature-list li {
    padding-left: 1.75rem;
    font-size: 0.9375rem;
  }

  .feature-list li::before {
    width: 20px;
    height: 20px;
    font-size: 1.125rem;
  }

  .feature-list li:hover {
    padding-left: 2rem;
  }

  .lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .section-label {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
  }

  .section-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .section-conclusion {
    font-size: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1rem 1rem 1rem;
  }

  .key-point-card {
    padding: 1.5rem;
  }

  .key-point-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.875rem;
  }

  .key-point-icon svg {
    width: 22px;
    height: 22px;
  }

  .key-point-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .key-point-card p {
    font-size: 1rem;
  }

  .layer-card {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .layer-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .layer-card h3 {
    font-size: 1.125rem;
  }

  .layer-card p {
    font-size: 0.875rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .principle-card {
    padding: 1.75rem;
  }

  .principle-number {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .principle-card h2 {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
  }

  .principle-card h3 {
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
  }

  .principle-card p {
    font-size: 1rem;
  }

  .roadmap-step {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
    margin-bottom: 0;
  }

  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .step-content p {
    font-size: 0.875rem;
  }

  .commitment-card {
    padding: 1.75rem;
  }

  .commitment-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .commitment-card h3 {
    font-size: 1.25rem;
  }

  .commitment-card p {
    font-size: 1rem;
  }

  .team-member-image {
    width: 90px;
    height: 90px;
  }

  .team-member h3 {
    font-size: 1.125rem;
  }

  .partnership-card {
    padding: 1.75rem;
  }

  .partnership-card h3 {
    font-size: 1.25rem;
  }

  .partnership-card p {
    font-size: 1rem;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-title {
    font-size: 1.625rem;
  }

  .btn {
    padding: 0.9375rem 1.75rem;
    font-size: 0.9375rem;
  }

  /* Decades section — small mobile */
  .decades-section {
    padding: 2.5rem 0;
  }

  .decades-title {
    font-size: 1.5rem;
  }

  .decades-text p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .decades-callout-inner {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .decades-callout-icon {
    width: 28px;
    height: 28px;
  }

  .decades-quote {
    font-size: 1.0625rem;
  }

  /* Vision section — small mobile */
  .vision-section {
    padding: 2.5rem 0;
  }

  .vision-title {
    font-size: 1.5rem;
  }

  .eu-stars {
    width: 320px;
    height: 320px;
  }

  .eu-star {
    font-size: 1.125rem;
    left: calc(50% + 140px * cos(var(--a)));
    top: calc(50% - 140px * sin(var(--a)));
  }

  .vision-title-wrap {
    padding: 0 0 0.75rem;
  }

  .vision-body p {
    font-size: 0.9375rem;
  }

  .vision-pullquote {
    font-size: 1.125rem;
    margin: 1.5rem 0;
    padding: 1.25rem 0;
  }

  .vision-cta-text {
    font-size: 0.9375rem;
  }

  .vision-btn {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }

  /* Pillars section — small mobile */
  .pillars-section {
    padding: 2.5rem 0;
  }

  .pillars-header {
    margin-bottom: 2rem;
  }

  .pillars-title {
    font-size: 1.5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-card {
    padding: 1.5rem;
  }

  .pillar-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .pillar-card h3 {
    font-size: 0.9375rem;
  }

  .pillar-card p {
    font-size: 0.8125rem;
  }

  /* How It Works — small mobile */
  .hiw-hero {
    padding: 6rem 0 3rem;
  }

  .hiw-hero h1 {
    font-size: 1.625rem;
  }

  .hiw-shape--1 { width: 100px; height: 100px; }
  .hiw-shape--2 { width: 80px; height: 80px; }
  .hiw-shape--3 { width: 70px; height: 70px; }

  .wcl-shape--1 { width: 90px; height: 90px; }
  .wcl-shape--2 { width: 75px; height: 75px; }
  .wcl-shape--3 { width: 60px; height: 60px; }
  .wcl-shape--4 { width: 80px; height: 80px; }

  .gi-shape--1 { width: 105px; height: 105px; }
  .gi-shape--2 { width: 70px; height: 70px; }
  .gi-shape--3 { width: 55px; height: 55px; }
  .gi-shape--4 { width: 85px; height: 85px; }

  .about-shape--1 { width: 100px; height: 100px; }
  .about-shape--2 { width: 80px; height: 80px; }
  .about-shape--3 { width: 60px; height: 60px; }
  .about-shape--4 { width: 75px; height: 75px; }

  .layer-shape--1 { width: 90px; height: 90px; }
  .layer-shape--2 { width: 70px; height: 70px; }
  .layer-shape--3 { width: 55px; height: 55px; }

  .hiw-programme {
    padding: 2.5rem 0;
  }

  .hiw-layers {
    padding: 2.5rem 0;
  }

  .hiw-layer-link {
    padding: 1.25rem;
    gap: 0.875rem;
  }

  .hiw-layer-img {
    height: 120px;
    border-radius: 8px;
  }

  .hiw-layers-stack--visual .hiw-layer-link {
    grid-template-rows: 160px auto auto;
  }

  .hiw-layers-stack--visual .hiw-layer-img {
    height: 160px;
  }

  .hiw-layer-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.9375rem;
  }

  .hiw-layer-link h3 {
    font-size: 1.1875rem;
  }

  .hiw-layer-arrow {
    width: 28px;
    height: 28px;
  }

  /* Layer detail pages small mobile */
  .layer-hero {
    padding: 6.5rem 0 2.5rem;
  }

  .layer-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .layer-body {
    padding: 2.5rem 0;
  }

  .layer-lead {
    font-size: 1.0625rem;
  }

  .layer-prose p {
    font-size: 1rem;
  }

  .layer-topic {
    padding: 1.25rem;
  }

  .layer-nav {
    padding: 2rem 0;
  }

  .layer-nav-link {
    padding: 1rem 1.25rem;
  }

  .hiw-split {
    padding: 2.5rem 0;
  }

  .hiw-split-img {
    height: 160px;
  }

  .hiw-split-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .hiw-split-col h2 {
    font-size: 1.25rem;
  }

  .hiw-closing {
    padding: 2.5rem 0;
  }

  /* Centered text sections — left-align on small mobile */
  .wcl-how-inner--centered {
    text-align: left;
  }

  /* Demo screen — small mobile */
  .demo-screen {
    margin-top: 1.5rem;
  }

  .demo-screen-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-section {
  padding: 5rem 0;
}

.faq-section:nth-child(odd) {
  background: var(--bg-white);
}

.faq-section:nth-child(even) {
  background: var(--bg-warm);
}

.faq-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.faq-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-section:nth-child(even) .faq-item {
  background: var(--bg-white);
}

.faq-item:hover {
  border-color: rgba(0, 51, 153, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-inner p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-medium);
  margin: 0;
}

.faq-answer-inner a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3.5rem 0;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
  }

  .faq-answer-inner p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2.5rem 0;
  }

  .faq-section-header {
    margin-bottom: 1.5rem;
  }
}
