/* ============================================================
   SEFF Studio — seffstudio.com  ·  v2 « aurora »
   ============================================================ */

:root {
  --bg: #08080d;
  --bg-soft: #0e0e16;
  --bg-card: #10101a;
  --bg-card-2: #13131f;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f7;
  --text-dim: #9c9cab;
  --accent: #e8ff47;
  --accent-2: #7c5cff;
  --accent-3: #47ffd1;
  --accent-soft: rgba(232, 255, 71, 0.12);
  --radius: 22px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --grad-brand: linear-gradient(100deg, var(--accent) 10%, #a8ff8a 40%, var(--accent-3) 65%, var(--accent-2) 95%);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #08080d; }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ---------- Fond « aurora » : grille + halos animés + grain ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 95% 75% at 50% 0%, black 35%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.bg-grid::after {
  /* grain subtil par-dessus tout le fond */
  content: "";
  position: fixed;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-5%, -2%); }
  80% { transform: translate(4%, 4%); }
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.bg-glow--1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(232,255,71,0.22), transparent 70%);
  top: -220px; right: -140px;
  animation: drift1 26s ease-in-out infinite alternate;
}
.bg-glow--2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,92,255,0.26), transparent 70%);
  bottom: -260px; left: -200px;
  animation: drift2 32s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-90px, 70px) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(110px, -80px) scale(1.1); }
}

main, .footer, .nav, .marquee { position: relative; z-index: 1; }

/* ---------- Barre de progression de lecture ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0;
  background: var(--grad-brand);
  z-index: 200;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 14px rgba(232,255,71,0.55);
}

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn--primary {
  background: linear-gradient(140deg, #f4ff8f, var(--accent) 45%, #c8e02e);
  color: #08080d;
  box-shadow: 0 8px 28px rgba(232,255,71,0.22);
}
.btn--primary::before {
  /* reflet qui balaie le bouton au survol */
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(232,255,71,0.4); }
.btn--primary:hover::before { left: 130%; }
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: rgba(232,255,71,0.5); color: var(--accent); transform: translateY(-2px); }
.btn--small { padding: 10px 22px; font-size: 14px; background: linear-gradient(140deg, #f4ff8f, var(--accent) 45%, #c8e02e); color: #08080d; }
.btn--small:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(232,255,71,0.32); }
.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(8,8,13,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(0,0,0,0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.nav__logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, #f4ff8f, var(--accent) 55%, #c8e02e);
  color: #08080d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  box-shadow: 0 6px 20px rgba(232,255,71,0.28);
}
/* Croix suisse sur le coin du logo */
.nav__logo-mark::after {
  content: "";
  position: absolute;
  right: -6px; bottom: -6px;
  width: 15px; height: 15px;
  border-radius: 5px;
  background-color: #da291c;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-size: 8px 2.5px, 2.5px 8px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--bg);
}
.nav__logo-text em { font-style: normal; color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a:not(.btn) {
  position: relative;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:not(.btn):hover { color: var(--text); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.lang {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.lang a {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  padding: 5px 11px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang a.is-active { background: var(--accent); color: #08080d; }
.lang a:not(.is-active):hover { color: var(--text); }
.lang a::after { display: none !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
}
.hero::before {
  /* halo derrière le titre */
  content: "";
  position: absolute;
  top: 8%; left: -12%;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(124,92,255,0.14), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

/* Vidéo d'arrière-plan en boucle */
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}
.hero__media::after {
  /* voile pour garder le texte parfaitement lisible */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,13,0.82) 0%, rgba(8,8,13,0.45) 55%, rgba(8,8,13,0.25) 100%),
    linear-gradient(180deg, rgba(8,8,13,0.75) 0%, transparent 30%, transparent 62%, var(--bg) 100%);
}
.hero .container, .hero__scroll { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  width: fit-content;
  margin-bottom: 34px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.6vw, 100px);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: normal;
  background: var(--grad-brand);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradmove 7s ease-in-out infinite alternate;
}
@keyframes gradmove {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 42px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 76px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(24px, 5vw, 70px);
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 2px;
  position: relative;
  padding-left: 18px;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.1;
}
.stat__num { color: var(--text); }
.stat__plus { color: var(--accent); }
.stat__label {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollhint 1.8s infinite ease-in-out;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 22px;
  background: rgba(255,255,255,0.015);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.marquee__track span:hover { color: var(--accent); }
.marquee__track i { color: var(--accent); font-style: normal; font-size: 12px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(96px, 12vw, 160px); }
.section__head { margin-bottom: clamp(50px, 6vw, 76px); }
.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section__eyebrow::after {
  content: "";
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.section__title em {
  font-style: normal;
  background: var(--grad-brand);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradmove 7s ease-in-out infinite alternate;
}

/* ---------- Cartes services : bordure dégradée ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid transparent;
  background:
    linear-gradient(160deg, var(--bg-card-2), var(--bg-card) 55%) padding-box,
    linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03) 40%, rgba(232,255,71,0.1)) border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 0%), rgba(232,255,71,0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,255,71,0.22) inset;
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(232,255,71,0.16), rgba(124,92,255,0.12));
  border: 1px solid rgba(232,255,71,0.22);
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 0 24px rgba(232,255,71,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 34px rgba(232,255,71,0.22); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.card p { color: var(--text-dim); font-size: 15px; margin-bottom: 18px; }
.card ul { list-style: none; }
.card li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 3px;
}
.card--featured {
  background:
    linear-gradient(160deg, #191b0e, var(--bg-card) 55%) padding-box,
    linear-gradient(160deg, rgba(232,255,71,0.55), rgba(232,255,71,0.08) 45%, rgba(124,92,255,0.35)) border-box;
}
.card__badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #08080d;
  background: linear-gradient(140deg, #f4ff8f, var(--accent));
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232,255,71,0.3);
}

/* ---------- Projets ---------- */
.works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.work {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)) border-box;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.work:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 90px rgba(0,0,0,0.55);
}
.work__visual {
  height: 290px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.work__visual--a { background: linear-gradient(135deg, #1c2547, #0d1126); }
.work__visual--b { background: linear-gradient(135deg, #0f3722, #091b11); }
.work__visual--c { background: linear-gradient(135deg, #3a2410, #1c1108); }
.work__visual--d { background: linear-gradient(135deg, #2e1739, #150a1c); }
.work__visual::before {
  /* anneau décoratif derrière la maquette */
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.14);
  animation: spin 40s linear infinite;
}
.work__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 70% 15%, rgba(255,255,255,0.1), transparent 60%);
}
.work__mock {
  width: 72%;
  background: rgba(8,8,13,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 15px;
  padding: 14px;
  transform: translateY(26px) rotate(-1.4deg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 34px 70px rgba(0,0,0,0.55);
  position: relative;
  z-index: 1;
}
.work:hover .work__mock { transform: translateY(10px) rotate(0deg) scale(1.04); }
.work__mock--phone {
  width: 34%;
  border-radius: 24px;
  padding: 12px 10px;
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 12px; }
.mock-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.mock-bar i:first-child { background: var(--accent); box-shadow: 0 0 8px rgba(232,255,71,0.6); }
.mock-notch { width: 40%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.2); margin: 0 auto 12px; }
.mock-hero {
  height: 64px;
  border-radius: 9px;
  background: linear-gradient(120deg, rgba(232,255,71,0.4), rgba(71,255,209,0.3), rgba(124,92,255,0.45));
  background-size: 200% 100%;
  animation: gradmove 5s ease-in-out infinite alternate;
  margin-bottom: 10px;
}
.mock-row { display: flex; gap: 8px; margin-bottom: 8px; }
.mock-row span { flex: 1; height: 26px; border-radius: 7px; background: rgba(255,255,255,0.09); }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-grid span { height: 52px; border-radius: 9px; background: rgba(255,255,255,0.09); }
.mock-split { display: flex; gap: 8px; }
.mock-split span { flex: 1; height: 90px; border-radius: 9px; background: rgba(255,255,255,0.09); }
.mock-split span:first-child { background: linear-gradient(140deg, rgba(232,255,71,0.32), rgba(255,255,255,0.06)); }

.work__meta { padding: 26px 28px 30px; }
.work__meta h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}
.work:hover .work__meta h3 { color: var(--accent); }
.work__meta p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 14px; }
.work__tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 13px;
  margin-right: 8px;
  background: rgba(255,255,255,0.02);
}
.works__note {
  margin-top: 44px;
  color: var(--text-dim);
  font-size: 16px;
}
.works__note a { color: var(--accent); text-decoration: none; font-weight: 600; }
.works__note a:hover { text-decoration: underline; }

/* ---------- Processus ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
  position: relative;
}
.step {
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(160deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03)) border-box;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(124,92,255,0.35) inset;
}
.step:not(:last-child)::after {
  /* trait de liaison entre les étapes */
  content: "";
  position: absolute;
  top: 50px; right: -22px;
  width: 22px; height: 1px;
  background: linear-gradient(90deg, rgba(232,255,71,0.5), transparent);
}
.step__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 40px;
  border-radius: 50%;
  color: #08080d;
  background: linear-gradient(140deg, #f4ff8f, var(--accent));
  box-shadow: 0 6px 20px rgba(232,255,71,0.25);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p { color: var(--text-dim); font-size: 14.5px; }

/* ---------- Studio ---------- */
.section--studio {
  background: linear-gradient(180deg, transparent, rgba(124,92,255,0.06) 30%, transparent);
}
.studio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.studio__text > p {
  color: var(--text-dim);
  margin-bottom: 18px;
  max-width: 540px;
}
.studio__text .section__title { margin-bottom: 28px; }
.studio__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.point {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0.025), rgba(255,255,255,0.015)) padding-box,
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)) border-box;
  transition: transform 0.25s ease, background 0.25s ease;
}
.point:hover { transform: translateY(-3px); }
.point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  margin-bottom: 6px;
}
.point span { font-size: 13.5px; color: var(--text-dim); }

.globe {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
}
.globe__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
}
.globe__ring--1 { animation: spin 28s linear infinite; border-style: dashed; }
.globe__ring--2 { inset: 13%; border-color: rgba(232,255,71,0.3); animation: spin 20s linear infinite reverse; }
.globe__ring--2::before {
  /* comète sur l'anneau */
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.globe__ring--3 { inset: 27%; border-color: rgba(124,92,255,0.35); border-style: dashed; animation: spin 34s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.globe__core {
  position: absolute;
  inset: 40%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #f4ff8f, var(--accent) 55%, #c8e02e);
  color: #08080d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  box-shadow: 0 0 90px rgba(232,255,71,0.45), 0 0 0 10px rgba(232,255,71,0.06);
}
.globe__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: rgba(8,8,13,0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.globe__pin:nth-child(odd) { animation-delay: -2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Témoignages ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  position: relative;
  border-radius: var(--radius);
  padding: 54px 28px 30px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(160deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03)) border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote::before {
  /* grand guillemet décoratif */
  content: "“";
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.quote:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(232,255,71,0.2) inset; }
.quote p { font-size: 15.5px; color: var(--text); }
.quote footer { display: flex; align-items: center; gap: 12px; }
.quote footer::before {
  content: "";
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent-2), var(--accent-3));
  flex: none;
  opacity: 0.85;
}
.quote footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
}
.quote footer span { display: block; font-size: 13px; color: var(--text-dim); }

/* ---------- Contact ---------- */
.section--contact {
  background: linear-gradient(180deg, transparent, rgba(232,255,71,0.045) 40%, transparent);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__text > p { color: var(--text-dim); max-width: 460px; margin-top: 22px; }
.contact__infos { margin-top: 38px; display: flex; flex-direction: column; gap: 14px; }
.contact__line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}
a.contact__line:hover { color: var(--accent); transform: translateX(4px); }
.contact__ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-strong);
  font-size: 16px;
}
.contact__form {
  border-radius: var(--radius);
  padding: 38px 34px;
  border: 1px solid transparent;
  background:
    linear-gradient(160deg, var(--bg-card-2), var(--bg-card) 60%) padding-box,
    linear-gradient(160deg, rgba(232,255,71,0.3), rgba(255,255,255,0.05) 40%, rgba(124,92,255,0.25)) border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.field select { appearance: none; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: rgba(156,156,171,0.55); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(232,255,71,0.03);
  box-shadow: 0 0 0 3px rgba(232,255,71,0.13);
}
.contact__note { font-size: 12.5px; color: var(--text-dim); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert {
  border-radius: 13px;
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.5;
}
.form-alert--ok { background: rgba(232,255,71,0.1); border: 1px solid rgba(232,255,71,0.4); }
.form-alert--err { background: rgba(255,90,90,0.08); border: 1px solid rgba(255,90,90,0.45); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 60px;
  background:
    radial-gradient(500px circle at 50% 0%, rgba(232,255,71,0.05), transparent 60%),
    rgba(255,255,255,0.015);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand strong { font-family: var(--font-display); font-size: 17px; }
.footer__brand p { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14.5px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__links a:hover { color: var(--accent); transform: translateX(3px); }
.footer__meta { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-dim); }
.footer__meta a { color: var(--text); text-decoration: none; }
.footer__meta a:hover { color: var(--accent); }

/* ---------- Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .studio { grid-template-columns: 1fr; }
  .studio__visual { order: -1; }
  .globe { max-width: 340px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(8,8,13,0.97);
    backdrop-filter: blur(22px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { font-size: 22px; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .lang a { font-size: 14px; padding: 8px 16px; }
  .nav__burger { display: flex; z-index: 110; }
  .nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .works { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); width: 100%; gap: 26px; }
  .studio__points { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .work__visual { height: 230px; }
  .work__visual::before { width: 280px; height: 280px; }
  .bg-glow--1, .bg-glow--2 { opacity: 0.3; }
}
