/* ============================================================
   UNIVRS WEB — Agency site
   Built on the UNIVRS Web design system (colors_and_type.css)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --font-base-size: 18px;
  --font-family-base: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-base-weight: 400;
}

/* existing rules */
html {
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}
body {
  font-size: var(--font-base-size);
  font-family: var(--font-family-base);
  font-weight: var(--font-base-weight);
  background: var(--color-bg);
  min-height: 100vh;
  overscroll-behavior-x: none;
  overflow-x: hidden;
  width: 100%;
}
#clip-wrap {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
::selection { background: var(--chrome-600); color: #fff; }

/* === Layout helpers === */
.container { max-width: 1240px; margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 960px; margin-inline: auto; padding-inline: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-text-faint);
}
.eyebrow .stroke {
  width: 40px; height: 2px;
  background: var(--chrome-gradient); border-radius: 1px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 -1px 0 rgba(15,17,21,.2) inset;
}
.section-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 56px; max-width: 720px;
}
.section-head h2 { font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem); }
.section-head .lede { color: var(--color-text-faint); font-size: var(--text-lg); max-width: 60ch; }
section.page { padding: 96px 0; min-height: 60vh; }
section.page.hero-page { padding-top: 130px; position: relative; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background var(--transition-interactive), border-color var(--transition-interactive), backdrop-filter var(--transition-interactive);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { height: 34px; filter: invert(1); }
.brand .sub {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; padding: 3px 8px; border-radius: 4px;
  background: var(--chrome-gradient-plate); color: #0F1115;
  line-height: 1.4;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 -1px 0 rgba(15,17,21,.18) inset,
    0 1px 2px rgba(15,17,21,.10);
}
nav.primary {
  display: flex; gap: 4px; flex: 1; justify-content: center;
}
nav.primary a {
  padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--color-text-faint); border-radius: 8px;
  transition: var(--transition-interactive);
  position: relative;
}
nav.primary a:hover {
  color: var(--color-text);
  background: rgba(95,102,115,.08);
}
nav.primary a.active {
  color: var(--color-text);
}
nav.primary a.active::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 1px;
  background: var(--chrome-gradient);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 10px 18px; font-size: 13px; }
.menu-toggle { display: none; }

@media (max-width: 960px) {
  nav.primary { display: none; }
  .header-actions .btn-secondary { display: none; }
  .menu-toggle {
    display: inline-flex; width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 8px; border: 1px solid var(--color-border);
    background: var(--color-bg);
  }
  .menu-toggle span {
    width: 18px; height: 2px; background: var(--color-text);
    position: relative;
  }
  .menu-toggle span::before, .menu-toggle span::after {
    content: ''; position: absolute; left: 0; width: 18px; height: 2px;
    background: var(--color-text);
  }
  .menu-toggle span::before { top: -6px; }
  .menu-toggle span::after { top: 6px; }
}

/* Mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none; flex-direction: column;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 28px; padding: 12px 0;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-menu .close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  border: 1px solid var(--color-border); border-radius: 8px;
  background: var(--color-bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 22px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; transition: var(--transition-interactive);
  border: 1.5px solid transparent; cursor: pointer;
  position: relative; white-space: nowrap;
}
.btn-primary {
  background: var(--chrome-gradient);
  color: #0F1115;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 -1px 0 rgba(15,17,21,.22) inset,
    0 0 0 1px rgba(15,17,21,.10),
    0 4px 10px -2px rgba(15,17,21,.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 -1px 0 rgba(15,17,21,.22) inset,
    0 0 0 1px rgba(15,17,21,.12),
    0 8px 18px -2px rgba(15,17,21,.28),
    0 0 28px rgba(143,147,158,.45);
}
.btn-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--chrome-500);
}
.btn-secondary:hover {
  background: var(--chrome-100);
  border-color: var(--chrome-600);
  box-shadow: 0 0 0 1px rgba(95,102,115,.15), 0 0 18px rgba(95,102,115,.18);
}
.btn-ghost {
  background: transparent; color: var(--color-text);
  padding: 13px 14px;
}
.btn-ghost:hover { background: rgba(95,102,115,.08); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* Inline arrow helper */
.btn .arrow { transition: transform var(--transition-interactive); }
.btn:hover .arrow { transform: translateX(3px); }

/* === Hero === */
.hero {
  position: relative;
  padding: 0 0 100px;
  min-height: 100vh;
  overflow: hidden;
}
.hero::before { display: none; }

section.page.hero-page::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, 100%);
  background: radial-gradient(ellipse at center,
    rgba(143,147,158,.28) 0%,
    rgba(95,102,115,.10) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--chrome-sheen);
  opacity: .45;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
  position: relative;
}
/* Video : colonne droite, span 2 rangées pour rester aligné avec texte + stats */
.hero .container > div:nth-child(2) { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.hero h1 {
  font-size: clamp(2.6rem, 1.6rem + 4vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 15ch;
  margin: 18px 0 24px;
}
.hero h1 .accent {
  background: var(--chrome-liquid-text);
  background-size: 100% 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: chrome-flow 9s ease-in-out infinite;
}
.hero .lede {
  font-size: clamp(1rem, .95rem + .4vw, 1.25rem);
  color: var(--color-text-faint);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 40px; margin-top: 56px;
  font-size: 13px; color: var(--color-text-faint);
  flex-wrap: wrap;
}
.hero-meta strong {
  display: block; color: var(--color-text);
  font-weight: 600; font-size: 14px; margin-bottom: 2px;
  letter-spacing: .04em; text-transform: uppercase;
}

/* The chrome orb */
.chrome-orb {
  position: relative;
  width: clamp(280px, 30vw, 440px);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.45) 8%, transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(255,255,255,.35) 0%, transparent 18%),
    conic-gradient(from 215deg at 50% 50%,
      #F5F5F7 0%, #B8BBC3 8%, #2B2F38 18%, #5F6673 28%, #FFFFFF 38%,
      #CFCFD6 48%, #2B2F38 58%, #8E939E 70%, #FFFFFF 82%, #B8BBC3 92%, #F5F5F7 100%);
  box-shadow:
    0 30px 60px -20px rgba(15,17,21,.55),
    0 0 0 1px rgba(15,17,21,.10),
    0 0 120px rgba(143,147,158,.35),
    inset 0 -30px 60px rgba(15,17,21,.35),
    inset 0 20px 40px rgba(255,255,255,.35);
  animation: chrome-orb-spin 24s linear infinite;
}
.chrome-orb::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--chrome-iridescent);
  background-size: 220% 220%;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: chrome-iridescent 14s linear infinite;
  opacity: .85;
}
.chrome-orb::after {
  content: ''; position: absolute;
  top: 14%; left: 22%;
  width: 25%; height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,1) 0%, rgba(255,255,255,.5) 30%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  animation: chrome-spec 8s ease-in-out infinite alternate;
}
@keyframes chrome-orb-spin { to { transform: rotate(360deg); } }
@keyframes chrome-spec {
  0%   { transform: translate(-4px,-2px) scale(1); opacity: .95; }
  50%  { transform: translate(12px,8px) scale(1.2); opacity: .7; }
  100% { transform: translate(30px,-4px) scale(.85); opacity: 1; }
}

/* Hero video (replaces the chrome orb) */
.hero-video {
  width: clamp(280px, 30vw, 440px);
  aspect-ratio: 1;
  margin-left: auto;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 30px 60px rgba(15,17,21,.35));
  background: transparent;
}

/* Floating mini chips around hero */
.hero-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-chip {
  position: absolute;
  padding: 8px 12px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--color-text);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.hero-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--chrome-gradient);
  box-shadow: 0 0 8px rgba(95,102,115,.4);
}

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero .container > div:nth-child(2) { grid-column: auto; grid-row: auto; align-self: auto; }
  .chrome-orb { margin-inline: auto; }
  .hero-video { margin-inline: auto; }
  .hero-meta { gap: 24px; margin-top: 0; }
}

/* === Trust bar === */
.trust-bar {
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding: 28px 0;
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.trust-label {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-text-faint); font-weight: 600;
}
.trust-logos {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
  opacity: .75;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-text-muted);
  letter-spacing: -0.02em;
  opacity: .55;
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-logo .mk {
  width: 22px; height: 22px;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 4px;
  position: relative;
}
.trust-logo .mk.circle { border-radius: 50%; }
.trust-logo .mk.tri { border: none; width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 22px solid var(--color-text-muted); border-radius: 0;}
.trust-logo .mk.bars::after {
  content:''; position:absolute; inset: 4px;
  background: repeating-linear-gradient(90deg, var(--color-text-muted), var(--color-text-muted) 2px, transparent 2px, transparent 5px);
}

/* === Cards (generic) === */
.card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition-interactive);
}
.card:hover {
  border-color: var(--chrome-500);
  box-shadow: 0 12px 28px rgba(15,17,21,.10), 0 0 24px rgba(95,102,115,.15);
  transform: translateY(-4px);
}
.card.featured::before {
  display: none;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 -1px 0 rgba(15,17,21,.2) inset;
}

/* Service cards */
/* === Services bento === */
.svc-bento { margin-top: 56px; display: flex; flex-direction: column; gap: 16px; }
.svc-bento-top { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.svc-bento-right { display: flex; flex-direction: column; gap: 16px; }
.svc-bento-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.svc-card-lg {
  display: flex; flex-direction: column; gap: 18px;
  padding: 40px 36px;
  text-decoration: none; min-height: 300px;
}
.svc-card-sm {
  display: flex; flex-direction: column; gap: 10px;
  padding: 28px;
  text-decoration: none; flex: 1;
}
.svc-tag {
  font-size: 11px; color: var(--color-text-faint);
  letter-spacing: .1em; text-transform: uppercase;
}
.svc-card-lg h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 1.8rem + 1vw, 36px);
  letter-spacing: -.02em; line-height: 1.1;
  flex: 1; color: var(--color-text);
}
.svc-card-sm h3 {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: -.01em;
  color: var(--color-text);
}
.svc-card-lg p, .svc-card-sm p {
  font-size: 13px; color: var(--color-text-faint); line-height: 1.6;
}
.svc-more {
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-text); margin-top: auto;
}
@media (max-width: 880px) {
  .svc-bento-top { grid-template-columns: 1fr; }
  .svc-bento-right { flex-direction: row; }
  .svc-bento-bottom { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .svc-bento-right { flex-direction: column; }
  .svc-bento-bottom { grid-template-columns: 1fr; }
}
.service-card .glyph {
  width: 48px; height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-surface);
  position: relative;
}

/* === Differentiators === */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg);
}
.diff-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  min-height: 220px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.diff-cell:nth-child(3n) { border-right: none; }
.diff-cell:nth-last-child(-n+3) { border-bottom: none; }
.diff-cell .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-text);
  line-height: 1;
}
.diff-cell .num.chrome {
  background: var(--chrome-gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.diff-cell h4 { font-size: 18px; }
.diff-cell p { font-size: 14px; color: var(--color-text-faint); line-height: 1.55; }

/* hover animation */
.diff-cell { transition: background 280ms ease; }
.diff-cell::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--chrome-gradient-plate);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.diff-cell:hover { background: rgba(0,0,0,.03); }
.diff-cell:hover::after { transform: scaleX(1); }
.diff-cell .num { transition: transform 340ms cubic-bezier(.16,1,.3,1); }
.diff-cell:hover .num { transform: translateY(-4px); }
@media (max-width: 880px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-cell { border-right: none; }
  .diff-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--color-divider); }
  .diff-cell:last-child { border-bottom: none; }
}

/* === Portfolio === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-interactive);
  display: flex; flex-direction: column;
}
.project-card:hover {
  border-color: var(--chrome-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(95,102,115,.18);
}
.project-card .frame {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  overflow: hidden;
}
.project-card .frame .browser-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 28px;
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
}
.project-card .frame .browser-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--chrome-300); }
.project-card .frame .browser-bar .url {
  margin-left: 12px; font-family: var(--font-mono); font-size: 10px;
  color: var(--color-text-faint);
}
.project-card .frame .preview {
  position: absolute; top: 28px; left: 0; right: 0; bottom: 0;
  transition: transform 600ms var(--ease-out-expo);
}
.project-card:hover .frame .preview { transform: scale(1.04); }
.project-card .meta {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.project-card .tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  color: var(--color-text-faint);
}
.why-row-item {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 180ms ease;
}
.why-row-item:hover { background: var(--color-surface); }
.why-ic {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  color: var(--color-text-faint);
}
.tag.chrome {
  background: var(--chrome-gradient-plate);
  color: #0F1115;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 -1px 0 rgba(15,17,21,.15) inset;
}
.project-card h3 { font-size: 22px; letter-spacing: -0.01em; }
.project-card .desc { font-size: 13px; color: var(--color-text-faint); line-height: 1.55; }
.project-card .row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--color-divider);
  font-size: 12px; color: var(--color-text-faint);
}

/* Filters */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 13px; color: var(--color-text-faint);
  cursor: pointer;
  transition: var(--transition-interactive);
}
.filter-chip:hover { color: var(--color-text); border-color: var(--chrome-500); }
.filter-chip.active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* === Process === */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process-steps::before {
  content: ''; position: absolute;
  left: 56px; top: 28px; bottom: 28px;
  width: 1px; background: var(--color-divider);
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-divider);
  position: relative;
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}
.step-num.chrome {
  background: var(--chrome-gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-body h3 { font-size: 24px; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--color-text-faint); line-height: 1.6; }
.step-detail {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.step-detail .label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-faint); font-weight: 600; margin-bottom: 8px; }
.step-detail ul { display: flex; flex-direction: column; gap: 6px; }
.step-detail li {
  font-size: 13px; color: var(--color-text);
  display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.5;
}
.step-detail li::before {
  content: ''; flex-shrink: 0;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--chrome-gradient); margin-top: 8px;
}
@media (max-width: 880px) {
  .process-steps::before { left: 24px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-num { font-size: 36px; }
  .step-detail { grid-column: 1 / -1; }
}

/* === Pricing === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 24px;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  padding: 32px 28px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column; gap: 20px;
  transition: var(--transition-interactive);
  overflow: visible;
}
.price-card:hover {
  border-color: var(--chrome-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card-wrap {
  position: relative; display: flex; flex-direction: column;
}
.price-card-wrap.is-in {
  transition: transform var(--transition-interactive);
}
.price-card-wrap.is-in:hover {
  transform: translateY(-4px);
}
.price-card-wrap .price-card.featured:hover {
  transform: none;
  border-color: var(--chrome-500);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: linear-gradient(180deg, var(--color-bg), var(--color-surface));
  border-color: var(--chrome-500);
  box-shadow: 0 18px 40px -12px rgba(15,17,21,.20), 0 0 0 1px rgba(95,102,115,.15);
}
.price-card.featured::before {
  display: none;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 -1px 0 rgba(15,17,21,.2) inset;
}
.badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  padding: 5px 12px;
  background: #0F1115;
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15), 0 4px 10px -2px rgba(15,17,21,.5);
}
.price-card .pack-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.price-card .pack-desc { font-size: 13px; color: var(--color-text-faint); line-height: 1.5; }
.price-card .price-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 6px;
  padding-bottom: 20px; border-bottom: 1px solid var(--color-divider);
}
.price-card .price-row .from { font-size: 11px; color: var(--color-text-faint); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; width: 100%; margin-bottom: -2px; }
.price-card .price-row .amount {
  font-family: var(--font-display); font-size: 38px;
  letter-spacing: -0.02em; line-height: 1; white-space: nowrap;
}
.price-card .price-row .unit { font-size: 13px; color: var(--color-text-faint); white-space: nowrap; }
.price-card ul.features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card ul.features li {
  font-size: 13px; color: var(--color-text);
  display: flex; gap: 10px; line-height: 1.5;
  align-items: flex-start;
}
.price-card ul.features li::before {
  content: ''; flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--chrome-gradient-plate);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 -1px 0 rgba(15,17,21,.18) inset;
  margin-top: 4px;
  position: relative;
}
.price-card ul.features li[data-no]::before {
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-border);
  opacity: .6;
}
.price-card ul.features li[data-no] {
  color: var(--color-text-faint);
  text-decoration: line-through;
  text-decoration-color: var(--color-border);
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: 28px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition-interactive);
}
.testimonial:hover { border-color: var(--chrome-500); box-shadow: var(--shadow-md); }
.testimonial .stars { display: inline-flex; gap: 2px; color: var(--chrome-600); font-size: 14px; }
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.4;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--color-divider);
}
.testimonial .who .ava {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--chrome-gradient-plate);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 -1px 0 rgba(15,17,21,.15) inset;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; color: #0F1115;
}
.testimonial .who .info { display: flex; flex-direction: column; }
.testimonial .who .info strong { font-size: 13px; font-weight: 600; color: var(--color-text); }
.testimonial .who .info span { font-size: 12px; color: var(--color-text-faint); }

.featured-quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.featured-quote::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; background: var(--chrome-sheen);
  opacity: .6;
}
.featured-quote .big {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.featured-quote .meta-col { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 880px) {
  .featured-quote { grid-template-columns: 1fr; padding: 32px; }
}

/* === FAQ === */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%; text-align: left;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--color-text);
  transition: var(--transition-interactive);
}
.faq-question:hover { color: var(--chrome-600); }
.faq-question .plus {
  width: 24px; height: 24px; flex-shrink: 0;
  position: relative;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: ''; position: absolute;
  background: var(--color-text);
  transition: transform var(--transition-interactive);
}
.faq-question .plus::before {
  top: 11px; left: 4px; right: 4px; height: 2px;
}
.faq-question .plus::after {
  left: 11px; top: 4px; bottom: 4px; width: 2px;
}
.faq-item.open .faq-question .plus::after { transform: scaleY(0); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 400ms var(--ease-out-expo);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer .inner {
  padding: 0 0 28px;
  color: var(--color-text-faint);
  font-size: 15px; line-height: 1.65;
  max-width: 70ch;
}

/* === FAQ clean (home) === */
.faq-clean { display: flex; flex-direction: column; }
.faq-clean-item { border-bottom: 1px solid var(--color-divider); }
.faq-clean-item:first-child { border-top: 1px solid var(--color-divider); }
.faq-clean-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.1rem + .4vw, 22px);
  letter-spacing: -.01em;
  color: var(--color-text);
  transition: color 200ms ease;
}
.faq-clean-q:hover { color: var(--color-text); opacity: .75; }
.faq-icon {
  flex-shrink: 0; color: var(--color-text-faint);
  transition: transform 360ms cubic-bezier(.16,1,.3,1);
}
.faq-clean-item.open .faq-icon { transform: rotate(180deg); }
.faq-clean-a {
  max-height: 0; overflow: hidden;
  transition: max-height 400ms cubic-bezier(.16,1,.3,1);
  color: var(--color-text-faint);
  font-size: 15px; line-height: 1.7;
}
.faq-clean-item.open .faq-clean-a { max-height: 300px; }
.faq-clean-item.open .faq-clean-a { padding-bottom: 28px; }

/* === CTA banner === */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  overflow: hidden;
  background: var(--color-text);
  color: var(--color-text-inverse);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(143,147,158,.22) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(207,207,214,.12) 0%, transparent 50%);
}
.cta-banner::after {
  content: ''; position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px; background: var(--chrome-sheen); opacity: .8;
}
.cta-banner .container-inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner h2 .liq {
  background: var(--chrome-liquid-text);
  background-size: 100% 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: chrome-flow 9s ease-in-out infinite;
}
.cta-banner p { color: rgba(255,255,255,.7); max-width: 50ch; font-size: 16px; line-height: 1.6; }
.cta-banner .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-banner .actions .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.cta-banner .actions .btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
@media (max-width: 880px) {
  .cta-banner { padding: 40px 28px; }
  .cta-banner .container-inner { grid-template-columns: 1fr; }
}

/* === Footer === */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: 80px 0 32px;
  margin-top: 0;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px; background: var(--chrome-sheen); opacity: .55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-text-faint);
  font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--color-text);
  transition: var(--transition-interactive);
}
.footer-col a:hover { color: var(--chrome-600); }
.footer-brand .baseline {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 20px 0 12px;
  max-width: 24ch;
}
.footer-brand .meta { font-size: 13px; color: var(--color-text-faint); max-width: 32ch; line-height: 1.6; }
.footer-brand .social-icons { margin-top: 20px; }
.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: var(--color-text-faint);
}
.footer-bottom .legals { display: flex; gap: 20px; }
.footer-bottom .legals a:hover { color: var(--color-text); }
.footer-social, .social-icons { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a, .social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--color-border); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text-faint);
  transition: var(--transition-interactive);
}
.footer-social a:hover, .social-icon:hover { color: var(--color-text); border-color: var(--chrome-500); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* === Forms === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 28px;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-text-faint);
}
.field input,
.field textarea,
.field select {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--color-text);
  font-family: inherit;
  transition: var(--transition-interactive);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--chrome-500);
  box-shadow: 0 0 0 3px rgba(95,102,115,.18);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field .hint { font-size: 12px; color: var(--color-text-faint); }
.req { color: var(--chrome-500); font-weight: 700; margin-left: 1px; }
.field-msg {
  display: none;
  font-size: 12px; color: #d94f4f; margin-top: 5px; line-height: 1.4;
}
.field.is-error .field-msg { display: block; }
.field.is-error input,
.field.is-error textarea,
.field.is-error select {
  border-color: #d94f4f !important;
  animation: field-shake 0.32s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(3px); }
}
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-chip {
  position: relative;
}
.radio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chip span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 14px; color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-interactive);
}
.radio-chip input:checked + span {
  border-color: var(--chrome-600);
  background: var(--color-surface);
  box-shadow: 0 0 0 1px var(--chrome-500), inset 0 0 0 1px rgba(255,255,255,.6);
}
.radio-chip span:hover { border-color: var(--chrome-500); }

/* === RGPD checkbox === */
.rgpd-check {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
  text-transform: none; letter-spacing: normal; font-weight: 400;
}
.rgpd-check input[type="checkbox"] {
  flex-shrink: 0; width: 15px; height: 15px; margin-top: 2px;
  accent-color: var(--color-text);
  cursor: pointer;
  outline: none;
}
.rgpd-check input[type="checkbox"]:focus,
.rgpd-check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: none;
}
.rgpd-check input[type="checkbox"]:checked {
  animation: rgpd-pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes rgpd-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.rgpd-check span {
  font-size: 13px; font-weight: 400;
  text-transform: none; letter-spacing: normal;
  color: var(--color-text-faint); line-height: 1.6;
}
.rgpd-check span a {
  color: var(--color-text); text-decoration: underline;
  text-underline-offset: 3px;
}
.rgpd-check span a:hover { opacity: .7; }

/* === Legal pages === */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 120px;
}
.legal-content .legal-meta {
  font-size: 13px;
  color: var(--color-text-faint);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-divider);
}
.legal-content h2 {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  margin: 40px 0 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--color-text-muted); margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin: 8px 0 16px; }
.legal-content li { font-size: 15px; line-height: 1.8; color: var(--color-text-muted); margin-bottom: 6px; }
.legal-content a { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { opacity: .7; }
.legal-content strong { color: var(--color-text); font-weight: 600; }
.legal-placeholder { color: var(--color-text-faint); font-style: italic; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--color-surface);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-text-faint);
  border-bottom: 1px solid var(--color-divider);
}
.legal-table td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 14px;
}
.legal-table tbody tr:last-child td { border-bottom: none; }

/* === Stats === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg);
}
.stat {
  padding: 36px;
  border-right: 1px solid var(--color-divider);
  display: flex; flex-direction: column; gap: 6px;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .n.chrome {
  background: var(--chrome-gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .lbl { font-size: 13px; color: var(--color-text-faint); }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2,1fr); } .stat:nth-child(2) { border-right: none; } .stat:nth-child(-n+2){ border-bottom: 1px solid var(--color-divider); } }

/* === Reassurance bar === */
.reassure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  position: relative;
}
.reassure-item { display: flex; align-items: center; gap: 12px; }
.reassure-item .ic {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--chrome-gradient-plate);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 -1px 0 rgba(15,17,21,.15) inset;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0F1115; font-size: 16px;
  flex-shrink: 0;
}
.reassure-item .txt { font-size: 13px; color: var(--color-text); line-height: 1.4; }
.reassure-item .txt strong { display: block; font-size: 13px; font-weight: 600; }
.reassure-item .txt span { color: var(--color-text-faint); font-size: 12px; }
@media (max-width: 880px) { .reassure { grid-template-columns: 1fr 1fr; } }

/* === Page-switch hide === */
section.page { display: none; }
section.page.active { display: block; }
section.page.active.anim-in { animation: page-in 500ms var(--ease-out-expo); }
@keyframes page-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* === Comparison table === */
.ct-wrap { overflow-x: auto; width: 100%; max-width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--color-border); box-shadow: var(--shadow-card); }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg);
  min-width: 640px;
}

/* Header */
.compare-table thead th {
  padding: 22px 24px;
  background: var(--color-surface);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
  position: relative;
}
.compare-table .ct-label-head {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  font-family: var(--font-body);
}
.compare-table thead th.highlight {
  background: var(--color-text);
  color: #fff;
}
.compare-table thead th.highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--chrome-gradient);
}
.ct-featured-badge {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}

/* Cells */
.compare-table th, .compare-table td {
  vertical-align: middle;
}
.compare-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-divider);
  font-size: 14px;
  text-align: center;
  transition: background 200ms ease;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td.ct-featured { background: rgba(143,147,158,.055); }

/* Row hover */
.compare-table tbody tr { transition: background 180ms ease; }
.compare-table tbody tr:hover td { background: var(--color-surface); }
.compare-table tbody tr:hover td.ct-featured { background: rgba(143,147,158,.10); }

/* Row stagger reveal */
.compare-table tbody tr {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1), background 180ms ease;
}
.compare-table.is-in tbody tr { opacity: 1; transform: none; }
.compare-table.is-in tbody tr:nth-child(1) { transition-delay: 40ms; }
.compare-table.is-in tbody tr:nth-child(2) { transition-delay: 90ms; }
.compare-table.is-in tbody tr:nth-child(3) { transition-delay: 140ms; }
.compare-table.is-in tbody tr:nth-child(4) { transition-delay: 190ms; }
.compare-table.is-in tbody tr:nth-child(5) { transition-delay: 240ms; }
.compare-table.is-in tbody tr:nth-child(6) { transition-delay: 290ms; }
.compare-table.is-in tbody tr:nth-child(7) { transition-delay: 340ms; }
.compare-table.is-in tbody tr:nth-child(8) { transition-delay: 390ms; }
.compare-table.is-in tbody tr:nth-child(9) { transition-delay: 440ms; }

.compare-table .row-label {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  transition: transform 220ms cubic-bezier(.16,1,.3,1);
}
.compare-table tbody tr:hover .row-label { transform: translateX(4px); }

/* Value elements */
.ct-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(143,147,158,.12);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.ct-no {
  display: inline-block;
  width: 20px;
  text-align: center;
  color: var(--color-text-faint);
  opacity: .35;
  font-size: 18px;
  line-height: 1;
}
.ct-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.ct-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-faint);
  letter-spacing: .02em;
}
.ct-chip.ct-chip-mid {
  background: rgba(143,147,158,.08);
  border-color: var(--chrome-500);
  color: var(--color-text);
}
.ct-chip.ct-chip-top {
  background: var(--chrome-100);
  border-color: var(--chrome-600);
  color: var(--color-text);
  font-weight: 700;
}
.ct-delay {
  font-size: 13px;
  color: var(--color-text-faint);
}

/* === Compare carousel (hidden on desktop, shown mobile via responsive.css) === */
.ct-carousel { display: none; }
.ct-carousel-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ct-carousel-track::-webkit-scrollbar { display: none; }
.ct-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  padding: 28px 20px 24px;
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.ct-card--featured {
  background: var(--color-text);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.ct-card--featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--chrome-gradient);
}
.ct-card-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px;
}
.ct-card-name {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--color-text); margin-bottom: 2px;
}
.ct-card--featured .ct-card-name { color: #fff; }
.ct-card-tagline { font-size: 13px; color: var(--color-text-faint); margin-bottom: 20px; }
.ct-card--featured .ct-card-tagline { color: rgba(255,255,255,.4); }
.ct-card-feats { list-style: none; flex: 1; display: flex; flex-direction: column; margin-bottom: 20px; }
.ct-card-feats li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--color-divider);
  font-size: 13px; gap: 8px;
}
.ct-card--featured .ct-card-feats li { border-bottom-color: rgba(255,255,255,.08); }
.ct-card-feats li:last-child { border-bottom: none; }
.ct-card-feats li span { color: var(--color-text-faint); flex: 1; font-size: 13px; }
.ct-card--featured .ct-card-feats li span { color: rgba(255,255,255,.5); }
.ct-card-feats li strong { font-weight: 600; font-size: 13px; text-align: right; white-space: nowrap; color: var(--color-text); }
.ct-card--featured .ct-card-feats li strong { color: #fff; }
.ct-feat-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(143,147,158,.14); font-size: 12px; font-weight: 700;
}
.ct-card--featured .ct-feat-yes { background: rgba(255,255,255,.15); color: #fff; }
.ct-feat-no { color: var(--color-text-faint); opacity: .35; font-size: 16px; }
.ct-card--featured .ct-feat-no { color: rgba(255,255,255,.3); opacity: 1; }
.ct-carousel-nav {
  display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 16px;
}
.ct-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-border); border: none; cursor: pointer; padding: 0;
  transition: all 250ms cubic-bezier(.16,1,.3,1);
}
.ct-dot.active { background: var(--color-text); width: 24px; border-radius: 4px; }

/* === 404 === */
.notfound {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
}
.notfound .code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 12vw, 14rem);
  line-height: 1; letter-spacing: -0.04em;
  background: var(--chrome-liquid-text);
  background-size: 100% 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chrome-flow 9s ease-in-out infinite;
  margin-bottom: 16px;
}
.notfound h2 { font-size: 36px; margin-bottom: 12px; }
.notfound p { color: var(--color-text-faint); margin: 0 auto 28px; max-width: 50ch; }
.notfound .actions { display: inline-flex; gap: 12px; }

/* === Devis page === */
.devis-layout {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Stepper */
.devis-stepper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stepper-n {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-faint);
  transition: background 300ms, color 300ms, border-color 300ms;
}
.stepper-lbl {
  font-size: 11px; font-weight: 500;
  color: var(--color-text-faint);
  text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap;
  transition: color 300ms;
}
.stepper-step.active .stepper-n {
  background: var(--chrome-gradient);
  border-color: transparent;
  color: #0F1115;
}
.stepper-step.active .stepper-lbl { color: var(--color-text); font-weight: 700; }
.stepper-step.done .stepper-n {
  background: var(--chrome-gradient-plate);
  border-color: transparent;
  color: #0F1115;
}
.stepper-line {
  flex: 1; height: 1px;
  background: var(--color-divider);
  margin-top: 16px;
  transition: background 400ms;
}
.stepper-line.done { background: var(--chrome-500); }

.devis-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
}
.contact-devis-nudge {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px 22px 18px 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.contact-devis-nudge::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--chrome-gradient);
}
.contact-devis-nudge-text { flex: 1; min-width: 0; }
.contact-devis-nudge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 3px; }
.contact-devis-nudge-text span { display: block; font-size: 13px; color: var(--color-text-faint); line-height: 1.5; }
.devis-step { display: none; }
.devis-step.active { display: block; }
.step-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.step-pill {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--chrome-gradient-plate);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 -1px 0 rgba(15,17,21,.15) inset;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; color: #0F1115;
  flex-shrink: 0;
}
.step-head .ttl { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em; }
.step-head .sub { font-size: 13px; color: var(--color-text-faint); margin-top: 2px; }

.devis-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 28px; margin-top: 28px;
  border-top: 1px solid var(--color-divider);
}
.devis-progress {
  font-size: 13px; color: var(--color-text-faint);
  flex: 1; text-align: center;
}

/* Ce qui se passe après (horizontal strip) */
.devis-after {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 16px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.after-step {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 20px;
  background: var(--color-surface);
}
.after-n {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--chrome-gradient-plate);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 -1px 0 rgba(15,17,21,.15) inset;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #0F1115;
  flex-shrink: 0;
}
.after-ttl { font-size: 13px; font-weight: 600; color: var(--color-text); margin-bottom: 3px; }
.after-desc { font-size: 12px; color: var(--color-text-faint); line-height: 1.5; }
@media (max-width: 720px) {
  .devis-after { grid-template-columns: 1fr 1fr; }
  .devis-stepper .stepper-lbl { display: none; }
}

/* === About === */
.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .about-vision { grid-template-columns: 1fr; gap: 32px; } }
.about-vision .visual {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--chrome-liquid);
  background-size: 100% 250%;
  background-position: 0% 30%;
  animation: chrome-flow 12s ease-in-out infinite;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-vision .visual::after {
  content: ''; position: absolute; inset: 0;
  background: var(--chrome-iridescent);
  background-size: 200% 200%;
  mix-blend-mode: screen;
  animation: chrome-iridescent 14s linear infinite;
  pointer-events: none;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }
.value-cell {
  padding: 32px;
  border-right: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.value-cell:nth-child(3n) { border-right: none; }
.value-cell:nth-last-child(-n+3) { border-bottom: none; }
.value-cell .ord {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--color-text-faint); letter-spacing: .12em;
  margin-bottom: 16px; display: block;
}
.value-cell h4 { font-size: 22px; margin-bottom: 10px; letter-spacing: -0.01em; }
.value-cell p { font-size: 14px; color: var(--color-text-faint); line-height: 1.55; }

/* === Maintenance packs === */
.maint-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .maint-grid { grid-template-columns: 1fr; } }

/* === Browser mockup content fillers === */
.mockup-1, .mockup-2, .mockup-3 {
  position: relative;
  display: flex;
}
.mockup-4 {
  background:
    linear-gradient(135deg, #F5F5F7 0%, #B8BBC3 70%, #5F6673 100%);
}
.mockup-4::before {
  content:''; position: absolute; inset: 25%;
  border: 1px solid rgba(15,17,21,.15);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.6) 0%, transparent 40%);
}
.mockup-5 {
  background: var(--color-text);
}
.mockup-5::before {
  content:''; position: absolute; left: 12%; right: 12%; top: 25%; bottom: 25%;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.1) 0 12%,
      transparent 12% 28%,
      rgba(255,255,255,.05) 28% 36%,
      transparent 36% 52%,
      rgba(255,255,255,.05) 52% 60%,
      transparent 60% 100%
    );
  border-radius: 4px;
}
.mockup-5::after {
  content:''; position: absolute; top: 25%; left: 12%; width: 30%; height: 8%;
  background: var(--chrome-gradient); border-radius: 2px;
}
.mockup-6 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(143,147,158,.35), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(95,102,115,.25), transparent 50%),
    #fff;
}
.mockup-6::before {
  content:''; position: absolute; left: 8%; top: 18%; width: 18%; aspect-ratio: 1;
  background: var(--chrome-gradient-plate); border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15,17,21,.15);
}
.mockup-6::after {
  content:''; position: absolute; right: 8%; top: 20%; left: 32%;
  height: 4%; background: var(--color-text); border-radius: 2px;
  box-shadow: 0 12px 0 var(--color-text), 0 24px 0 var(--color-text-faint),
              0 36px 0 var(--color-text-faint), 0 48px 0 var(--color-text-faint);
}

/* === Service feature rows (alternating editorial layout) === */
.service-features { display: flex; flex-direction: column; gap: 96px; }
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.service-feature.reverse { grid-template-columns: 1.05fr 1fr; }
.service-feature.reverse .feature-copy { order: 2; }
.service-feature.reverse .feature-visual { order: 1; }
.feature-copy { display: flex; flex-direction: column; gap: 20px; max-width: 56ch; }
.feature-copy .num {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.feature-copy h2 {
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.feature-copy .lede { font-size: 17px; color: var(--color-text-faint); line-height: 1.55; }
.feature-copy ul.inc { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.feature-copy ul.inc li {
  font-size: 14px;
  color: var(--color-text);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.feature-copy ul.inc li::before {
  content: ''; flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--chrome-gradient-plate);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 -1px 0 rgba(15,17,21,.18) inset;
  margin-top: 4px;
}
.feature-copy .for {
  font-size: 13px;
  color: var(--color-text-faint);
  border-top: 1px solid var(--color-divider);
  padding-top: 16px;
}
.feature-copy .for strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}
.feature-copy .feature-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px; }

.feature-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 28px;
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
}
.feature-visual::after {
  content: '';
  position: absolute; top: 10px; left: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--chrome-300);
  box-shadow: 14px 0 0 var(--chrome-300), 28px 0 0 var(--chrome-300);
}
.feature-visual .inner {
  position: absolute;
  top: 28px; left: 0; right: 0; bottom: 0;
}
@media (max-width: 880px) {
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr; gap: 28px; }
  .service-feature.reverse .feature-copy { order: 0; }
  .service-feature.reverse .feature-visual { order: 1; }
  .service-features { gap: 64px; }
}

/* === Services complémentaires : strip simple === */
.support-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg);
}
@media (max-width: 880px) { .support-services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .support-services { grid-template-columns: 1fr; } }
.support-cell {
  padding: 28px;
  border-right: 1px solid var(--color-divider);
  display: flex; flex-direction: column; gap: 10px;
  transition: var(--transition-interactive);
}
.support-cell:nth-child(4n) { border-right: none; }
@media (max-width: 880px) {
  .support-cell:nth-child(2n) { border-right: none; }
  .support-cell { border-bottom: 1px solid var(--color-divider); }
  .support-cell:nth-last-child(-n+2):not(:nth-child(odd)) { border-bottom: none; }
}
@media (max-width: 520px) {
  .support-cell { border-right: none; }
  .support-cell:last-child { border-bottom: none; }
}
.support-cell:hover { background: var(--color-surface); }
.support-cell .num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.support-cell h4 { font-size: 18px; letter-spacing: -0.01em; }
.support-cell p { font-size: 13px; color: var(--color-text-faint); line-height: 1.5; }
.support-cell .arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--color-text);
  letter-spacing: .04em; text-transform: uppercase;
  margin-top: auto;
}
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px;
  width: 320px; z-index: 1000;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: none;
  flex-direction: column; gap: 16px;
}
.tweaks-panel.open { display: flex; }
.tweaks-panel h5 { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-faint); }

/* responsive content */
@media (max-width: 880px) {
  .form-grid { grid-template-columns: 1fr; }
  section.page { padding: 64px 0; }
  section.page.hero-page { padding-top: 130px; position: relative; }
  .featured-quote, .cta-banner { padding: 28px; }
  .devis-form { padding: 24px; }
  .devis-nav { flex-wrap: wrap; gap: 8px; }
  .compare-table thead th, .compare-table tbody td { padding: 14px 12px; font-size: 12px; }
}
