:root {
  --river: #0ea5e9;
  --river-deep: #0284c7;
  --leaf: #22c55e;
  --leaf-deep: #16a34a;
  --sun: #fbbf24;
  --sun-deep: #f59e0b;
  --coral: #fb7185;
  --ink: #0f3b2e;
  --muted: #5b7570;
  --cream: #fbfdf9;
  --white: #ffffff;
  --paper: #f3fbf2;
  --sky: #eaf8ff;
  --amber-soft: #fff8e6;
  --warn: #b45309;
  --evidence: #0369a1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3, .display { font-family: 'Baloo 2', sans-serif; }

/* ─── BADGES ─── */
.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--river), var(--leaf));
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 12px;
}

.tag-demo {
  display: inline-block;
  background: #fef3c7;
  color: var(--warn);
  border: 1px solid #fcd34d;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
}

.tag-evidence {
  display: inline-block;
  background: #e0f2fe;
  color: var(--evidence);
  border: 1px solid #7dd3fc;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
}

.tag-concept {
  display: inline-block;
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #d8b4fe;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
}

.honesty-note {
  background: #fffbeb;
  border: 1px dashed #f59e0b;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.82rem;
  color: var(--warn);
  line-height: 1.55;
  margin-top: 1.2rem;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,197,94,0.12);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .drop {
  width: 40px; height: 40px;
  background: linear-gradient(140deg, var(--river), var(--leaf));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(34,197,94,0.35);
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-4px); }
}

.nav-logo span {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.nav-logo span em { color: var(--leaf-deep); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--leaf-deep); }

.lang-toggle {
  display: flex;
  gap: 3px;
  background: var(--paper);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 25px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  padding: 5px 9px;
  border-radius: 20px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--leaf);
  color: white;
  box-shadow: 0 2px 8px rgba(34,197,94,0.4);
}

.nav-cta {
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: white !important;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}

.nav-cta:hover { transform: translateY(-2px); color: white !important; }

.menu-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 110px 2rem 4rem;
  background: linear-gradient(180deg, #eafdf3 0%, #e3f7ff 45%, #fef9e7 100%);
}

.blob { position: absolute; border-radius: 50%; filter: blur(5px); opacity: 0.5; }
.blob-1 { width: 340px; height: 340px; background: radial-gradient(circle, #bbf7d0, transparent 70%); top: -80px; left: -80px; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, #bae6fd, transparent 70%); bottom: -120px; right: -100px; }
.blob-3 { width: 260px; height: 260px; background: radial-gradient(circle, #fde68a, transparent 70%); top: 40%; right: 6%; }

.float-icon {
  position: absolute;
  font-size: 2.2rem;
  animation: floaty 6s ease-in-out infinite;
  opacity: 0.85;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.08));
}

@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

.hero-content { position: relative; z-index: 5; max-width: 920px; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px dashed var(--leaf);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 14px rgba(34,197,94,0.15);
  flex-wrap: wrap;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--river), var(--leaf-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 auto 1rem;
  line-height: 1.7;
  max-width: 680px;
  font-weight: 500;
}

.hero-bm-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 26px;
  border-radius: 40px;
  margin: 0.4rem 0 1.6rem;
  box-shadow: 0 6px 18px rgba(251,113,133,0.3);
  transform: rotate(-2deg);
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-deep));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(34,197,94,0.45); }

.btn-secondary {
  background: white;
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--river);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-secondary:hover { background: var(--sky); transform: translateY(-3px); }

.hero-mascots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mascot-pill {
  background: white;
  border-radius: 30px;
  padding: 8px 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.6;
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.scroll-arrow { font-size: 1.2rem; color: var(--leaf-deep); }

/* ─── SECTION COMMONS ─── */
section { padding: 5rem 2rem; }
.container { max-width: 1140px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--leaf-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 6px 16px;
  border-radius: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: var(--ink);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  font-weight: 500;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }
.text-river { color: var(--river-deep); }
.text-leaf { color: var(--leaf-deep); }
.text-sun { color: var(--sun-deep); }
.text-coral { color: var(--coral); }

/* ─── PROGRAMME OVERVIEW ─── */
.case-summary {
  background: white;
  border-bottom: 1px solid rgba(34,197,94,0.12);
  padding: 3.5rem 2rem;
}

.case-panel {
  background: linear-gradient(160deg, #f0fdf4, #e0f2fe 55%, #fffbeb);
  border: 2px solid rgba(14,165,233,0.25);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(14,165,233,0.1);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.case-header h2 { font-size: 1.6rem; margin-bottom: 0.3rem; }
.case-header p { font-size: 0.85rem; color: var(--muted); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.case-card {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(15,59,46,0.06);
}

.case-card h3 {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--leaf-deep);
  margin-bottom: 0.45rem;
}

.case-card p { font-size: 0.86rem; color: var(--ink); line-height: 1.55; font-weight: 500; }

/* ─── ECOSYSTEM STRIP ─── */
.partners-strip {
  background: white;
  border-top: 1px solid rgba(34,197,94,0.1);
  border-bottom: 1px solid rgba(34,197,94,0.1);
  padding: 1.5rem 2rem;
  text-align: center;
}

.partners-strip p {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.partners-logos { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }

.partner-logo-pill {
  background: var(--paper);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

/* ─── NEEDS ─── */
.needs { background: var(--white); }

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

.needs-main {
  background: var(--sky);
  border-radius: 24px;
  padding: 2rem;
}

.needs-main h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.needs-main p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.problem-list li {
  background: white;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.45;
}

.needs-side { display: flex; flex-direction: column; gap: 1rem; }

.need-stat {
  background: var(--paper);
  border-radius: 20px;
  padding: 1.3rem;
  border: 1px solid rgba(34,197,94,0.15);
}

.need-stat h4 { font-size: 0.95rem; margin: 0.4rem 0; }
.need-stat p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ─── PILLARS / FRAMEWORK ─── */
.framework { background: var(--paper); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.pillar-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 22px;
  padding: 1.8rem 1.3rem;
  text-align: center;
  transition: all 0.35s;
}

.pillar-card:hover {
  border-color: var(--leaf);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34,197,94,0.16);
}

.pillar-icon {
  width: 70px; height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1rem;
}

.pillar-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ─── GOVERNANCE ─── */
.governance { background: white; }

.gov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.gov-card {
  background: var(--sky);
  border-radius: 20px;
  padding: 1.5rem;
  border-left: 5px solid var(--river);
}

.gov-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.gov-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ─── METHOD JOURNEY ─── */
.journey { background: var(--sky); }

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.method-step {
  background: white;
  border-radius: 22px;
  padding: 1.5rem 1.2rem;
  position: relative;
  box-shadow: 0 6px 20px rgba(14,165,233,0.08);
  transition: transform 0.3s;
}

.method-step:hover { transform: translateY(-5px); }

.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--river), var(--leaf));
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-family: 'Baloo 2', sans-serif;
}

.method-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.method-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.method-step ul { margin-top: 0.7rem; padding-left: 1.1rem; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }

.timeline { position: relative; margin-top: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(180deg, var(--river) 0 14px, transparent 14px 24px);
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 1rem;
  margin-bottom: 2.2rem;
  align-items: center;
}

.timeline-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.timeline-item .tl-dot { grid-column: 2; }

.tl-content {
  background: white;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 6px 20px rgba(14,165,233,0.1);
}

.tl-dot {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--river), var(--leaf));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
  box-shadow: 0 0 0 6px white, 0 0 0 9px rgba(34,197,94,0.2);
}

.tl-phase {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--leaf-deep);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.tl-content h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.tl-content p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ─── TOOLKIT / ACTIVITIES ─── */
.toolkit { background: white; }
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.toolkit-card {
  border-radius: 22px;
  padding: 1.8rem;
  color: var(--ink);
  transition: all 0.35s;
  border: 2px solid transparent;
}

.toolkit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.tk-blue { background: #eaf8ff; }
.tk-green { background: #effdf2; }
.tk-amber { background: #fff8e6; }
.tk-teal { background: #e6fbf8; }
.tk-coral { background: #fff0f1; }
.tk-purple { background: #f4f0ff; }
.tk-icon { font-size: 2.3rem; margin-bottom: 0.8rem; display: block; }
.toolkit-card h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.toolkit-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.tk-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tk-tag {
  background: white;
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.activities { background: var(--paper); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.activity-card {
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.35s;
}

.activity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(34,197,94,0.15); }
.activity-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
}
.ai-blue { background: linear-gradient(135deg, #bae6fd, #eaf8ff); }
.ai-green { background: linear-gradient(135deg, #bbf7d0, #effdf2); }
.ai-amber { background: linear-gradient(135deg, #fde68a, #fff8e6); }
.ai-teal { background: linear-gradient(135deg, #99f6e4, #e6fbf8); }
.activity-body { padding: 1.4rem; }
.activity-type {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--river-deep);
  margin-bottom: 0.4rem;
}
.activity-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; line-height: 1.3; }
.activity-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.activity-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid #eee;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.activity-age { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.activity-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--leaf-deep);
  text-decoration: none;
}

/* ─── SCIENCE / WQI ─── */
.science { background: white; }
.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.tech-card {
  text-align: center;
  padding: 2rem 1.4rem;
  border-radius: 24px;
  background: var(--paper);
  transition: all 0.35s;
}
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(34,197,94,0.12); background: white; }
.tech-visual {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.tv-blue { background: linear-gradient(135deg, #bae6fd, #eaf8ff); }
.tv-green { background: linear-gradient(135deg, #bbf7d0, #effdf2); }
.tv-amber { background: linear-gradient(135deg, #fde68a, #fff8e6); }
.tech-card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.tech-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.tech-metrics {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.tech-metric .num { font-size: 1.1rem; font-weight: 800; color: var(--river-deep); }
.tech-metric .lbl { font-size: 0.66rem; color: var(--muted); }

.wq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.wq-card { background: var(--paper); border-radius: 16px; padding: 1.15rem; }
.wq-name { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.wq-label { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.7rem; }
.wq-bar { height: 7px; background: rgba(0,0,0,0.08); border-radius: 4px; overflow: hidden; margin-bottom: 0.45rem; }
.wq-fill { height: 100%; border-radius: 4px; }
.wq-desc { font-size: 0.74rem; color: var(--muted); line-height: 1.5; }

.cockpit {
  margin-top: 2.5rem;
  background: linear-gradient(160deg, #0f3b2e, #0c4a6e);
  border-radius: 28px;
  padding: 2rem;
  color: white;
}
.cockpit h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.cockpit > p { font-size: 0.88rem; opacity: 0.85; margin-bottom: 1.4rem; line-height: 1.55; }
.cockpit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}
.cockpit-metric {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 1.1rem;
  text-align: center;
}
.cockpit-metric .val { font-size: 1.5rem; font-weight: 800; font-family: 'Baloo 2', sans-serif; margin: 0.35rem 0; }
.cockpit-metric .lbl { font-size: 0.74rem; opacity: 0.9; }
.cockpit-metric .sub { font-size: 0.68rem; opacity: 0.7; margin-top: 0.3rem; }

/* ─── IMPACT / ESG ─── */
.stats-strip {
  background: linear-gradient(135deg, #0ea5e9, #16a34a);
  padding: 4rem 2rem;
}
.stats-strip .section-label { background: rgba(255,255,255,0.2); color: white; }
.stats-strip .section-title { color: white; }
.stats-strip .section-sub { color: rgba(255,255,255,0.88); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.stat-num { font-size: 2.1rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.25rem; font-family: 'Baloo 2', sans-serif; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.92); font-weight: 600; margin-bottom: 0.5rem; }

.esg { background: var(--sky); }
.esg-dashboard {
  background: white;
  border-radius: 26px;
  padding: 2.2rem;
  margin-top: 2.5rem;
  box-shadow: 0 10px 40px rgba(14,165,233,0.1);
}
.esg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; flex-wrap: wrap; gap: 1rem; }
.esg-title-block h3 { font-size: 1.25rem; }
.esg-title-block p { font-size: 0.84rem; color: var(--muted); }
.demo-badge {
  display: flex; align-items: center; gap: 6px;
  background: #fef3c7; border: 1px solid #fcd34d;
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.74rem; font-weight: 800; color: var(--warn);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.metric-box {
  background: var(--paper);
  border-radius: 16px;
  padding: 1.1rem;
  text-align: center;
}
.metric-box .icon { font-size: 1.4rem; margin-bottom: 0.3rem; }
.metric-box .number { font-size: 1.6rem; font-weight: 800; line-height: 1; margin-bottom: 0.2rem; font-family: 'Baloo 2', sans-serif; }
.metric-box .label { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}
.sdg-card {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.sdg-card strong { display: block; margin-bottom: 0.3rem; font-size: 0.86rem; }

/* ─── INCLUSIVITY / SCALE / VALUE ─── */
.inclusivity { background: white; }
.incl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.incl-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 1.5rem;
}
.incl-card h3 { font-size: 1.05rem; margin: 0.5rem 0; }
.incl-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

.scale { background: var(--amber-soft); }
.scale-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.scale-step {
  background: white;
  border-radius: 18px;
  padding: 1.4rem;
  border-top: 4px solid var(--sun);
}
.scale-step .num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sun-deep);
}
.scale-step h3 { font-size: 1.02rem; margin: 0.4rem 0; }
.scale-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

.value-props { background: white; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--sky);
  border-radius: 20px;
  padding: 1.5rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.value-card ul { margin-top: 0.7rem; padding-left: 1.1rem; font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ─── INVOLVE / CTA / FOOTER ─── */
.get-involved { background: var(--paper); }
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.involve-card {
  padding: 1.8rem 1.3rem;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.35s;
  background: white;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.involve-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(34,197,94,0.16); }
.involve-icon { font-size: 2.3rem; margin-bottom: 0.8rem; }
.involve-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.involve-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

.cta-banner {
  background: linear-gradient(135deg, #fde68a 0%, #bbf7d0 50%, #bae6fd 100%);
  text-align: center;
  padding: 4.5rem 2rem;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; margin-bottom: 0.9rem; }
.cta-banner p { font-size: 1rem; color: var(--ink); opacity: 0.78; margin-bottom: 1.6rem; font-weight: 500; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-banner .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

footer { background: var(--ink); padding: 3.5rem 2rem 2rem; color: white; }
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.2rem; margin-bottom: 2.5rem;
}
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 1rem 0; }
.footer-tagline { font-size: 0.8rem; color: var(--sun); font-weight: 700; }
.footer-col h4 { font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.84rem; }
.footer-col a:hover { color: var(--leaf); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.42); max-width: 640px; line-height: 1.5; }
.footer-partners { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }
.partner-pill { background: rgba(255,255,255,0.08); border-radius: 20px; padding: 4px 12px; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.7); }


/* --- Hero usability pass --- */
.hero-value-line {
  display: inline-block;
  margin: 0.6rem auto 1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(14,165,233,0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  max-width: 820px;
  box-shadow: 0 4px 18px rgba(14,165,233,0.1);
}
.hero-quiet {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--river-deep);
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(14,165,233,0.45);
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: #e0f2fe;
  transform: translateY(-3px);
}
.case-org a { color: var(--river-deep); font-weight: 700; text-decoration: none; }
.case-org a:hover { text-decoration: underline; }
.case-org {
  margin-top: 0.75rem;
  font-size: 0.8rem !important;
  line-height: 1.55;
  color: var(--ink) !important;
  background: #f0f9ff;
  border-left: 3px solid var(--river-deep);
  padding: 0.65rem 0.85rem;
  border-radius: 0 10px 10px 0;
}
.partner-logo-seb {
  background: linear-gradient(135deg, #f0f9ff, #ecfdf5) !important;
  border-color: rgba(14,165,233,0.28) !important;
  font-weight: 700 !important;
}
.partner-logo-pill small { font-weight: 600; opacity: 0.75; }
.mascot-pill small { font-weight: 600; opacity: 0.7; font-size: 0.7em; }

/* --- Partners / shared outcomes --- */
.seb-esg {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 40%, #ecfdf5 100%);
}
.seb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.seb-card {
  background: white;
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 6px 22px rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.12);
}
.seb-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.seb-card ul {
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.seb-card-get {
  border-color: rgba(34,197,94,0.35);
  background: linear-gradient(160deg, #ffffff, #f0fdf4);
}
.seb-card-not {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(160deg, #ffffff, #fff7ed);
}
.seb-feature {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

/* --- Journeys + involve hints --- */
.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.journey-card {
  background: white;
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(34,197,94,0.12);
  position: relative;
}
.journey-step {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--leaf-deep);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.7rem;
}
.journey-card h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.journey-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
.involve-cta-hint {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--leaf-deep);
  letter-spacing: 0.3px;
}

/* --- Elegant 3-column footer --- */
.footer-grid-elegant {
  grid-template-columns: 1.6fr 1fr 1fr !important;
  gap: 2.5rem;
}
.footer-delivered {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.62) !important;
  margin-top: 0.75rem !important;
  line-height: 1.55 !important;
}
.footer-delivered a {
  color: #4ade80;
  text-decoration: none;
  font-weight: 700;
}
.footer-delivered a:hover { text-decoration: underline; }

/* --- Site rhythm (Method) --- */
.site-rhythm {
  background: white;
  border-radius: 22px;
  padding: 1.6rem 1.8rem;
  margin: 0 0 2rem;
  border: 1px solid rgba(14,165,233,0.14);
  box-shadow: 0 6px 22px rgba(14,165,233,0.06);
}
.site-rhythm h3 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  font-weight: 800;
}
.rhythm-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1.2rem;
  margin: 0;
  padding: 0;
}
.rhythm-steps li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 0.7rem 0.85rem;
  background: var(--sky);
  border-radius: 14px;
}
.rhythm-steps strong { color: var(--ink); font-weight: 700; }

.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

[data-lang] { display: none; }
[data-lang].lang-active { display: inline; }
div[data-lang].lang-active,
p[data-lang].lang-active,
li[data-lang].lang-active,
h2[data-lang].lang-active,
h3[data-lang].lang-active,
span.block[data-lang].lang-active { display: block; }

@media (max-width: 1024px) {
  .toolkit-grid, .tech-cards, .method-steps { grid-template-columns: repeat(2, 1fr); }
  .needs-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid rgba(34,197,94,0.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 900px) {
  .seb-grid, .journey-cards { grid-template-columns: 1fr; }
  .footer-grid-elegant { grid-template-columns: 1fr 1fr !important; }
  .rhythm-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 56px 1fr; }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; }
  .timeline-item .tl-dot { grid-column: 1; }
  .toolkit-grid, .tech-cards, .method-steps, .footer-grid, .footer-grid-elegant { grid-template-columns: 1fr !important; }
  .rhythm-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 1rem; }
  .hero-value-line { border-radius: 16px; }
}
