/* ─────────────────────────────────────────────────────
   PERMEDIS — Sharp / firm aesthetic
   No border-radius, no italic, ALL CAPS headers
───────────────────────────────────────────────────── */
:root {
  --navy: #0A2540;
  --navy-2: #1F4779;
  --navy-deep: #051528;
  --white: #FFFFFF;
  --paper: #F4F6FA;
  --tint: #DBE4F0;
  --border: #D4DDEA;
  --border-2: #E6ECF4;
  --text: #0A2540;
  --text-2: #4A5C75;
  --text-3: #7A8AA0;
  --sans: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { border-radius: 0 !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageIn 0.6s ease;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--navy); color: white; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  transition: padding 0.3s ease, background 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  max-width: 1440px; margin: 0 auto;
  transition: padding 0.3s ease;
}
nav.scrolled .nav-inner { padding: 12px 40px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
  font-weight: 800; font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-logo-mark {
  width: 30px; height: 30px;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px; line-height: 1;
  letter-spacing: 0;
  transition: background 0.25s ease;
}
.nav-logo:hover .nav-logo-mark { background: var(--navy-2); }

.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  position: relative;
  font-size: 12px; font-weight: 700;
  color: var(--text-2); text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-cta {
  background: var(--navy); color: white !important;
  padding: 12px 20px;
  min-width: 190px;
  text-align: center;
  white-space: nowrap;
  font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--navy-deep); transform: translateY(-2px); }
.nav-cta::after { display: none; }

.lang-switch {
  display: flex; background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
}
.lang-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 12px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  background: none; border: none;
  color: var(--text-3);
  font-family: var(--sans);
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active { background: var(--navy); color: white; }
.lang-btn:hover:not(.active) { color: var(--navy); }

/* mobile nav */
.nav-burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent; border: none;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  padding: 0;
}
.nav-burger span {
  width: 16px; height: 2px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 0; animation: slideDown 0.3s ease; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile a {
  font-size: 14px; font-weight: 800; color: var(--navy);
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--border-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-mobile-lang {
  margin-top: 20px;
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-mobile-lang-label {
  font-size: 11px; font-weight: 800; color: var(--text-3);
  letter-spacing: 2px; text-transform: uppercase;
}
.nav-mobile-lang .lang-switch {
  border: 1.5px solid var(--navy);
}
.nav-mobile-lang .lang-btn {
  padding: 10px 18px;
  font-size: 12px;
}

/* ─── REVEAL ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ─── TYPE SYSTEM ────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--navy);
}

/* Section titles: BOLD UPPERCASE Manrope 800 */
h1.section-title, h2.section-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 22px;
  text-transform: uppercase;
}
h1.section-title em, h2.section-title em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy-2);
}

.section-sub {
  font-size: 17px; line-height: 1.65;
  color: var(--text-2);
  max-width: 600px;
  font-weight: 400;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy); color: white;
  font-family: var(--sans); font-size: 13px; font-weight: 800;
  text-decoration: none; padding: 16px 26px;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,37,64,0.2);
}
.btn-primary::after {
  content: '→'; font-size: 16px;
  transition: transform 0.25s ease;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; color: var(--navy);
  font-family: var(--sans); font-size: 13px; font-weight: 800;
  text-decoration: none; padding: 15px 26px;
  border: 1.5px solid var(--navy);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

/* ─── PLACEHOLDER ────────────────────────────────── */
.img-ph {
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  padding: 24px;
  position: relative; overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.45;
  pointer-events: none;
}
.img-ph-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--navy);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 18px; line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
.img-ph-text { position: relative; z-index: 1; max-width: 240px; line-height: 1.6; }

/* ─── HERO (HOME) ────────────────────────────────── */
#hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}
#hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(var(--border-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 700;
  color: var(--text-2);
  margin-bottom: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero-badge-tag {
  background: var(--navy); color: white;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 9px;
}
.hero-headline {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.96;
  letter-spacing: -2.5px;
  color: var(--navy);
  margin-bottom: 26px;
  text-transform: uppercase;
}
.hero-headline em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--navy-2);
}
.hero-sub {
  font-size: 18px; line-height: 1.6;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex; gap: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 11px; color: var(--text-3); line-height: 1.5;
  font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--sans); font-weight: 800;
  font-size: 28px; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -1px;
  letter-spacing: 0;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
#hero-model {
  width: 100%; height: 100%;
  display: block;
  cursor: pointer;
}
.model-explore-hint {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 13px;
  background: var(--white);
  border: 1px solid var(--navy);
  box-shadow: 4px 4px 0 rgba(10,37,64,0.18);
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy);
  pointer-events: none;
}

/* ── 3D MODEL MODAL ───────────────────────────────── */
.model-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,21,40,0.88);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.model-modal-overlay.open { display: flex; animation: modalFade 0.2s ease; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.model-modal-box {
  background: var(--white);
  border: 1px solid var(--navy);
  width: min(96vw, 860px);
  height: min(90vh, 760px);
  display: flex; flex-direction: column;
  animation: modalSlide 0.25s ease;
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
.model-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.model-modal-title {
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy);
}
.model-modal-close {
  width: 34px; height: 34px;
  background: none; border: 1.5px solid var(--border);
  color: var(--navy); font-size: 22px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 300;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.model-modal-close:hover { background: var(--navy); border-color: var(--navy); color: white; }
#modal-canvas {
  width: 100%; flex: 1; min-height: 0;
  display: block; cursor: grab;
}
#modal-canvas:active { cursor: grabbing; }
.model-modal-hint-bar {
  padding: 7px 24px;
  font-size: 10px; color: var(--text-3);
  font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  border-top: 1px solid var(--border-2);
  text-align: center; flex-shrink: 0;
  background: var(--paper);
}
.model-modal-footer {
  display: flex;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.tex-btn {
  flex: 1;
  padding: 14px 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: none; border: none;
  border-right: 1px solid var(--border);
  color: var(--text-2); cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tex-btn:last-child { border-right: none; }
.tex-btn:hover:not(.active) { background: var(--paper); color: var(--navy); }
.tex-btn.active { background: var(--navy); color: white; }
.hero-floating {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--navy);
  padding: 14px 18px;
  box-shadow: 8px 8px 0 var(--navy);
  display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.hero-floating-1 {
  top: 24px; left: -28px;
  animation-delay: 0s;
}
.hero-floating-2 {
  bottom: 32px; right: -28px;
  animation-delay: 2.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-floating-icon {
  width: 36px; height: 36px;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}
.hero-floating-text strong {
  display: block; font-size: 12px; color: var(--navy); font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-floating-text span {
  font-size: 11px; color: var(--text-3); font-weight: 500;
  letter-spacing: 0;
}

/* ─── TRUST STRIP ────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 30px 0;
  color: white;
  overflow: hidden;
  position: relative;
}
.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.trust-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.trust-label {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}
.marquee {
  display: flex;
  gap: 56px;
  width: fit-content;
  animation: marquee 28s linear infinite;
}
.trust-strip:hover .marquee { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  font-family: var(--sans); font-weight: 800; font-size: 18px;
  color: rgba(255,255,255,0.95);
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.trust-item em {
  font-style: normal; font-weight: 500;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  letter-spacing: 1.5px;
}
.trust-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* ─── PROBLEM ─────────────────────────────────────── */
#problem {
  padding: 140px 0;
  background: var(--white);
}
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}
.problem-stat {
  padding: 36px 28px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  background: var(--paper);
  transition: background 0.25s ease;
}
.problem-stat:hover { background: var(--tint); }
.problem-stat-num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 58px; line-height: 1;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -2.5px;
}
.problem-stat-num em {
  font-style: normal; font-weight: 800;
  letter-spacing: -2.5px;
}
.problem-stat-num small {
  font-size: 30px; vertical-align: 0; opacity: 0.6;
  font-weight: 800; letter-spacing: -1px;
}
.problem-stat-label {
  font-size: 13.5px; color: var(--text-2); line-height: 1.55; font-weight: 500;
}
.problem-bullets {
  list-style: none; margin-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.problem-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text-2); line-height: 1.6;
  font-weight: 500;
}
.problem-bullets li::before {
  content: ''; flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--navy);
  margin-top: 8px;
}

/* ─── SOLUTION ────────────────────────────────────── */
#solution {
  padding: 140px 0;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
#solution::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at bottom left, black, transparent 70%);
  pointer-events: none;
}
#solution .container { position: relative; z-index: 1; }
#solution .eyebrow { color: white; }
#solution .eyebrow::before { background: white; }
#solution h2.section-title { color: white; }
#solution h2.section-title em { color: rgba(255,255,255,0.6); }
#solution .section-sub { color: rgba(255,255,255,0.65); }

.solution-header {
  text-align: center; margin-bottom: 72px;
  display: flex; flex-direction: column; align-items: center;
}
.solution-header .section-sub { margin: 0 auto; }

.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.solution-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
}
.solution-card-img {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 30px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 800;
  text-align: center;
  position: relative; overflow: hidden;
}
.solution-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.solution-card-img-icon {
  width: 56px; height: 56px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800;
  font-size: 18px; color: white;
  position: relative;
  letter-spacing: 0;
}
.solution-card-img-text { position: relative; max-width: 220px; line-height: 1.55; padding: 0 10px; }
.solution-card-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.solution-card h3 {
  font-family: var(--sans); font-weight: 800;
  font-size: 32px; line-height: 1.0; letter-spacing: -1px;
  margin-bottom: 16px;
  color: white;
  text-transform: uppercase;
}
.solution-card h3 em {
  font-style: normal; font-weight: 800;
  color: rgba(255,255,255,0.7);
}
.solution-card p {
  font-size: 14.5px; line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  font-weight: 400;
}
.solution-card-features {
  list-style: none;
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.solution-card-features li {
  font-size: 13.5px; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.solution-card-features li::before {
  content: '✓'; flex-shrink: 0;
  color: white; font-size: 11px; font-weight: 800;
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}

/* ─── PROCESS (BIGGER, zig-zag) ──────────────────── */
#how {
  padding: 160px 0 180px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
#how::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at top, black, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}
#how .container { position: relative; z-index: 1; }
.how-header {
  text-align: center; margin-bottom: 96px;
  display: flex; flex-direction: column; align-items: center;
}
.how-header .section-sub { margin: 0 auto; }
.how-header .section-title { font-size: clamp(44px, 5.5vw, 80px); letter-spacing: -2px; }

.process-steps {
  display: flex; flex-direction: column;
  gap: 32px;
}
.process-step {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  min-height: 460px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  border-color: var(--navy);
  box-shadow: 12px 12px 0 var(--navy);
}
.process-step-visual {
  border-right: 1px solid var(--border);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  color: var(--text-3);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 800;
  text-align: center;
  padding: 60px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.process-step:hover .process-step-visual { background: var(--tint); }
.process-step-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}
.process-step-visual-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--navy);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800;
  color: var(--navy);
  font-size: 24px;
  position: relative; z-index: 1;
  transition: background 0.3s ease, color 0.3s ease;
}
.process-step:hover .process-step-visual-icon { background: var(--navy); color: white; }
.process-step-visual-text {
  position: relative; z-index: 1; max-width: 260px; line-height: 1.6;
}
.process-step.reverse .process-step-visual {
  order: 2;
  border-right: none;
  border-left: 1px solid var(--border);
}
.process-step.reverse .process-step-content { order: 1; }

.process-step-content {
  padding: 60px 56px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.process-step-num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 88px; line-height: 0.9;
  color: var(--tint);
  letter-spacing: -3px;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}
.process-step:hover .process-step-num { color: var(--navy); }
.process-step-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 14px;
}
.process-step-content h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.0;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.process-step-content p {
  font-size: 15.5px; line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 26px;
  font-weight: 400;
  max-width: 480px;
}
.process-step-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
}
.process-step-bullets li {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text);
  font-weight: 600;
}
.process-step-bullets li::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--navy);
  flex-shrink: 0;
}

/* ─── CTA BAND ───────────────────────────────────── */
.cta-band {
  padding: 130px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-2) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.cta-band-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}
.cta-band-inner .section-sub { margin: 0 auto 36px; }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  padding: 170px 0 100px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at top, black, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero-eyebrow {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy); font-weight: 800;
  margin-bottom: 22px;
}
.page-hero-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -2.5px;
  color: var(--navy);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.page-hero-title em {
  font-style: normal;
  color: var(--navy-2);
}
.page-hero-sub {
  font-size: 19px; line-height: 1.6;
  color: var(--text-2);
  max-width: 680px;
  font-weight: 400;
}

/* ─── STORY ──────────────────────────────────────── */
#story {
  padding: 140px 0;
  background: var(--white);
}
.story-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.story-img { aspect-ratio: 4/5; }
.story-content p {
  font-size: 16px; line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 18px;
  font-weight: 400;
}
.story-content p:first-of-type {
  font-size: 20px; line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 28px;
}
.story-pull {
  margin-top: 36px; padding: 32px 36px;
  background: var(--paper);
  border-left: 4px solid var(--navy);
}
.story-pull-quote {
  font-family: var(--sans);
  font-size: 22px; line-height: 1.4;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.story-pull-author {
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--text-3);
}

/* ─── TEAM ───────────────────────────────────────── */
#team {
  padding: 140px 0;
  background: var(--paper);
}
.team-header { margin-bottom: 72px; max-width: 760px; }
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.team-card {
  display: flex; flex-direction: column;
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  margin-bottom: 18px;
}
.team-name {
  font-family: var(--sans); font-weight: 800;
  font-size: 16px; line-height: 1.2;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.team-role {
  font-size: 11px; font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ─── PARTNERS (LARGE) ───────────────────────────── */
#partners {
  padding: 160px 0;
  background: var(--white);
  border-top: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}
.partners-header { text-align: center; margin-bottom: 80px; display: flex; flex-direction: column; align-items: center; }
.partners-header .section-sub { margin: 0 auto; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}
.partner-card {
  background: var(--paper);
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  padding: 44px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 22px;
  transition: background 0.3s ease;
  min-height: 320px;
}
.partner-card:hover { background: var(--tint); }
.partner-mark {
  width: 88px; height: 88px;
  background: var(--white);
  border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800;
  font-size: 22px; color: var(--navy);
  letter-spacing: 1px;
  transition: background 0.3s ease, color 0.3s ease;
}
.partner-card:hover .partner-mark { background: var(--navy); color: white; }
.partner-name {
  font-family: var(--sans); font-weight: 800;
  font-size: 18px; line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.partner-role {
  font-size: 13px; font-weight: 500;
  color: var(--text-2); line-height: 1.55;
}

.partners-footnote {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.partners-footnote-text {
  font-family: var(--sans);
  font-size: 18px; color: var(--text-2);
  line-height: 1.5; max-width: 600px;
  font-weight: 500;
}

/* ─── ACHIEVEMENTS / TIMELINE ────────────────────── */
#achievements {
  padding: 140px 0;
  background: var(--paper);
}
.achievements-header { max-width: 760px; margin-bottom: 56px; }
.timeline {
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  border-left: 2px solid var(--navy);
  padding-left: 36px;
  margin-left: 8px;
}
.timeline-item {
  padding: 26px 0;
  position: relative;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 160px 1fr; gap: 36px; align-items: baseline;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -45px; top: 32px;
  width: 16px; height: 16px;
  background: var(--white);
  border: 3px solid var(--navy);
}
.timeline-date {
  font-family: var(--sans); font-weight: 800;
  font-size: 13px; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
}
.timeline-item h4 {
  font-family: var(--sans); font-weight: 800;
  font-size: 19px; line-height: 1.25;
  color: var(--navy); letter-spacing: 0.3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-item p {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}

/* ─── CONTACT ────────────────────────────────────── */
#contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-solo {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.contact-solo .section-title { text-align: center; }
.contact-solo-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.65;
  max-width: 480px; margin: 0 auto 64px;
}
.contact-cards {
  display: flex; flex-direction: column;
  max-width: 560px; margin: 0 auto 64px;
  border: 1px solid var(--border);
  text-align: left;
}
.contact-cards .contact-detail {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}
.contact-cards .contact-detail:first-child { padding-top: 24px; }
.contact-cards .contact-detail:last-child { border-bottom: none; }
.contact-email-cta {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.contact-email-addr {
  font-size: 13px; color: var(--text-3); letter-spacing: 0.4px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 32px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--paper);
  border: 1px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 16px;
}
.contact-detail-text { line-height: 1.5; }
.contact-detail-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; color: var(--navy); font-weight: 600; }
.contact-detail-value a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.contact-detail-value a:hover { opacity: 0.7; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--navy);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-label {
  font-size: 11px; font-weight: 800; color: var(--navy);
  margin-bottom: 8px; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 14px 14px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  font-weight: 500;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--navy);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-submit-row { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.form-note { font-size: 11px; color: var(--text-3); line-height: 1.55; letter-spacing: 0.3px; }

/* ─── FAQ ────────────────────────────────────────── */
#faq {
  padding: 140px 0;
  background: var(--paper);
}
.faq-list { max-width: 860px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px;
  text-align: left;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  gap: 24px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--paper); }
.faq-q-icon {
  width: 32px; height: 32px;
  border: 1.5px solid var(--navy);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.3s;
  font-size: 18px; font-weight: 400;
  color: var(--navy);
  line-height: 1;
}
.faq-item.open .faq-q-icon {
  background: var(--navy); color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 28px 26px;
  font-size: 15px; line-height: 1.75;
  color: var(--text-2); font-weight: 400;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: white;
  padding: 72px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: white; margin-bottom: 18px; }
.footer-brand .nav-logo-mark { background: white; color: var(--navy); }
.footer-tagline {
  font-family: var(--sans); font-size: 16px;
  color: rgba(255,255,255,0.7); line-height: 1.5;
  max-width: 320px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-weight: 800;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.2s, padding-left 0.2s;
  font-weight: 500;
}
.footer-col a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.footer-legal a:hover { color: white; }

/* ─── MOBILE ─────────────────────────────────────── */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-right > .lang-switch { display: none; }
  .nav-burger { display: flex; }
  .hero-inner, .problem-inner, .solution-grid, .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-cards { max-width: 100%; }
  .hero-visual { aspect-ratio: 1/1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-floating-1 { left: 12px; }
  .hero-floating-2 { right: 12px; }
  .process-step { grid-template-columns: 1fr; min-height: 0; }
  .process-step.reverse .process-step-visual { order: 0; border-left: none; border-bottom: 1px solid var(--border); }
  .process-step .process-step-visual { border-right: none; border-bottom: 1px solid var(--border); min-height: 280px; }
  .process-step-content { padding: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .problem-stats { grid-template-columns: 1fr; }
  .hero-floating-1, .hero-floating-2 { display: none; }
}
.no-grid::before {
  display: none;
}
.team-grid {
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}