/*
Theme Name: GPLEAN AI Premium
Theme URI: https://www.gplean.ai
Author: GPLEAN
Description: Ultra-premium dark theme — Gestion de Projet LEAN x Intelligence Artificielle
Version: 3.0
Text Domain: gplean-ai
*/

/* ═══════════════════════════════════════════════════
   IMPORTS — Syne (display) + Outfit (body)
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  /* Color palette */
  --ink:        #04040f;
  --ink2:       #08081c;
  --ink3:       #0c0c26;
  --ink4:       #111130;
  --surface:    rgba(255,255,255,0.03);
  --surface-h:  rgba(255,255,255,0.055);
  --edge:       rgba(255,255,255,0.065);
  --edge-glow:  rgba(99,102,241,0.4);

  /* Brand spectrum */
  --v1:   #6366f1; /* indigo */
  --v2:   #818cf8; /* indigo-light */
  --b1:   #3b82f6; /* blue */
  --b2:   #60a5fa;
  --t1:   #2dd4bf; /* teal */
  --t2:   #5eead4;

  /* Text */
  --tx-hi:   #eeeaff;
  --tx-mid:  #8b87b8;
  --tx-low:  #504d72;

  /* Gradients */
  --g-brand:  linear-gradient(135deg, var(--v1) 0%, var(--b1) 55%, var(--t1) 100%);
  --g-warm:   linear-gradient(135deg, #ec4899, var(--v1), var(--b1));
  --g-cool:   linear-gradient(135deg, var(--b1), var(--t1));
  --g-glow:   radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.18) 0%, transparent 65%);

  /* Typography */
  --f-display: 'Syne', system-ui, sans-serif;
  --f-body:    'Outfit', system-ui, sans-serif;

  /* Space scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  112px;

  /* Radii */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;

  /* Shadows */
  --sh-card:  0 4px 32px rgba(0,0,0,0.45);
  --sh-glow:  0 0 48px rgba(99,102,241,0.22);
  --sh-glow2: 0 0 80px rgba(99,102,241,0.35);
}

/* ═══════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--tx-hi);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all .28s ease; }
ul { list-style: none; }
button { font-family: var(--f-body); cursor: pointer; }
h1,h2,h3,h4,h5 {
  font-family: var(--f-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.wrap     { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-sm  { max-width: 900px;  margin: 0 auto; padding: 0 32px; }
.wrap-xs  { max-width: 680px;  margin: 0 auto; padding: 0 32px; }
.wrap-wide{ max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* ═══════════════════════════════════════════════════
   GRADIENT HELPERS
═══════════════════════════════════════════════════ */
.gt        { background: var(--g-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gt-warm   { background: var(--g-warm);  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gt-cool   { background: var(--g-cool);  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════════════
   LABEL CHIPS
═══════════════════════════════════════════════════ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,.3);
  background: rgba(99,102,241,.09);
  color: var(--v2);
  margin-bottom: 24px;
}
.label-teal { border-color: rgba(45,212,191,.3); background: rgba(45,212,191,.07); color: var(--t2); }
.label-blue { border-color: rgba(59,130,246,.3); background: rgba(59,130,246,.07); color: var(--b2); }

.label .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--t1);
  box-shadow: 0 0 0 0 rgba(45,212,191,0.4);
  animation: pulse-ring 2.2s ease infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(45,212,191,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(45,212,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .92rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  letter-spacing: .01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--g-brand);
  color: #fff;
  box-shadow: 0 0 32px rgba(99,102,241,.4), 0 4px 16px rgba(0,0,0,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 52px rgba(99,102,241,.55), 0 8px 24px rgba(0,0,0,.35);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--tx-hi);
  border: 1px solid var(--edge);
}
.btn-ghost:hover {
  border-color: var(--edge-glow);
  background: var(--surface);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--tx-hi);
  color: var(--ink3);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.15); color: var(--ink3); }

.btn-lg { padding: 18px 38px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .82rem; }

.btn-arrow { gap: 12px; }
.btn-arrow .arr {
  display: inline-block;
  transition: transform .25s;
}
.btn-arrow:hover .arr { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.stuck {
  padding: 14px 0;
  background: rgba(4,4,15,.86);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid var(--edge);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  letter-spacing: -.04em;
}
.nav-logo img { height: 34px; width: auto; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--tx-mid);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--g-brand);
  transform: scaleX(0);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.nav-links a:hover { color: var(--tx-hi); }
.nav-links a:hover::after,
.nav-links a.current::after { transform: scaleX(1); }
.nav-links a.current { color: var(--tx-hi); }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--tx-hi);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════════ */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

/* Background canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.hc-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(99,102,241,.15) 0%, transparent 55%);
  top: -300px; left: -250px;
  animation: orb-drift-a 18s ease-in-out infinite;
}
.hc-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 55%);
  top: 10%; right: -150px;
  animation: orb-drift-b 14s ease-in-out infinite;
}
.hc-orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,.1) 0%, transparent 55%);
  bottom: -100px; left: 35%;
  animation: orb-drift-c 16s ease-in-out infinite;
}

@keyframes orb-drift-a { 0%,100%{transform:translate(0,0)} 33%{transform:translate(60px,-40px)} 66%{transform:translate(-30px,50px)} }
@keyframes orb-drift-b { 0%,100%{transform:translate(0,0)} 40%{transform:translate(-50px,30px)} 70%{transform:translate(20px,-40px)} }
@keyframes orb-drift-c { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-30px)} }

/* Grid lines */
.hc-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 30%, black 20%, transparent 75%);
}

/* Hero content layout */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 28px;
  animation: slide-up .7s cubic-bezier(.4,0,.2,1) both;
}

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 28px;
  animation: slide-up .7s .1s cubic-bezier(.4,0,.2,1) both;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--tx-mid);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: slide-up .7s .2s cubic-bezier(.4,0,.2,1) both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slide-up .7s .3s cubic-bezier(.4,0,.2,1) both;
}

.hero-metrics {
  display: flex;
  gap: 40px;
  animation: slide-up .7s .4s cubic-bezier(.4,0,.2,1) both;
}
.hm-item { }
.hm-val {
  font-family: var(--f-display);
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hm-lbl { font-size: .78rem; color: var(--tx-low); line-height: 1.4; max-width: 100px; }
.hm-sep { width: 1px; background: var(--edge); align-self: stretch; }

/* Hero panel (right side) */
.hero-panel {
  position: relative;
  animation: slide-up .7s .25s cubic-bezier(.4,0,.2,1) both;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  box-shadow: var(--sh-card), var(--sh-glow);
  position: relative;
  overflow: hidden;
}
.panel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--g-brand);
  opacity: .5;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.panel-title {
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tx-low);
}
.panel-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--t2); font-weight: 600;
}
.panel-status::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--t1);
  animation: pulse-ring 2s infinite;
}

.p-row {
  margin-bottom: 20px;
}
.p-row-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--tx-mid);
  margin-bottom: 8px;
  font-weight: 500;
}
.p-row-label span { color: var(--t2); font-weight: 700; }
.p-bar {
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.p-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--g-brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(.4,0,.2,1);
}
.p-fill.animate { transform: scaleX(1); }

.p-divider { height: 1px; background: var(--edge); margin: 24px 0; }

.p-stat-row {
  display: flex;
  gap: 16px;
}
.p-stat {
  flex: 1;
  background: rgba(45,212,191,.06);
  border: 1px solid rgba(45,212,191,.15);
  border-radius: var(--r-sm);
  padding: 16px;
}
.p-stat-val {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--g-cool);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.p-stat-lbl { font-size: .72rem; color: var(--tx-low); }

/* Floating pill */
.f-pill {
  position: absolute;
  background: var(--ink3);
  border: 1px solid var(--edge);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--sh-card);
  white-space: nowrap;
}
.f-pill-1 { top: -18px; right: 20px; animation: float 7s ease-in-out infinite; }
.f-pill-2 { bottom: -18px; left: 20px; animation: float 9s 1.5s ease-in-out infinite; }
.f-pill-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 7px; }
.fp-green { background: var(--t1); }
.fp-blue  { background: var(--b1); }

/* ═══════════════════════════════════════════════════
   TICKER / SOCIAL PROOF BAR
═══════════════════════════════════════════════════ */
.proof-bar {
  padding: 40px 0;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  overflow: hidden;
  position: relative;
}
.proof-bar::before,
.proof-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 120px;
  z-index: 2;
}
.proof-bar::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.proof-bar::after  { right: 0; background: linear-gradient(to left, var(--ink), transparent); }

.proof-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.proof-item-label {
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx-low);
}
.proof-item-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--tx-low); }

@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════ */
.section { padding: var(--sp-xl) 0; }
.section-md { padding: 80px 0; }
.section-sm { padding: 60px 0; }

.s-head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.s-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}
.s-head p {
  font-size: 1.05rem;
  color: var(--tx-mid);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════ */
.problem-section { padding: 100px 0; }
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 22px;
}
.problem-left .lead {
  font-size: 1.05rem;
  color: var(--tx-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.problem-left .highlight {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(45,212,191,.06));
  border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-top: 32px;
}
.problem-left .highlight p {
  font-size: .95rem;
  color: var(--tx-hi);
  line-height: 1.75;
  font-style: italic;
}

.stat-cards { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-md);
  padding: 26px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.sc-v1::before { background: var(--g-brand); }
.sc-v2::before { background: var(--g-cool); }
.sc-v3::before { background: linear-gradient(180deg, var(--b1), var(--v1)); }
.sc-v4::before { background: linear-gradient(180deg, var(--t1), var(--b1)); }

.stat-card:hover {
  background: var(--surface-h);
  border-color: rgba(99,102,241,.2);
  transform: translateX(4px);
}

.sc-num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.sc-text h4 { font-size: 1rem; margin-bottom: 5px; font-family: var(--f-display); font-weight: 700; }
.sc-text p { font-size: .85rem; color: var(--tx-mid); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   SERVICES SECTION (homepage cards)
═══════════════════════════════════════════════════ */
.services-home { padding: var(--sp-xl) 0; }
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--edge);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sv-card {
  background: var(--ink2);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.sv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sv-card:hover { background: var(--ink3); }
.sv-card:hover::before { transform: scaleX(1); }

.sv-idx {
  font-family: var(--f-display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tx-low);
  margin-bottom: 32px;
}

.sv-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  border: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.sv-icon::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .12;
}
.sv-i1 .sv-icon::before { background: var(--g-brand); }
.sv-i2 .sv-icon::before { background: var(--g-cool); }
.sv-i3 .sv-icon::before { background: linear-gradient(135deg, var(--t1), var(--b1)); }

.sv-icon svg {
  width: 24px; height: 24px;
  stroke: var(--v2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-i2 .sv-icon svg { stroke: var(--b2); }
.sv-i3 .sv-icon svg { stroke: var(--t2); }

.sv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.sv-sub {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--v2);
  margin-bottom: 18px;
}
.sv-i2 .sv-sub { color: var(--b2); }
.sv-i3 .sv-sub { color: var(--t2); }

.sv-card p {
  font-size: .92rem;
  color: var(--tx-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.sv-card .tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sv-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--edge);
  color: var(--tx-mid);
  transition: all .2s;
}
.sv-card:hover .sv-tag { border-color: rgba(99,102,241,.25); color: var(--v2); }

/* ═══════════════════════════════════════════════════
   STICKY SCROLL FEATURE SECTION (Rise Science style)
═══════════════════════════════════════════════════ */
.sticky-section {
  padding: var(--sp-xl) 0;
}
.sticky-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sticky-left {
  position: sticky;
  top: 120px;
}
.sticky-left h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 20px; }
.sticky-left p { font-size: 1.05rem; color: var(--tx-mid); line-height: 1.8; margin-bottom: 32px; }

.sticky-steps { display: flex; flex-direction: column; gap: 20px; }
.sticky-step {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: default;
  transition: all .3s;
}
.sticky-step.active, .sticky-step:hover {
  background: var(--surface);
  border-color: var(--edge-glow);
}
.step-num {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tx-low);
  flex-shrink: 0;
  width: 28px;
  transition: color .3s;
}
.sticky-step.active .step-num, .sticky-step:hover .step-num {
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-body h4 { font-size: 1rem; margin-bottom: 5px; }
.step-body p { font-size: .88rem; color: var(--tx-mid); margin: 0; line-height: 1.65; }

.sticky-right { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.sticky-card {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: all .4s;
}
.sticky-card:hover {
  border-color: rgba(99,102,241,.25);
  box-shadow: var(--sh-glow);
  background: var(--surface-h);
}
.sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sc-tag {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25); color: var(--v2);
}
.sc-tag-teal { background: rgba(45,212,191,.08); border-color: rgba(45,212,191,.2); color: var(--t2); }
.sc-tag-blue { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.2); color: var(--b2); }
.sticky-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.sticky-card p { font-size: .9rem; color: var(--tx-mid); line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   RESULTS BAND
═══════════════════════════════════════════════════ */
.results-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.results-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.07), rgba(45,212,191,.04));
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.results-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.r-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--edge);
}
.r-item:last-child { border-right: none; }
.r-num {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.r-title { font-size: 1rem; font-weight: 700; font-family: var(--f-display); margin-bottom: 6px; }
.r-desc { font-size: .82rem; color: var(--tx-mid); line-height: 1.5; max-width: 160px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testi-section { padding: var(--sp-xl) 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 38px;
  position: relative;
  transition: all .35s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: var(--edge-glow);
  box-shadow: var(--sh-glow);
  transform: translateY(-4px);
}
.testi-q {
  font-family: var(--f-display);
  font-size: 3.5rem;
  line-height: .6;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 18px;
  display: block;
}
.testi-text {
  font-size: .95rem;
  color: var(--tx-hi);
  line-height: 1.8;
  margin-bottom: 28px;
  flex-grow: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--edge); padding-top: 22px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: .95rem; font-weight: 800; color: #fff;
}
.av-a { background: linear-gradient(135deg, var(--v1), var(--b1)); }
.av-b { background: linear-gradient(135deg, var(--b1), var(--t1)); }
.av-c { background: linear-gradient(135deg, var(--v1), var(--t1)); }
.testi-name { font-family: var(--f-display); font-size: .9rem; font-weight: 700; }
.testi-role { font-size: .78rem; color: var(--tx-mid); margin-top: 2px; }
.testi-sector {
  position: absolute; top: 20px; right: 20px;
  font-size: .68rem; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
  background: rgba(45,212,191,.08); border: 1px solid rgba(45,212,191,.18); color: var(--t2);
}

/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════ */
.cta-section { padding: var(--sp-xl) 0; }
.cta-block {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(59,130,246,.07), rgba(45,212,191,.05));
  border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.15), transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-block h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; position: relative; }
.cta-block p { font-size: 1.05rem; color: var(--tx-mid); max-width: 560px; margin: 0 auto 40px; position: relative; line-height: 1.8; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; margin-bottom: 40px; }
.cta-contacts {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  border-top: 1px solid var(--edge);
  padding-top: 32px;
}
.cta-contact { text-align: center; }
.cta-contact-name { font-family: var(--f-display); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.cta-contact a { display: block; font-size: .85rem; color: var(--tx-mid); transition: color .2s; }
.cta-contact a:hover { color: var(--v2); }

/* ═══════════════════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════════════════ */
.inner-hero {
  padding: 170px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 400px;
  background: var(--g-glow);
  top: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.inner-hero .hc-grid {
  position: absolute; inset: 0;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 30%, transparent 70%);
}
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 20px; }
.inner-hero .lead { font-size: 1.1rem; color: var(--tx-mid); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* ═══════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════ */
.service-full {
  padding: 80px 0;
  border-bottom: 1px solid var(--edge);
}
.service-full:last-child { border-bottom: none; }
.sf-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
.sf-left { position: sticky; top: 120px; }
.sf-num {
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .25;
}
.sf-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.sf-left .sub { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--v2); margin-bottom: 20px; }
.sf-left p { font-size: .95rem; color: var(--tx-mid); line-height: 1.8; margin-bottom: 28px; }
.sf-right { }
.sf-right p { font-size: 1rem; color: var(--tx-mid); line-height: 1.85; margin-bottom: 24px; }
.sf-highlight {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--v1);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: .95rem;
  color: var(--tx-hi);
  line-height: 1.75;
  font-style: italic;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.deliv-item {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  transition: all .25s;
}
.deliv-item:hover {
  border-color: var(--edge-glow);
  background: var(--surface-h);
}
.deliv-title { font-family: var(--f-display); font-size: .9rem; font-weight: 700; margin-bottom: 5px; }
.deliv-desc { font-size: .8rem; color: var(--tx-mid); line-height: 1.5; }
.deliv-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--g-brand);
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════
   METHODE PAGE
═══════════════════════════════════════════════════ */
.methode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.methode-grid.reverse { direction: rtl; }
.methode-grid.reverse > * { direction: ltr; }
.methode-visual {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.methode-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-brand);
  opacity: .6;
}
.mv-title { font-family: var(--f-display); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-low); margin-bottom: 24px; }
.mv-phases { display: flex; flex-direction: column; gap: 12px; }
.mv-phase {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
}
.mvp-n {
  font-family: var(--f-display);
  font-size: .75rem; font-weight: 800;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--g-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mvp-text { font-size: .88rem; font-weight: 500; }
.mvp-time { margin-left: auto; font-size: .75rem; color: var(--tx-low); font-weight: 600; }

.methode-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.methode-content .intro { font-size: 1.05rem; color: var(--tx-mid); line-height: 1.8; margin-bottom: 28px; }
.methode-points { display: flex; flex-direction: column; gap: 16px; }
.methode-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all .25s;
}
.methode-point:hover { background: var(--surface); border-color: var(--edge); }
.mp-check {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(45,212,191,.15), rgba(99,102,241,.1));
  border: 1px solid rgba(45,212,191,.25);
  display: flex; align-items: center; justify-content: center;
}
.mp-check svg { width: 14px; height: 14px; stroke: var(--t1); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.mp-text h4 { font-size: .95rem; margin-bottom: 4px; }
.mp-text p { font-size: .85rem; color: var(--tx-mid); margin: 0; line-height: 1.6; }

/* Process timeline */
.process-timeline { margin-top: 80px; }
.process-timeline h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); text-align: center; margin-bottom: 56px; }
.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.tl-step {
  padding: 44px 36px;
  background: var(--surface);
  border: 1px solid var(--edge);
  transition: all .3s;
  position: relative;
}
.tl-step:hover { background: var(--surface-h); border-color: var(--edge-glow); }
.tl-num {
  font-family: var(--f-display);
  font-size: 3rem; font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: .25; line-height: 1;
  margin-bottom: 16px;
}
.tl-step h4 { font-size: 1.05rem; margin-bottom: 10px; }
.tl-step p { font-size: .85rem; color: var(--tx-mid); line-height: 1.65; }
.tl-step:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.tl-step:last-child  { border-radius: 0 var(--r-md) var(--r-md) 0; }

/* ═══════════════════════════════════════════════════
   RESULTATS PAGE
═══════════════════════════════════════════════════ */
.big-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--edge);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 60px;
}
.br-item {
  background: var(--ink2);
  padding: 56px 52px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.br-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-brand);
  opacity: 0;
  transition: opacity .3s;
}
.br-item:hover { background: var(--ink3); }
.br-item:hover::before { opacity: 1; }
.br-val {
  font-family: var(--f-display);
  font-size: 5rem; font-weight: 800;
  background: var(--g-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 12px;
}
.br-title { font-family: var(--f-display); font-size: 1.2rem; margin-bottom: 10px; }
.br-desc { font-size: .9rem; color: var(--tx-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--edge-glow); transform: translateY(-5px); box-shadow: var(--sh-glow); }
.bc-img { height: 210px; background: var(--ink3); overflow: hidden; }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.blog-card:hover .bc-img img { transform: scale(1.06); }
.bc-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.bc-cat { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--v2); margin-bottom: 10px; }
.bc-title { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.bc-excerpt { font-size: .87rem; color: var(--tx-mid); line-height: 1.65; margin-bottom: 20px; flex-grow: 1; }
.bc-link {
  font-size: .83rem;
  font-weight: 700;
  color: var(--v2);
  display: flex; align-items: center; gap: 7px;
  transition: gap .2s;
  margin-top: auto;
}
.blog-card:hover .bc-link { gap: 12px; }

/* ═══════════════════════════════════════════════════
   CONTACT / ENTRETIEN FORM
═══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.contact-info p { font-size: 1rem; color: var(--tx-mid); line-height: 1.8; margin-bottom: 36px; }
.contact-people { display: flex; flex-direction: column; gap: 22px; }
.contact-person {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-md);
  padding: 24px 28px;
  transition: border-color .25s;
}
.contact-person:hover { border-color: var(--edge-glow); }
.cp-name { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cp-links { display: flex; flex-direction: column; gap: 6px; }
.cp-links a { font-size: .88rem; color: var(--tx-mid); }
.cp-links a:hover { color: var(--v2); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-brand);
  opacity: .5;
}
.fg { margin-bottom: 22px; }
.fg label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--tx-mid);
  margin-bottom: 9px;
  letter-spacing: .02em;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--edge);
  border-radius: var(--r-sm);
  color: var(--tx-hi);
  font-family: var(--f-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: rgba(99,102,241,.5);
  background: rgba(99,102,241,.04);
}
.fg textarea { min-height: 140px; resize: vertical; }
.fg select option { background: var(--ink3); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ═══════════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════════ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
}
.prose h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 24px; }
.prose h2 { font-size: 1.7rem; margin: 48px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 36px 0 12px; }
.prose p { color: var(--tx-mid); margin-bottom: 20px; font-size: 1rem; }
.prose ul, .prose ol { padding-left: 24px; color: var(--tx-mid); margin-bottom: 20px; }
.prose li { margin-bottom: 8px; font-size: .97rem; }
.prose blockquote {
  border-left: 3px solid var(--v1);
  padding: 18px 26px;
  background: rgba(99,102,241,.07);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 32px 0;
  font-style: italic;
}
.prose a { color: var(--v2); }
.prose strong { color: var(--tx-hi); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink2);
  border-top: 1px solid var(--edge);
  padding: 80px 0 40px;
}
.footer-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-desc { font-size: .88rem; color: var(--tx-mid); line-height: 1.8; max-width: 300px; margin-bottom: 24px; }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; }
.fc-item a { font-size: .84rem; color: var(--tx-mid); display: block; }
.fc-item a:hover { color: var(--v2); }
.fc-name { font-family: var(--f-display); font-size: .82rem; font-weight: 700; color: var(--tx-hi); margin-bottom: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.soc {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid var(--edge);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.soc:hover { border-color: var(--edge-glow); background: rgba(99,102,241,.12); }
.soc svg { width: 15px; height: 15px; stroke: var(--tx-mid); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.soc:hover svg { stroke: var(--v2); }

.footer-col h5 {
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tx-low);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .86rem; color: rgba(238,234,255,.45); }
.footer-col a:hover { color: var(--tx-hi); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--edge);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: .8rem; color: var(--tx-low); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8rem; color: var(--tx-low); }
.footer-legal a:hover { color: var(--tx-mid); }

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-layout   { grid-template-columns: 1fr; }
  .hero-panel    { display: none; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .services-grid-3 .sv-card { border-radius: 0; }
  .sticky-layout { grid-template-columns: 1fr; }
  .sticky-left   { position: static; }
  .results-grid  { grid-template-columns: 1fr 1fr; }
  .r-item:nth-child(2) { border-right: none; }
  .r-item        { border-bottom: 1px solid var(--edge); }
  .r-item:nth-child(3), .r-item:nth-child(4) { border-bottom: none; }
  .r-item:nth-child(3) { border-right: 1px solid var(--edge); }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .sf-layout     { grid-template-columns: 1fr; }
  .sf-left       { position: static; }
  .deliverables-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 70px;
    background: rgba(4,4,15,.97);
    backdrop-filter: blur(20px);
    padding: 50px 32px; gap: 28px; z-index: 850;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--tx-hi); }
  .problem-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .methode-grid { grid-template-columns: 1fr; }
  .methode-grid.reverse { direction: ltr; }
  .timeline-row { grid-template-columns: 1fr 1fr; }
  .tl-step:first-child { border-radius: var(--r-md) 0 0 0; }
  .tl-step:last-child  { border-radius: 0 0 var(--r-md) 0; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .big-results { grid-template-columns: 1fr; }
  .cta-block { padding: 52px 32px; }
}

@media (max-width: 640px) {
  .wrap, .wrap-sm, .wrap-xs { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-metrics { gap: 20px; flex-wrap: wrap; }
  .hm-sep { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .r-item { border-right: none; }
  .footer-layout { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 24px; }
  .fg-row { grid-template-columns: 1fr; }
  .section, .section-md { padding: 70px 0; }
}

/* ═══════════════════════════════════════════════════
   WORDPRESS DEFAULTS
═══════════════════════════════════════════════════ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption-text { font-size: .82rem; color: var(--tx-mid); margin-top: 6px; text-align: center; }
.pagination {
  display: flex; justify-content: center; gap: 10px; margin-top: 60px;
}
.pagination .page-numbers {
  padding: 9px 18px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--edge);
  color: var(--tx-mid); font-size: .88rem; font-family: var(--f-body);
}
.pagination .page-numbers.current {
  background: var(--g-brand); color: #fff; border: none;
}
