/* ===========================================================
   Bulma — Landing page robotique
   Design system premium · taste-skill + soft-skill applied
   Vert accent principal · violet réservé IA · off-black
   =========================================================== */

:root {
  /* Neutres (jamais de noir pur) */
  --ink: #11150f;          /* texte principal, near-black teinté vert */
  --dark: #0b0f0c;         /* sections sombres (off-black) */
  --dark-2: #0e130f;
  --white: #ffffff;
  --paper: #fbfcfa;        /* surface claire premium */
  --bg-soft: #f3f6f2;      /* off-white neutre */
  --muted: #5c6a60;
  --muted-light: #9fb0a5;

  /* Accent principal : vert désaturé (<80% sat) */
  --green: #13a257;
  --green-deep: #0c7e43;
  --green-bright: #2bbf74;
  --green-soft: #cdeedd;
  --mint: #eef8f1;

  /* Secondaire : violet, réservé aux moments IA / VERA */
  --purple: #6f5ec9;
  --purple-soft: #d7d0f3;

  /* Dégradé signature (rare : 1 mot du hero, chiffre 1 360, marque) */
  --grad: linear-gradient(108deg, #16a85c, #2bbf74 42%, #6f5ec9);

  --line: rgba(17, 21, 15, 0.09);
  --line-soft: rgba(17, 21, 15, 0.06);
  --line-on-dark: rgba(255, 255, 255, 0.10);

  /* Système de rayons unique (shape lock) */
  --r: 30px;
  --r-in: 23px;            /* coeur intérieur d'un double-bezel */
  --r-card: 24px;
  --r-sm: 16px;
  --pill: 999px;

  /* Ombres douces, diffuses, teintées */
  --sh-soft: 0 30px 70px -34px rgba(14, 40, 26, 0.30);
  --sh-card: 0 22px 50px -30px rgba(14, 40, 26, 0.18);
  --sh-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);

  /* Easing (jamais linear / ease-in-out) */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.32, 0.72, 0, 1);

  --maxw: 1200px;
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth; scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 132px 0; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: inherit; }

/* ---------- Typo helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 20px;
}
.eyebrow--light { color: var(--green-bright); }

.pill {
  display: inline-flex; align-items: center;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); background: var(--mint);
  border: 1px solid var(--green-soft);
  padding: 7px 15px; border-radius: var(--pill);
}

.big {
  font-family: var(--font-display);
  font-size: clamp(31px, 4.6vw, 52px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.06;
  max-width: 18ch;
}
.big--light { color: var(--white); }
.big .muted, .muted { color: var(--muted); }
.big--light .muted { color: var(--muted-light); }

.section__sub {
  font-size: clamp(17px, 1.6vw, 19px); color: var(--muted);
  max-width: 56ch; margin-top: 20px; line-height: 1.6;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 16px; font-weight: 600; border-radius: var(--pill);
  padding: 11px 14px 11px 24px;
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease);
  cursor: pointer; border: none;
}
.btn--primary {
  background: var(--green); color: #fff;
  box-shadow: 0 16px 34px -16px rgba(19, 162, 87, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(19, 162, 87, 0.66); }
.btn--primary:active { transform: translateY(0) scale(0.985); }
.btn__ic {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18); font-size: 15px;
  transition: transform .35s var(--spring), background .25s var(--ease);
}
.btn--primary:hover .btn__ic { transform: translate(3px, -1px); background: rgba(255, 255, 255, 0.28); }
.btn--ghost { color: var(--green-deep); padding: 11px 18px; }
.btn--ghost:hover { color: var(--ink); }
.btn--lg { font-size: 18px; padding: 14px 16px 14px 30px; }
.btn--lg .btn__ic { width: 34px; height: 34px; }

/* ===========================================================
   NAV — pill flottante (soft-skill)
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 20px; display: flex; justify-content: center;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  width: 100%; max-width: var(--maxw);
  height: 60px; display: flex; align-items: center; gap: 28px;
  padding: 0 12px 0 22px; border-radius: var(--pill);
  background: rgba(251, 252, 250, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 16px 40px -28px rgba(14,40,26,0.4);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.nav.scrolled .nav__inner { box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 22px 50px -26px rgba(14,40,26,0.5); }
.nav__brand { display: flex; align-items: center; gap: 8px; }
.nav__logoimg { height: 30px; width: auto; display: block; }
.nav__dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 0 3px rgba(19,162,87,0.12);
}
.nav__logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.nav__logo-sub { font-weight: 500; color: var(--muted); margin-left: 6px; }
.nav__links { display: flex; gap: 26px; margin: 0 auto; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink); opacity: .78;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.nav__links a:hover { opacity: 1; color: var(--green-deep); }
.nav__cta {
  font-size: 14px; font-weight: 600; color: #fff; background: var(--ink);
  padding: 9px 18px; border-radius: var(--pill);
  transition: background .25s var(--ease), transform .3s var(--spring);
}
.nav__cta:hover { background: var(--green-deep); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }

/* Toggle de langue FR / EN */
.langtoggle {
  position: relative; display: inline-flex; align-items: center;
  width: 66px; height: 30px; padding: 0; border-radius: var(--pill); cursor: pointer;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-family: var(--font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  flex: none; overflow: hidden;
}
.langtoggle__opt { flex: 1; z-index: 2; text-align: center; line-height: 30px; color: var(--muted); transition: color .25s var(--ease); }
.langtoggle:not(.is-en) .langtoggle__opt[data-lang="fr"],
.langtoggle.is-en .langtoggle__opt[data-lang="en"] { color: #fff; }
.langtoggle__knob {
  position: absolute; top: 2px; left: 2px; z-index: 1;
  width: 31px; height: 26px; border-radius: var(--pill); background: var(--green);
  box-shadow: 0 2px 8px rgba(19,162,87,0.4);
  transition: transform .32s var(--spring);
}
.langtoggle.is-en .langtoggle__knob { transform: translateX(31px); }

/* ===========================================================
   HERO — split asymétrique (anti-center)
   =========================================================== */
.hero { position: relative; padding: 160px 0 96px; overflow: hidden; }
.hero__ambient {
  position: absolute; top: -8%; right: -6%; width: 760px; height: 760px; pointer-events: none;
  background: radial-gradient(circle at 60% 40%, rgba(19, 162, 87, 0.13), transparent 62%);
  filter: blur(8px);
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero__content { max-width: 580px; }
.pill + .hero__title { margin-top: 24px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.02; color: var(--ink);
}
.hero__sub {
  font-size: clamp(18px, 1.7vw, 20px); color: var(--muted);
  max-width: 42ch; margin-top: 24px; line-height: 1.55;
}
.hero__actions { margin-top: 36px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__meta {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; gap: 32px; flex-wrap: wrap; font-size: 14.5px; color: var(--muted);
}
.hero__meta strong { color: var(--ink); font-weight: 600; }

/* Cadre double-bezel (Doppelrand) pour l'asset robot */
.frame {
  position: relative; padding: 12px; border-radius: var(--r);
  background: linear-gradient(160deg, rgba(19,162,87,0.10), rgba(111,94,201,0.08));
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-soft);
}
.frame__inner {
  position: relative; border-radius: var(--r-in); overflow: hidden;
  aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center;
  padding: 4%;
  background:
    radial-gradient(circle at 50% 26%, rgba(43,191,116,0.10), transparent 62%),
    radial-gradient(circle at 50% 40%, #ffffff, #eef6f0 78%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.frame__inner img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 16px 30px rgba(20,40,28,0.15)); }
.frame--fallback::after {
  content: ""; width: 150px; height: 188px; border-radius: 78px 78px 56px 56px;
  background: linear-gradient(160deg, #ffffff, #dceee4);
  box-shadow: inset 0 0 44px rgba(19,162,87,0.22), 0 0 60px rgba(19,162,87,0.18);
  border: 1px solid rgba(19,162,87,0.4);
}

/* ===========================================================
   VISION — split éditorial (plus de 3 cartes égales)
   =========================================================== */
.vision { background: var(--bg-soft); }
.vision__split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: start; }
.vision__lead { position: sticky; top: 120px; }
.vision__lead .big { max-width: 15ch; }
.vision__lead .big .muted { display: block; margin-top: 14px; font-weight: 500; font-size: 0.56em; line-height: 1.4; letter-spacing: -0.01em; }
.vision__points { display: grid; gap: 4px; }
.vpoint {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start;
  padding: 30px 0; border-top: 1px solid var(--line);
}
.vpoint:last-child { border-bottom: 1px solid var(--line); }
.vpoint__k {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--green); letter-spacing: 0.04em; padding-top: 3px;
}
.vpoint h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.vpoint p { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 46ch; }

/* ===========================================================
   V'GER (dark)
   =========================================================== */
.vger { position: relative; background: var(--dark); color: var(--white); padding: 140px 0; overflow: hidden; }
.vger__halo {
  position: absolute; top: 8%; right: -8%; width: 640px; height: 640px; pointer-events: none;
  background: radial-gradient(circle, rgba(19,162,87,0.26), transparent 64%);
  filter: blur(14px);
}
.vger__inner { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; }
.vger__lead { font-family: var(--font-display); font-size: 23px; font-weight: 600; margin: 6px 0 20px; letter-spacing: -0.02em; color: var(--green-soft); }
.vger__body { color: #c4d0c9; font-size: 17.5px; max-width: 50ch; line-height: 1.65; }
.vger__features { list-style: none; margin-top: 30px; display: grid; gap: 13px; }
.vger__features li { position: relative; padding-left: 28px; font-size: 16.5px; color: #e4ede8; }
.vger__features li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 4px; background: var(--green); }
.vger__stats {
  margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--line-on-dark); padding-top: 30px;
}
.stat__num { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.stat__label { font-size: 13.5px; color: var(--muted-light); }
.vger__visual { display: flex; justify-content: center; }
.vger__visual .frame { width: 100%; max-width: 410px; background: linear-gradient(160deg, rgba(19,162,87,0.18), rgba(111,94,201,0.12)); border-color: var(--line-on-dark); box-shadow: 0 50px 110px -42px rgba(19,162,87,0.5); }

/* ===========================================================
   ANATOMIE — bento double-bezel
   =========================================================== */
.anatomy { background: var(--white); }
.anatomy .big { max-width: 22ch; }
.anatomy__grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.acard {
  position: relative; background: var(--paper); border-radius: var(--r-card); padding: 30px 28px;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
}
.acard:hover { transform: translateY(-5px); box-shadow: var(--sh-card); }
.acard__tag { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.04em; }
.acard h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 12px 0 10px; }
.acard p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.acard--accent { background: linear-gradient(160deg, var(--mint), #f1eefb); border-color: var(--green-soft); }
.acard--cta { background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.acard--cta h3 { color: #fff; }
.acard--cta p { color: var(--muted-light); }
.card__link { color: var(--green-bright); margin-top: 16px; font-weight: 600; display: inline-block; transition: transform .3s var(--spring); }
.card__link:hover { transform: translateX(3px); }

/* ===========================================================
   VERA — moment IA (le violet est ici chez lui)
   =========================================================== */
.vera { background: var(--bg-soft); }
.vera__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.vera__visual { display: flex; justify-content: center; }
.vera__core {
  position: relative; width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #fff, #eef6f1 55%, #ece7fb);
  display: grid; place-items: center;
  box-shadow: 0 36px 80px -34px rgba(111,94,201,0.4), inset 0 1px 0 rgba(255,255,255,0.8);
}
.vera__core::after {
  content: ""; width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--purple));
  box-shadow: 0 0 44px rgba(111,94,201,0.4);
  animation: breathe 4s var(--ease) infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .92; } 50% { transform: scale(1.1); opacity: 1; } }
.vera .big .grad { background: linear-gradient(110deg, var(--green-bright), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vera__rows { margin-top: 30px; display: grid; gap: 2px; }
.vera__rows div { display: grid; gap: 4px; padding: 20px 0; border-top: 1px solid var(--line); }
.vera__rows div:last-child { border-bottom: 1px solid var(--line); }
.vera__rows strong { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.vera__rows span { color: var(--muted); font-size: 15.5px; }

/* ===========================================================
   MODULES — bento asymétrique
   =========================================================== */
.modules { background: var(--white); }
.modules .big { max-width: 20ch; }
.cards { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--paper); border-radius: var(--r-card); padding: 28px 26px;
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-card); }
.card--lead { grid-column: span 2; grid-row: span 1; background: linear-gradient(150deg, var(--mint), #eef0fb); border-color: var(--green-soft); display: flex; flex-direction: column; }
.card--lead h3 { font-size: 26px; }
.card--lead p { font-size: 16.5px; max-width: 44ch; }
.card__icon {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  font-size: 22px; color: var(--green-deep); margin-bottom: 20px;
  background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--sh-inset);
}
.card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.55; }
.card--cta {
  grid-column: 1 / -1; background: var(--ink); color: #fff;
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  gap: 28px; padding: 34px 40px;
}
.card--cta__txt { max-width: 64ch; }
.card--cta h3 { color: #fff; margin-bottom: 6px; }
.card--cta p { color: var(--muted-light); }
.card--cta .card__link { color: var(--green-bright); white-space: nowrap; }
@media (max-width: 560px) {
  .card--cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 28px 26px; }
}

/* ===========================================================
   DIGITAL SOCIAL CAPITAL (dark)
   =========================================================== */
.dsc { background: linear-gradient(165deg, #0b0f0c, #100c1c); color: #fff; padding: 130px 0; }
.dsc__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.dsc__body { color: #c4d0c9; font-size: 17.5px; line-height: 1.65; max-width: 48ch; margin: 0 0 32px; }
.dsc__body strong { color: #fff; }
.dsc__figure {
  text-align: center; padding: 52px 32px; border-radius: var(--r);
  background: rgba(255,255,255,0.035); border: 1px solid var(--line-on-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.dsc__num {
  display: block; font-family: var(--font-display);
  font-size: clamp(66px, 10vw, 108px); font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dsc__cap { display: block; margin-top: 10px; font-size: 17px; color: var(--muted-light); }
.dsc__eq { margin-top: 22px; font-size: 13.5px; color: #8ba093; letter-spacing: 0.01em; }

/* ===========================================================
   INDUSTRIALISATION — timeline divisée
   =========================================================== */
.usine { background: var(--bg-soft); }
.usine .big { max-width: 20ch; }
.timeline { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tline { padding: 0 26px; border-left: 1px solid var(--line); }
.tline:first-child { padding-left: 0; border-left: none; }
.tline__year { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; }
.tline__big {
  display: block; margin: 10px 0 12px; font-family: var(--font-display);
  font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
}
.tline:nth-child(4) .tline__big { color: var(--green-deep); }
.tline p { color: var(--muted); font-size: 15px; line-height: 1.55; }
.usine__note { margin-top: 32px; font-size: 13px; color: var(--muted-light); max-width: 64ch; }

/* ===========================================================
   IMPACT (dark) — bande divisée
   =========================================================== */
.impact { background: var(--dark-2); color: #fff; }
.impact .big { margin-bottom: 56px; max-width: 22ch; }
.impact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.impact__cell { padding: 0 28px; border-left: 1px solid var(--line-on-dark); }
.impact__cell:first-child { padding-left: 0; border-left: none; }
.impact__num { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--green-bright); margin-bottom: 14px; }
.impact__cell p { color: var(--muted-light); font-size: 15.5px; line-height: 1.55; }

/* ===========================================================
   DEMO
   =========================================================== */
.demo { background: var(--white); text-align: center; }
.demo__inner { display: flex; flex-direction: column; align-items: center; }
.demo .big, .demo .section__sub { margin-left: auto; margin-right: auto; }
.demo .big { max-width: 18ch; }
.videoframe {
  position: relative; margin-top: 50px; width: 100%; max-width: 940px;
  aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden;
  padding: 12px; background: linear-gradient(160deg, rgba(19,162,87,0.12), rgba(111,94,201,0.10));
  border: 1px solid var(--line-soft); box-shadow: var(--sh-soft);
}
.videoframe__video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--r-in); background: var(--dark); }

/* ===========================================================
   LOCATIONS / CONTACT
   =========================================================== */
.locations { background: var(--dark); color: #fff; padding: 120px 0 84px; }
.locations .big { margin-bottom: 58px; max-width: 20ch; }
.loc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; align-items: start; }
.loc__region { border-top: 1px solid var(--line-on-dark); padding-top: 28px; }
.loc__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--green-soft); margin-bottom: 24px;
}
.flag { width: 30px; height: auto; border-radius: 4px; flex: none; box-shadow: 0 0 0 1px rgba(255,255,255,0.16); }
.flag--sm { width: 22px; }
.loc__office { margin-bottom: 24px; }
.loc__office:last-child { margin-bottom: 0; }
.loc__city { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.loc__org { font-size: 14px; font-weight: 600; color: var(--green-soft); }
.loc__addr { font-size: 14.5px; color: var(--muted-light); line-height: 1.5; margin-top: 2px; }
.loc__phone { display: inline-block; margin-top: 8px; font-size: 14.5px; font-weight: 600; color: #fff; border-bottom: 1px solid rgba(19,162,87,0.55); transition: color .2s var(--ease), border-color .2s var(--ease); }
.loc__phone:hover { color: var(--green-soft); border-color: var(--green-soft); }

/* ===========================================================
   CTA + PROOF
   =========================================================== */
.cta { background: var(--dark); color: #fff; padding: 130px 0; text-align: center; }
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.proof__item { font-size: 15.5px; font-weight: 500; color: #dbe6df; }
.proof__dot { color: var(--green); }
.cta__title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 54px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; max-width: 17ch; }
.cta__sub { font-size: 19px; color: var(--muted-light); max-width: 46ch; margin: 22px 0 38px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--dark); color: var(--muted-light); padding: 48px 0; border-top: 1px solid var(--line-on-dark); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer__brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; }
.footer__logoimg { height: 26px; width: auto; display: block; }
.footer__brand-sub { font-weight: 500; color: var(--muted-light); margin-left: 6px; }
.footer__tag { font-size: 14px; color: var(--muted-light); }
.footer__copy { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ===========================================================
   REVEAL ANIMATION (fade-up + blur, GPU-safe)
   =========================================================== */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); filter: blur(6px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .vera__core::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 960px) {
  .section { padding: 96px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; max-width: 380px; }
  .vision__split { grid-template-columns: 1fr; gap: 36px; }
  .vision__lead { position: static; }
  .vger__inner { grid-template-columns: 1fr; gap: 44px; }
  .vger__visual { order: -1; }
  .anatomy__grid { grid-template-columns: repeat(2, 1fr); }
  .vera__inner { grid-template-columns: 1fr; gap: 40px; }
  .vera__visual { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--lead { grid-column: span 2; }
  .dsc__inner { grid-template-columns: 1fr; gap: 40px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .tline { border-left: none; padding-left: 0; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .impact__cell { border-left: none; padding-left: 0; }
}

@media (max-width: 720px) {
  .nav { padding: 12px; }
  .nav__inner { height: 56px; gap: 14px; padding: 0 10px 0 18px; }
  .nav__links, .nav__cta { display: none; }
  .langtoggle { margin-left: auto; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 78px; left: 12px; right: 12px;
    background: rgba(251,252,250,0.97); backdrop-filter: blur(20px);
    margin: 0; padding: 8px 0; border-radius: var(--r-sm); border: 1px solid var(--line);
    box-shadow: var(--sh-card);
  }
  .nav__links.open a { padding: 13px 22px; font-size: 16px; }
  .hero { padding-top: 130px; }
}

@media (max-width: 560px) {
  .anatomy__grid, .cards, .timeline, .impact__grid, .loc__grid { grid-template-columns: 1fr; }
  .card--lead { grid-column: span 1; }
  .container, .hero__inner { padding-left: 22px; padding-right: 22px; }
  .vpoint { grid-template-columns: 40px 1fr; gap: 12px; }
}
