/* ═══════════════════════════════════════════════════════════════
   IGS Organisationsberatung – Modern Design System 2025
   Brand: #313787 | #F08100 | #000000 | #FFFFFF | Font: Inter
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400;1,14..32,500&display=swap');

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --blue:        #313787;
  --blue-mid:    #1e2260;
  --blue-dk:     #131740;
  --blue-xdk:    #0a0d28;
  --blue-lt:     #eef0f9;
  --blue-glass:  rgba(49,55,135,0.12);
  --orange:      #F08100;
  --orange-warm: #ff9500;
  --orange-dk:   #c96c00;
  --orange-lt:   #fff5e8;
  --orange-glow: rgba(240,129,0,0.35);
  --white:       #ffffff;
  --off-white:   #fafbff;
  --black:       #0a0a0f;
  --gray:        #555566;
  --gray-lt:     #f0f1f6;
  --border:      rgba(49,55,135,0.12);
  --border-light: rgba(255,255,255,0.10);

  /* Gradients */
  --grad-blue:   linear-gradient(135deg, #0a0d28 0%, #131740 40%, #1e2260 70%, #313787 100%);
  --grad-orange: linear-gradient(135deg, #F08100 0%, #ff9500 100%);
  --grad-mixed:  linear-gradient(135deg, #313787 0%, #1e2260 50%, #F08100 100%);
  --grad-hero:   radial-gradient(ellipse 120% 80% at 110% 60%, rgba(240,129,0,.15) 0%, transparent 50%),
                 radial-gradient(ellipse 60% 80% at -10% 30%, rgba(49,55,135,.4) 0%, transparent 60%),
                 linear-gradient(160deg, #0a0d28 0%, #131740 35%, #1e2260 65%, #313787 100%);

  /* Spacing & Layout */
  --nav-h:   72px;
  --max-w:   1160px;
  --radius:  10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(10,13,40,.08);
  --shadow:     0 4px 24px rgba(10,13,40,.12);
  --shadow-lg:  0 12px 48px rgba(10,13,40,.18);
  --shadow-xl:  0 24px 80px rgba(10,13,40,.24);
  --glow-orange: 0 0 40px rgba(240,129,0,.40), 0 0 80px rgba(240,129,0,.15);
  --glow-blue:   0 0 40px rgba(49,55,135,.40), 0 0 80px rgba(49,55,135,.15);

  /* Transitions */
  --t-fast:  .15s ease;
  --t-mid:   .25s ease;
  --t-slow:  .45s cubic-bezier(.16,1,.3,1);
}

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageIn .4s ease both;
}
/* smooth scroll */
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(2deg); }
  66%       { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(12px) rotate(-2deg); }
  66%       { transform: translateY(5px) rotate(1deg); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.15); opacity: .9; }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(240,129,0,.3); box-shadow: 0 0 0 0 rgba(240,129,0,0); }
  50%       { border-color: rgba(240,129,0,.8); box-shadow: 0 0 20px rgba(240,129,0,.25); }
}
@keyframes slideInBadge {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes navbarIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineExpand {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes blurFadeIn {
  from { opacity: 0; filter: blur(12px); transform: translateY(20px); }
  to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}
@keyframes shineSweep {
  0%   { left: -120%; }
  100% { left: 140%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,137,255,.25); }
  50%       { box-shadow: 0 0 0 14px rgba(40,137,255,0); }
}
@keyframes progressGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes labelSlide {
  from { opacity: 0; transform: translateX(-16px); letter-spacing: .06em; }
  to   { opacity: 1; transform: translateX(0);    letter-spacing: .12em; }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1),
              transform .75s cubic-bezier(.16,1,.3,1),
              filter .6s cubic-bezier(.16,1,.3,1);
}
.reveal.from-left  { transform: translateX(-48px); filter: blur(4px); }
.reveal.from-right { transform: translateX(48px);  filter: blur(4px); }
.reveal.scale      { transform: scale(.9) translateY(20px); }
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}
/* Stagger delays */
.stagger-1  { transition-delay: .06s; }
.stagger-2  { transition-delay: .14s; }
.stagger-3  { transition-delay: .22s; }
.stagger-4  { transition-delay: .30s; }
.stagger-5  { transition-delay: .38s; }
.stagger-6  { transition-delay: .46s; }
.stagger-7  { transition-delay: .54s; }
.stagger-8  { transition-delay: .62s; }
.stagger-9  { transition-delay: .70s; }

/* ── Scroll Progress Bar ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, #64b5ff 100%);
  transition: width .08s linear;
  box-shadow: 0 0 8px rgba(40,137,255,.5);
}

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(40,137,255,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(40,137,255,.6); }

/* ── Gradient Text ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #F08100 0%, #ff9500 60%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, #313787 0%, #4a56b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(49,55,135,.08);
  animation: navbarIn .6s ease both;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad-blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.nav__logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-orange);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.nav__logo:hover .nav__logo-mark {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: var(--glow-orange);
}
.nav__logo:hover .nav__logo-mark::after { opacity: 1; }
.nav__logo-mark span { position: relative; z-index: 1; }

.nav__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--t-mid);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }

.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dk);
  letter-spacing: -.02em;
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: left .25s cubic-bezier(.16,1,.3,1), right .25s cubic-bezier(.16,1,.3,1);
}
.nav__link:hover  { color: var(--blue); background: var(--blue-lt); }
.nav__link:hover::after { left: 15px; right: 15px; }
.nav__link.active { color: var(--blue); font-weight: 600; }
.nav__link.active::after { left: 15px; right: 15px; }

.nav__cta {
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,129,0,.40);
}
.nav__cta:hover::before { opacity: 1; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--t-mid);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 104px 24px 96px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,129,0,.22), transparent 70%);
  right: -100px;
  top: -100px;
  animation: orbPulse 6s ease-in-out infinite;
}
.hero__orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(49,55,135,.5), transparent 70%);
  left: -80px;
  bottom: -80px;
  animation: orbPulse 8s ease-in-out infinite .5s;
}
.hero__orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240,129,0,.12), transparent 70%);
  left: 50%;
  top: 30%;
  animation: float 10s ease-in-out infinite;
}

/* Grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating shapes */
.hero__shape {
  position: absolute;
  pointer-events: none;
  opacity: .12;
}
.hero__shape-1 {
  width: 120px;
  height: 120px;
  border: 2px solid var(--orange);
  border-radius: 20px;
  right: 12%;
  top: 18%;
  animation: float 7s ease-in-out infinite;
  transform: rotate(15deg);
}
.hero__shape-2 {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  right: 22%;
  bottom: 28%;
  animation: floatReverse 9s ease-in-out infinite;
  opacity: .18;
}
.hero__shape-3 {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  left: 8%;
  top: 35%;
  animation: spinSlow 20s linear infinite;
  opacity: .15;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__content { max-width: 580px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,129,0,.15);
  border: 1px solid rgba(240,129,0,.30);
  color: var(--orange-warm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: slideInBadge .8s .2s ease both;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: orbPulse 2s infinite;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  animation: fadeInUp .9s .3s cubic-bezier(.16,1,.3,1) both;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-warm) 60%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.72);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.65;
  animation: fadeInUp .9s .45s cubic-bezier(.16,1,.3,1) both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp .9s .55s cubic-bezier(.16,1,.3,1) both;
}

/* Hero Right: Stats card */
.hero__card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  animation: scaleIn .9s .4s cubic-bezier(.16,1,.3,1) both;
}
.hero__card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero__stat {
  padding: 20px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--t-mid), border-color var(--t-mid);
}
.hero__stat:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(240,129,0,.3);
}
.hero__stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-value em {
  font-style: normal;
  color: var(--orange);
}
.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.35;
}
.hero__card-quote {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.hero__card-quote strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
  font-size: 12px;
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-mid);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: -.01em;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -120%;
  width: 60%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: none;
}
.btn:hover::before {
  animation: shineSweep .55s ease forwards;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}
.btn--primary:hover {
  background: var(--orange-warm);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--orange-glow), 0 0 0 4px rgba(240,129,0,.15);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
}
.btn--blue:hover {
  background: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(40,137,255,.35), 0 0 0 4px rgba(40,137,255,.12);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--ghost:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn--lg {
  padding: 17px 36px;
  font-size: 16px;
  border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--gray { background: var(--off-white); }
.section--dark {
  background: var(--blue-dk);
  color: var(--white);
}
.section--xdark {
  background: var(--blue-xdk);
  color: var(--white);
}
.section--orange-tint { background: var(--orange-lt); }

/* ── Section Labels & Titles ───────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.reveal.visible .label::before { width: 28px; }

.section-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--blue-dk);
}
.section-title--white { color: var(--white); }
.section-title--lg {
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -.04em;
}

.section-intro {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.section-intro--white { color: rgba(255,255,255,.7); }

/* ── Grid ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ══════════════════════════════════════════════════════════════
   CARDS – Modern Variants
══════════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.card:hover {
  transform: translateY(-7px) scale(1.005);
  box-shadow: 0 20px 48px rgba(0,0,0,.1), 0 0 0 1px rgba(240,129,0,.15);
  border-color: rgba(240,129,0,.2);
}
.card:hover::before { transform: scaleX(1); }

/* Glass Card (for dark backgrounds) */
.card-glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background .35s ease, border-color .35s ease, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.card-glass:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

/* Orange accent card */
.card-accent {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 0 rgba(240,129,0,0);
  transition: all var(--t-slow);
}
.card-accent:hover {
  box-shadow: 0 8px 32px rgba(240,129,0,.25);
  transform: translateY(-4px);
}

/* Numbered card */
.card__number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__number::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--blue-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: transform var(--t-mid), background var(--t-mid);
}
.card:hover .card__icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--orange-lt);
}

.card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-dk);
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.card__body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .01em;
  transition: gap var(--t-fast);
}
.card:hover .card__link { gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (Subpages)
══════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--grad-blue);
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 100% 50%, rgba(240,129,0,.12), transparent),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  pointer-events: none;
}
.page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-header__eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
}
.page-header__title {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-header__sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════════════════════════
   STATS – Animated
══════════════════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-item {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.stat-item:hover { transform: translateY(-3px); }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width var(--t-slow);
}
.stat-item:hover { background: var(--off-white); }
.stat-item:hover::before { width: 60%; }

.stat-item__value {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-dk);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.stat-item__value em {
  font-style: normal;
  color: var(--orange);
}
.stat-item:hover .stat-item__value { color: var(--blue); }
.stat-item__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.4;
}

/* Dark stats variant */
.stats-dark .stat-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.stats-dark .stat-item__value { color: var(--white); }
.stats-dark .stat-item__label { color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════════════════
   BENTO GRID
══════════════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.bento-1 { grid-column: span 8; }
.bento-2 { grid-column: span 4; }
.bento-3 { grid-column: span 4; }
.bento-4 { grid-column: span 4; }
.bento-5 { grid-column: span 4; }
.bento-6 { grid-column: span 6; }
.bento-7 { grid-column: span 6; }
.bento-full { grid-column: 1 / -1; }

.bento-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1);
}
.bento-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,.12);
}
.bento-card--blue { background: var(--blue); color: var(--white); }
.bento-card--orange { background: var(--orange); color: var(--white); }
.bento-card--dark { background: var(--blue-dk); color: var(--white); }
.bento-card--light { background: var(--white); border: 1px solid var(--border); }
.bento-card--gray { background: var(--off-white); border: 1px solid var(--border); }
.bento-card--gradient {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue-mid) 60%, var(--blue) 100%);
  color: var(--white);
}

.bento-card__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 16px;
}
.bento-card__value {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.bento-card__value em { font-style: normal; color: var(--orange); }
.bento-card--orange .bento-card__value em { color: rgba(255,255,255,.7); }
.bento-card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.bento-card__body {
  font-size: 14px;
  line-height: 1.65;
  opacity: .75;
  flex: 1;
}
.bento-card__bg-text {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 120px;
  font-weight: 900;
  opacity: .06;
  letter-spacing: -.05em;
  line-height: 1;
  pointer-events: none;
  color: currentColor;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE BLOCKS
══════════════════════════════════════════════════════════════ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.service-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
  border-radius: 3px;
}
.service-block:hover::before {
  background: var(--orange);
}
.service-block:last-child { border-bottom: none; }

.service-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: var(--orange-lt);
  border-radius: 100px;
  border: 1px solid rgba(240,129,0,.2);
}
.service-block__title {
  font-size: 30px;
  font-weight: 900;
  color: var(--blue-dk);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.service-block__body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-block__sub-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-block__sub-title::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
}

/* ══════════════════════════════════════════════════════════════
   CHECKLIST
══════════════════════════════════════════════════════════════ */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--black);
  line-height: 1.55;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.check-list li:hover {
  background: var(--white);
  border-color: rgba(240,129,0,.25);
  transform: translateX(4px);
}
.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PULLQUOTE
══════════════════════════════════════════════════════════════ */
.pullquote {
  border-left: 4px solid var(--orange);
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--blue-lt), rgba(240,129,0,.06));
  border-radius: 0 12px 12px 0;
  position: relative;
  margin: 32px 0;
}
.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: 24px;
  font-size: 64px;
  color: var(--orange);
  line-height: 1;
  font-weight: 900;
  opacity: .25;
}
.pullquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--blue-dk);
  line-height: 1.65;
  position: relative;
}
.pullquote cite {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   PROFILE PAGE
══════════════════════════════════════════════════════════════ */
.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}
.profile-card {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border: 1px solid rgba(255,255,255,.06);
}
.profile-card__img {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  letter-spacing: -.04em;
  position: relative;
  overflow: hidden;
}
.profile-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,13,40,.8));
}
.profile-card__body { padding: 28px 28px 32px; }
.profile-card__name {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 3px;
  letter-spacing: -.03em;
}
.profile-card__role {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.profile-card__detail {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.profile-card__detail:last-of-type { border: none; }

.profile-content h2 {
  font-size: 27px;
  font-weight: 900;
  color: var(--blue-dk);
  letter-spacing: -.035em;
  line-height: 1.2;
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
}
.profile-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.profile-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.profile-content h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin: 28px 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-content h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Value Cards ───────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
}
.value-card {
  padding: 24px 20px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t-slow);
  cursor: default;
}
.value-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(240,129,0,.15);
  transform: translateY(-6px);
  background: var(--orange-lt);
}
.value-card__icon { font-size: 28px; margin-bottom: 12px; }
.value-card__title { font-size: 14px; font-weight: 800; color: var(--blue-dk); margin-bottom: 8px; }
.value-card__body { font-size: 12px; color: var(--gray); line-height: 1.55; }

/* ══════════════════════════════════════════════════════════════
   PUBLICATIONS
══════════════════════════════════════════════════════════════ */
.pub-section { margin-bottom: 56px; }
.pub-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.pub-section__icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.pub-section__header:hover .pub-section__icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(49,55,135,.3);
}
.pub-section__title { font-size: 22px; font-weight: 900; color: var(--blue-dk); letter-spacing: -.03em; }
.pub-section__meta { font-size: 13px; color: var(--gray); margin-top: 3px; }
.pub-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: padding-left var(--t-mid);
}
.pub-item:hover { padding-left: 8px; }
.pub-item:last-child { border-bottom: none; }
.pub-item__bullet {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  transition: transform var(--t-mid);
}
.pub-item:hover .pub-item__bullet { transform: scale(1.5); }
.pub-item__text { font-size: 15px; color: var(--black); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.contact-info__name {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-dk);
  margin-bottom: 3px;
  letter-spacing: -.035em;
}
.contact-info__role { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 36px; text-transform: uppercase; letter-spacing: .04em; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--gray);
  transition: padding-left var(--t-fast);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail:hover { padding-left: 6px; }
.contact-detail__icon {
  width: 40px; height: 40px;
  background: var(--blue-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 17px;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.contact-detail:hover .contact-detail__icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-8deg) scale(1.08);
}

/* ══════════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════════ */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: .01em; }
.form-label span { color: var(--orange); }
.form-input, .form-textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--off-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(49,55,135,.10);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-hint { font-size: 12px; color: var(--gray); }

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════ */
.nl-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.nl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: all var(--t-mid);
}
.nl-item:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateX(4px); }
.nl-item__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nl-item__yes .nl-item__icon { background: #e8f5e9; }
.nl-item__no  .nl-item__icon { background: #fce8e8; }
.nl-item__title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.nl-item__body  { font-size: 13px; color: var(--gray); line-height: 1.5; }

.newsletter-signup {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 44px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.newsletter-signup::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240,129,0,.2), transparent 70%);
  pointer-events: none;
}
.newsletter-signup__title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.03em;
  position: relative;
}
.newsletter-signup__sub {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  line-height: 1.65;
  position: relative;
}
.nl-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-input:focus { border-color: rgba(240,129,0,.5); background: rgba(255,255,255,.12); }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(240,129,0,.2), transparent 70%);
  pointer-events: none;
}
.cta-banner__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner__sub {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .label { display: flex; justify-content: center; margin-bottom: 16px; color: var(--orange-warm); }
.cta-banner .label::before { background: var(--orange-warm); }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════════════ */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--blue-dk);
  margin: 40px 0 14px;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-content h2::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--orange);
  border-radius: 4px;
}
.legal-content h3 { font-size: 16px; font-weight: 700; color: var(--black); margin: 24px 0 8px; }
.legal-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.legal-content address { font-style: normal; font-size: 15px; color: var(--gray); line-height: 1.9; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--blue-xdk);
  color: rgba(255,255,255,.65);
  padding: 64px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-orange);
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.8fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}
.footer__brand { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.footer__brand-mark {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.footer__brand-name { font-weight: 700; color: var(--white); font-size: 14px; line-height: 1.35; }
.footer__brand-sub { font-size: 11px; color: rgba(255,255,255,.4); }
.footer__desc { font-size: 14px; line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.footer__col-title { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14px; color: rgba(255,255,255,.55); transition: color .25s ease, padding-left .25s cubic-bezier(.16,1,.3,1), opacity .25s ease; }
.footer__link:hover { color: rgba(255,255,255,.95); padding-left: 8px; opacity: 1; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.footer__legal a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.process-step {
  position: relative;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--t-slow);
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-lt), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.process-step:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step:hover::before { opacity: 1; }
.process-step__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  background: var(--orange);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
  margin-bottom: 16px;
  position: relative;
}
.process-step__title { font-size: 16px; font-weight: 800; color: var(--blue-dk); margin-bottom: 8px; position: relative; }
.process-step__body { font-size: 14px; color: var(--gray); line-height: 1.65; position: relative; }

/* ══════════════════════════════════════════════════════════════
   MISC UTILITIES
══════════════════════════════════════════════════════════════ */
.orange-line {
  width: 56px;
  height: 4px;
  background: var(--grad-orange);
  border-radius: 4px;
  margin-bottom: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.tag--blue { background: var(--blue-lt); color: var(--blue); }
.tag--orange { background: var(--orange-lt); color: var(--orange-dk); border: 1px solid rgba(240,129,0,.2); }

.divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 56px 0;
}
.divider-label::before, .divider-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray); }

/* ── Backward-compat aliases ───────────────────────────────── */
.section-label { /* alias for .label */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.btn--outline { /* alias: outline on dark bg = outline-white */
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-mid);
  text-decoration: none;
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}
.newsletter-box { /* alias for .newsletter-signup */
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 44px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,129,0,.2), transparent 70%);
  pointer-events: none;
}
.newsletter-box__title { font-size: 26px; font-weight: 900; margin-bottom: 10px; letter-spacing: -.03em; position: relative; }
.newsletter-box__sub { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 28px; line-height: 1.65; position: relative; }
.section--blue { background: var(--grad-blue); color: var(--white); }
/* Old stats classes (alias) */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.stat { background: var(--white); padding: 36px 24px; text-align: center; position: relative; overflow: hidden; transition: background var(--t-mid); }
.stat::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--orange); transition: width var(--t-slow); }
.stat:hover { background: var(--off-white); }
.stat:hover::before { width: 60%; }
.stat__value { font-size: 44px; font-weight: 900; color: var(--blue-dk); letter-spacing: -.05em; line-height: 1; margin-bottom: 8px; }
.stat__value em, .stat__value span { font-style: normal; color: var(--orange); }
.stat__label { font-size: 13px; font-weight: 500; color: var(--gray); line-height: 1.4; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__card  { max-width: 560px; }
  .bento-1 { grid-column: span 12; }
  .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 6; }
  .bento-6, .bento-7 { grid-column: span 12; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: repeat(3,1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card { position: static; max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .nl-hero-split { grid-template-columns: 1fr; gap: 48px; }
  .newsletter-signup { position: static; }
}

@media (max-width: 680px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 20px 64px; min-height: auto; }
  .page-header { padding: 48px 20px 40px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 199;
  }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 12; }
  .cta-banner { padding: 44px 28px; }
  .form-card { padding: 28px 24px; }
  .hero__shape { display: none; }
  .split-2, .split-2--wide, .split-2--narrow, .split-2--start { grid-template-columns: 1fr; --gap: 36px; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr; }
  .pub-deck__stack { display: none; }
  .pub-deck__trigger { padding: 16px 18px; }
  .pub-deck.open .pub-deck__inner { padding: 12px 16px 20px; }
  .service-block { padding: 48px 0; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE SPLIT-GRID UTILITIES
══════════════════════════════════════════════════════════════ */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap, 64px);
  align-items: var(--align, center);
}
.split-2--wide    { grid-template-columns: 1fr 1.35fr; }
.split-2--narrow  { grid-template-columns: 1.4fr 1fr; }
.split-2--start   { --align: start; }
.split-2--gap-md  { --gap: 48px; }

@media (max-width: 900px) {
  .split-2, .split-2--wide, .split-2--narrow {
    grid-template-columns: 1fr;
    --gap: 48px;
  }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════════════════════════════════
   PUBLICATION CARD DECK (accordion + card-stack animation)
══════════════════════════════════════════════════════════════ */
.pub-decks { display: flex; flex-direction: column; gap: 12px; }

.pub-deck {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}
.pub-deck:hover { border-color: rgba(49,55,135,.2); box-shadow: var(--shadow); }
.pub-deck.open  { border-color: rgba(49,55,135,.3); box-shadow: var(--shadow-lg); }

/* Trigger */
.pub-deck__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--t-fast);
  font-family: 'Inter', sans-serif;
}
.pub-deck__trigger:hover { background: var(--off-white); }
.pub-deck.open .pub-deck__trigger { background: var(--blue-lt); }

/* Category icon */
.pub-deck__icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--t-mid), transform var(--t-mid);
}
.pub-deck__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.pub-deck.open .pub-deck__icon { background: var(--orange); transform: rotate(-5deg) scale(1.05); }

/* Title & count */
.pub-deck__title { font-size: 17px; font-weight: 800; color: var(--blue-dk); letter-spacing: -.02em; display: block; }
.pub-deck__count { font-size: 13px; color: var(--gray); display: block; margin-top: 3px; }

/* Card-stack visual */
.pub-deck__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}
.pub-deck__stack span {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: var(--blue-lt);
  border: 1px solid rgba(49,55,135,.15);
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.pub-deck__stack span:nth-child(1) { width: 54px; }
.pub-deck__stack span:nth-child(2) { width: 40px; opacity: .65; }
.pub-deck__stack span:nth-child(3) { width: 26px; opacity: .35; }
.pub-deck.open .pub-deck__stack span { width: 10px; opacity: .2; }

/* Expand arrow */
.pub-deck__arrow {
  width: 20px; height: 20px;
  stroke: var(--gray); stroke-width: 2.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--t-mid), stroke var(--t-fast);
}
.pub-deck.open .pub-deck__arrow { transform: rotate(180deg); stroke: var(--blue); }

/* Animated body (grid-template-rows trick) */
.pub-deck__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s cubic-bezier(.16,1,.3,1);
  border-top: 1px solid transparent;
  transition: grid-template-rows .55s cubic-bezier(.16,1,.3,1), border-color .2s;
}
.pub-deck.open .pub-deck__body { grid-template-rows: 1fr; border-top-color: var(--border); }
.pub-deck__inner { overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
.pub-deck.open .pub-deck__inner { padding: 20px 24px 28px; }

/* Individual publication card */
.pub-card {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: background var(--t-fast), border-color var(--t-fast),
              transform var(--t-fast), opacity .35s ease, translate .35s ease;
  opacity: 0;
  translate: 0 10px;
}
.pub-card.visible { opacity: 1; translate: 0 0; }
.pub-card:hover { background: var(--white); border-color: rgba(240,129,0,.3); translate: 4px 0; }
.pub-card__authors {
  font-size: 11px; font-weight: 800; color: var(--orange-dk);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px;
}
.pub-card__title { font-size: 14px; font-weight: 700; color: var(--blue-dk); line-height: 1.45; margin-bottom: 5px; }
.pub-card__meta  { font-size: 12px; color: var(--gray); line-height: 1.6; }
.pub-card__year  {
  display: inline-flex; align-items: center; padding: 2px 8px;
  background: var(--blue-lt); color: var(--blue); border-radius: 100px;
  font-size: 11px; font-weight: 700; margin-top: 7px;
}
.pub-card__link {
  color: var(--blue); font-weight: 600; font-size: 12px;
  text-decoration: none; opacity: .8;
}
.pub-card__link:hover { opacity: 1; text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   ICON UTILITIES (replaces emojis)
══════════════════════════════════════════════════════════════ */
.step-num {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.step-num--blue   { background: var(--blue); }
.step-num--orange { background: var(--orange); }

.icon-box {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-mid), background var(--t-mid);
}
.icon-box svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon-box--blue   { background: var(--blue-lt); color: var(--blue); }
.icon-box--orange { background: var(--orange-lt); color: var(--orange-dk); }
.contact-detail:hover .icon-box { background: var(--orange); color: var(--white); transform: rotate(-8deg) scale(1.08); }

/* Value card icons (geometric, replaces emoji) */
.val-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 14px; font-weight: 900;
  transition: transform var(--t-mid);
}
.value-card:hover .val-icon { transform: scale(1.15) rotate(-5deg); }
.val-icon--1 { background: var(--blue-lt);   color: var(--blue); }
.val-icon--2 { background: var(--orange-lt); color: var(--orange-dk); }
.val-icon--3 { background: #e8f5e9; color: #2e7d32; }
.val-icon--4 { background: #e3f2fd; color: #1565c0; }
.val-icon--5 { background: #fce4ec; color: #c2185b; }
.val-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* Boolean check/cross (replaces ✅/❌) */
.bool-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bool-icon svg { width: 18px; height: 18px; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.bool-icon--yes { background: #e8f5e9; color: #2e7d32; }
.bool-icon--no  { background: #fce8e8; color: #c62828; }

/* Process step icon (replaces emoji) */
.proc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 20px; font-weight: 900;
  color: var(--white);
  transition: transform var(--t-mid);
}
.process-step:hover .proc-icon { transform: scale(1.1) rotate(-4deg); }
.proc-icon--1 { background: var(--grad-blue); }
.proc-icon--2 { background: var(--orange); }
.proc-icon--3 { background: linear-gradient(135deg, var(--blue-mid), var(--blue)); }
