/* ============================================================
   INUMELE — Design System
   Palette: Navy (brand) + Gold (accent) + Neutral grays
   ============================================================ */

:root {
  --navy-900: #0d1642;
  --navy-800: #131f5c;
  --navy-700: #1a2b7a;
  --navy-600: #22399e;
  --navy-500: #2b47b8;
  --gold-500: #f2a900;
  --gold-400: #ffc233;
  --gray-900: #171a2b;
  --gray-700: #454a63;
  --gray-500: #6b7089;
  --gray-300: #d7d9e4;
  --gray-100: #f3f4f8;
  --white: #ffffff;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(13, 22, 66, 0.08);
  --shadow-md: 0 12px 32px rgba(13, 22, 66, 0.14);
  --shadow-lg: 0 24px 60px rgba(13, 22, 66, 0.22);
  --container: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--gray-700); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--navy {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
}
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }
.section--gray { background: var(--gray-100); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }
.btn--outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--navy { background: var(--navy-800); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--navy:hover { background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--navy-800); color: var(--navy-800); }
.btn--ghost:hover { background: var(--navy-900); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(13, 22, 66, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  padding: 10px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav a:hover, .nav a.is-active { color: var(--gold-400); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold-500);
}

.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 6px;
}
.lang-switch a {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.lang-switch a.is-active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  z-index: 1200;
  transition: width 0.1s ease-out;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding-top: 110px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg__slide {
  position: absolute; inset: -3%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.4s ease, transform 8s ease-out;
  transform: scale(1.08);
  will-change: opacity, transform;
}
.hero-bg__slide.is-active { opacity: 1; transform: scale(1); }
.hero-bg__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,16,55,0.94) 0%, rgba(13,22,66,0.88) 42%, rgba(20,32,90,0.55) 75%, rgba(20,32,90,0.35) 100%),
    radial-gradient(circle at 18% 20%, rgba(34,57,158,0.55), transparent 55%);
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
}
.hero-dots {
  position: absolute;
  bottom: 90px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 9px;
  z-index: 3;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dots button.is-active { background: var(--gold-500); transform: scale(1.3); }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}
.hero__blob--1 { width: 420px; height: 420px; background: var(--gold-500); top: -120px; right: -100px; opacity: 0.28; }
.hero__blob--2 { width: 320px; height: 320px; background: var(--navy-500); bottom: -100px; right: 20%; opacity: 0.4; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-24px, 26px); }
}

.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 540px; }
.hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 14px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.86rem;
  font-weight: 600;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--gold-400); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual__ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-visual__ring--inner { inset: 14%; animation-duration: 26s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-visual__core {
  position: relative;
  width: 62%;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}
.hero-visual__chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--navy-900);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-visual__chip span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--gray-500); font-size: 0.72rem; }
.hero-visual__chip--1 { top: 6%; left: -4%; animation: bob 5s ease-in-out infinite; }
.hero-visual__chip--2 { bottom: 10%; right: -8%; animation: bob 5s ease-in-out infinite 1.2s; }
@keyframes bob { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-12px);} }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue__line { width: 1px; height: 36px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrolldown 1.8s ease-in-out infinite; }
@keyframes scrolldown { 0%{opacity:0; transform: scaleY(0.4); transform-origin: top;} 50%{opacity:1; transform: scaleY(1); transform-origin: top;} 100%{opacity:0; transform: scaleY(0.4); transform-origin: bottom;} }

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.page-hero {
  padding: 160px 0 70px;
  background: radial-gradient(circle at 85% 0%, var(--navy-600), var(--navy-900) 65%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  will-change: transform;
}
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,14,50,0.95) 0%, rgba(13,22,66,0.92) 45%, rgba(24,38,104,0.72) 100%);
  z-index: 1;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  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: 44px 44px;
  mask-image: radial-gradient(circle at 85% 0%, rgba(0,0,0,0.7), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; font-size: 1.05rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card--photo .card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.card--photo:hover .card__media img { transform: scale(1.1); }
.card--photo .card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,22,66,0.35));
}
.card--photo .card__icon {
  position: relative;
  margin: -26px 0 0 26px;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(13,22,66,0.28);
}
.card--photo .card__body { display: flex; flex-direction: column; flex: 1; padding: 44px 28px 30px; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.96rem; }
.card--link { display: flex; flex-direction: column; }
.card__more {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy-700);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s ease;
}
.card:hover .card__more { gap: 10px; color: var(--gold-500); }

/* Pillars / process */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.pillar { padding: 40px 30px; background: var(--white); text-align: center; border-right: 1px solid var(--gray-300); }
.pillar:last-child { border-right: none; }
.pillar__icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gold-500); }
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.05rem; margin-bottom: 6px; }
.pillar p { font-size: 0.9rem; margin: 0; }

.sectors { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.sector-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--navy-700);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sector-tag:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.sector-tag__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.sector-tag__icon svg { width: 20px; height: 20px; }
.sectors-cta { text-align: center; margin-top: 40px; }

/* Steps / process timeline */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 20px; }
.process::before {
  content: "";
  position: absolute;
  top: 30px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-300) 10%, var(--gray-300) 90%, transparent);
}
.step { position: relative; text-align: center; }
.step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--navy-700);
  color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 18px; position: relative; z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}
.step:hover .step__num { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.step h3 { font-size: 1.02rem; }
.step p { font-size: 0.9rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { position: relative; padding: 10px; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.1rem, 3.4vw, 3rem); color: var(--gold-400); display: inline-flex; align-items: baseline; gap: 2px; }
.stat__label { font-size: 0.88rem; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

/* Photo gallery (About) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; gap: 14px; }
.gallery a { grid-column: span 1; grid-row: span 1; border-radius: 12px; overflow: hidden; position: relative; display: block; }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(4) { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; filter: saturate(0.94); }
.gallery a:hover img { transform: scale(1.08); filter: saturate(1.1); }
.gallery a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,22,66,0.45));
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery a:hover::after { opacity: 1; }

/* Locations */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.location-card__pin {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
}
.location-card__pin svg { width: 22px; height: 22px; }
.location-card h3 { margin-bottom: 4px; }
.location-card p { margin: 0; font-size: 0.92rem; }

/* Values / about */
.value-row { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--gray-300); }
.value-row:last-child { border-bottom: none; }
.value-row__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--white); display: flex; align-items: center; justify-content: center;
}
.value-row__icon svg { width: 24px; height: 24px; }
.value-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.value-row p { margin: 0; font-size: 0.94rem; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-visual img { width: 46%; filter: drop-shadow(0 16px 30px rgba(0,0,0,0.4)); }
.split-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.split-visual__badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 12px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.checklist { list-style: none; padding: 0; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.98rem; color: var(--gray-700); }
.checklist svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-500); margin-top: 2px; }

/* CTA band */
.cta-band {
  border-radius: 24px;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  padding: 56px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: var(--gold-500); opacity: 0.18; filter: blur(50px);
  top: -80px; right: -60px;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; }

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid var(--gray-300);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; margin-bottom: 8px; color: var(--navy-900); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--gray-100);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy-600); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 14px; }
.form-alert {
  padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-size: 0.92rem; font-weight: 500;
}
.form-alert--ok { background: #e5f6ec; color: #1c7a41; border: 1px solid #b6e6c6; }
.form-alert--err { background: #fdecec; color: #b3261e; border: 1px solid #f6c3c0; }

/* Job list */
.job-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.job-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.job-item h3 { margin-bottom: 4px; font-size: 1.02rem; }
.job-item p { margin: 0; font-size: 0.88rem; }
.job-empty {
  text-align: center;
  padding: 50px 30px;
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius);
  color: var(--gray-500);
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 34px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.15rem; }
.site-footer h4 { color: var(--white); font-family: var(--font-head); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-400); }

/* Back to top */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s ease;
  border: none; cursor: pointer;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.muted { color: var(--gray-500); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 20px; max-width: 380px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split-visual { order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--gray-300); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .locations { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--navy-900); flex-direction: column; justify-content: flex-start;
    padding: 100px 30px 30px; gap: 22px; transform: translateX(100%); transition: transform 0.35s ease; }
  .nav.is-open { transform: translateX(0); box-shadow: -20px 0 50px rgba(0,0,0,0.3); }
  .nav a { font-size: 1.05rem; }
  .lang-switch { margin-left: 0; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .page-hero { padding: 130px 0 50px; }
}
