/* ═══════════════════════════════════════════════
   ARNAUD VISUAL — Homepage 2026 v4
   Glass + Glow + Grain — Premium Portfolio
   Font: Cabinet Grotesk (display) + Inter (body)
   ═══════════════════════════════════════════════ */

:root {
  /* Palette — warm whites, never pure #fff */
  --bg: #010101;
  --bg2: #0a0805;
  --warm-white: #faf5f0;
  --text: #faf5f0;
  --text-55: rgba(250,245,240,.55);
  --text-38: rgba(250,245,240,.48);
  --text-25: rgba(250,245,240,.38);
  --text-10: rgba(250,245,240,.10);

  /* Accent — Arnaud's warm gradient (red-deep → orange → gold) */
  --accent: #fd8500;
  --accent-glow: #ffab40;
  --accent-deep: #c43e00;
  --accent-gold: #ffc857;
  /* --accent-peach: #ffe0b2; (unused, reserved) */
  --gradient-brand: linear-gradient(135deg, #c43e00, #fd8500, #ffab40);

  /* Panels — glass morphism */
  --panel: rgba(0,0,0,.50);
  /* --panel-hover: rgba(0,0,0,.60); (unused, reserved) */
  --stroke: rgba(250,245,240,.08);
  /* --stroke-hover: rgba(250,245,240,.15); (unused, reserved) */
  --stroke-accent: rgba(253,133,0,.18);

  /* Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 21px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-card: inset 0 0 0 1px rgba(250,245,240,.05), 0 8px 60px rgba(0,0,0,.4), 0 2px 24px rgba(0,0,0,.5);
  --shadow-glow: 0 8px 40px rgba(253,133,0,.12), 0 0 20px rgba(253,133,0,.08);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); height: 100%; }
body {
  min-height: 100%;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
  font-size: 14px;
}

/* ── Lenis smooth scroll ── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ── Film grain overlay ── */
@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%, 15%); }
  80%  { transform: translate(3%, 35%); }
  90%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0, 0); }
}
body::before {
  content: '';
  position: fixed; inset: -50%; z-index: 10;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: .35;
  animation: grain 8s steps(10) infinite;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Skip to content (accessibility) ── */
.skip-to-content {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 8px 24px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
  z-index: 10000; transition: top .2s ease;
}
.skip-to-content:focus { top: 12px; }

/* ── Focus visible (accessibility WCAG AA) ── */
.btn:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.quiz-option:focus-visible,
.faq-question:focus-visible,
.footer-social a:focus-visible,
.footer-contact a:focus-visible,
.project-card:focus-visible,
.sticky-cta:focus-visible,
.quiz-email-input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Section titles ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -2.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--warm-white);
}
.section-sub { color: var(--text-55); font-size: 16px; margin-bottom: 48px; line-height: 1.5; }
.accent { color: var(--accent); }

/* ── Luminous section separator (legacy, keep for future use) ── */
.section-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.4), rgba(255,209,128,.3), transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* ── Glass card base ── */
.glass-card {
  background: var(--panel);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
/* Side accent bar (left) */
.glass-card::before {
  content: '';
  position: absolute;
  top: 20%; bottom: 20%; left: 0; width: 3px;
  background: linear-gradient(180deg, transparent, var(--accent), var(--accent-glow), transparent);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.glass-card:hover::before { opacity: 1; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  will-change: transform;
}
.btn:active { transform: scale(.95); }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff; border-color: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
/* Glow behind button */
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-pill);
  background: var(--accent);
  filter: blur(16px);
  opacity: 0;
  z-index: -1;
  transition: opacity .3s ease;
}
.btn-primary:hover::after { opacity: .35; }
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(253,133,0,.3);
}

/* Light sweep on hover */
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skew(-25deg) translate(-275%);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}
.btn-primary:hover::before { transform: skew(-25deg) translate(275%); }

.btn-outline {
  background: transparent; color: var(--warm-white);
  border-color: rgba(250,245,240,.2);
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
}
.btn-outline:hover {
  border-color: rgba(250,245,240,.4);
  background: rgba(250,245,240,.05);
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── H1 split text reveal ── */
.hero-title .word {
  display: inline-block; opacity: 0;
  transform: translateY(20px); filter: blur(4px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1),
              transform .6s cubic-bezier(.16,1,.3,1),
              filter .6s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 0.06s);
}
.hero-title.split-ready .word { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── Stagger for grid items ── */
.portfolio-grid .project-card.reveal { transition-delay: calc(var(--stagger, 0) * 0.08s); }

/* ── Counter animation ── */
@keyframes countFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.stat-number.counted { animation: countFadeIn .5s cubic-bezier(.16,1,.3,1) forwards; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-title .word, .project-card img, .service-card, .btn-primary, .nav {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .hero-title .word { opacity: 1; transform: none; filter: none; }
  .logos-track { animation: none; }
  body::before { animation: none; }
}

/* ══════════════════════════════════════════════
   SOCIAL PROOF BANNER
   ══════════════════════════════════════════════ */
.social-proof {
  padding: 32px 0;
  border-bottom: 1px solid var(--stroke);
}
.social-proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.proof-number {
  font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--accent);
}
.proof-text { font-size: 13px; color: var(--text-38); font-weight: 500; }
.proof-divider { width: 1px; height: 24px; background: var(--stroke); }

/* ══════════════════════════════════════════════
   1. NAVIGATION — Floating glass pill
   ══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: 90%; max-width: 1100px;
  border-radius: 28px;
  padding: 6px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  transition: all .5s cubic-bezier(.25,.46,.45,.94);
}
.nav.scrolled {
  background: rgba(0,0,0,.7);
  border-color: rgba(250,245,240,.12);
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 18px;
  height: 52px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 20px; font-weight: 900; letter-spacing: -.5px; color: var(--warm-white); }
.dot-logo { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links-cta { display: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-55);
  transition: color .3s ease; position: relative;
  /* Gradient hover text */
  background-image: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-gold), var(--warm-white) 50%);
  background-size: 200%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
}
.nav-links a:hover,
.nav-links a.nav-active {
  color: transparent;
  background-position: 0 0;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #fff; font-weight: 700; font-size: 12px;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .3s cubic-bezier(.25,.46,.45,.94);
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 20px; height: 2px; background: var(--warm-white); border-radius: 2px; transition: all .2s ease; }

/* ══════════════════════════════════════════════
   2. HERO — Orb background + gradient text
   ══════════════════════════════════════════════ */
@keyframes orbFloat {
  0%   { transform: translate(-50%, -50%) scale(1); }
  33%  { transform: translate(-45%, -55%) scale(1.05); }
  66%  { transform: translate(-55%, -45%) scale(0.95); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
@keyframes orbFloat2 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-55%, -50%) scale(1.1); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  position: relative; overflow: hidden;
}
/* Animated orb 1 — warm orange + parallax */
.hero::before {
  content: '';
  position: absolute; top: 30%; left: 25%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(253,133,0,.12) 0%, rgba(253,133,0,.06) 40%, transparent 70%);
  border-radius: 50%; filter: blur(120px);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite;
  transform: translate(-50%, calc(-50% + var(--parallax-y, 0px)));
  will-change: transform;
}
/* Animated orb 2 — subtle violet accent + parallax (slower) */
.hero::after {
  content: '';
  position: absolute; top: 15%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.07) 0%, transparent 70%);
  border-radius: 50%; filter: blur(100px);
  pointer-events: none;
  animation: orbFloat2 20s ease-in-out infinite;
  transform: translate(-50%, calc(-50% + calc(var(--parallax-y, 0px) * 0.6)));
  will-change: transform;
}

.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
  text-align: center; position: relative; z-index: 1;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-visual {
  position: relative; z-index: 1;
  width: 100%; max-width: 960px;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual video,
.hero-visual img,
.hero-video {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  transition: transform .6s ease;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #000;
}
.hero-visual:hover video,
.hero-visual:hover img { transform: scale(1.01); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--panel); border: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  color: var(--text-55); font-size: 12px; font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .5px;
}
.dot-green {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 8px rgba(52,211,153,.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700; letter-spacing: -3px; line-height: 1.1;
  margin-bottom: 20px;
  color: var(--warm-white);
}
.hero-title .accent {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
.hero-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-55); font-weight: 400;
  margin-bottom: 36px; line-height: 1.6;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════════
   3. LOGOS — Marquee
   ══════════════════════════════════════════════ */
.logos-section {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
/* Luminous separator top */
.logos-section::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.logos-marquee { display: block; }
.logos-grid { display: none; }

.logos-track {
  display: flex; align-items: center; gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.logo-client {
  height: 26px; width: auto;
  opacity: .35; filter: brightness(0) invert(1);
  transition: opacity .3s ease;
  flex-shrink: 0;
}
.logo-client:hover { opacity: .7; }
.logo-featured { height: 32px; opacity: .5; }

/* ══════════════════════════════════════════════
   4. SERVICES — Glass cards
   ══════════════════════════════════════════════ */
.services { padding: 100px 0; position: relative; }
.services::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.services .section-title { text-align: center; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--panel);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  box-shadow: var(--shadow-card);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  position: relative; overflow: hidden;
}
/* Side accent bar (left) — Arnaud's signature */
.service-card::before {
  content: ''; position: absolute;
  top: 20%; bottom: 20%; left: 0; width: 3px;
  background: linear-gradient(180deg, transparent, var(--accent), var(--accent-glow), transparent);
  border-radius: 0 2px 2px 0;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
/* Mouse follow glow */
.service-card::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(253,133,0,.06) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-accent);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.service-icon { margin-bottom: 20px; color: var(--accent); }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; color: var(--warm-white); }
.service-desc { color: var(--text-55); font-size: 14px; margin-bottom: 20px; line-height: 1.5; text-align: justify; }
.service-list { margin-bottom: 24px; }
.service-list li {
  padding: 6px 0; font-size: 13px; color: var(--text-55);
  border-bottom: 1px solid rgba(250,245,240,.04);
  display: flex; align-items: center; gap: 8px;
}
.service-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(253,133,0,.5); flex-shrink: 0;
}
.service-link {
  font-size: 13px; font-weight: 600; color: var(--accent);
  transition: gap .2s ease; display: inline-flex; align-items: center; gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ══════════════════════════════════════════════
   5. À PROPOS — Glass panel
   ══════════════════════════════════════════════ */
.about { padding: 100px 0; background: var(--bg2); position: relative; }
.about::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.2), transparent);
}
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.about-photo img {
  border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p { color: var(--text-55); font-size: 15px; margin-bottom: 16px; line-height: 1.7; text-align: justify; }
.about-stats {
  display: flex; gap: 32px; margin-top: 32px;
  padding-top: 32px; border-top: 1px solid var(--stroke);
}
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 24px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-38); }

/* ══════════════════════════════════════════════
   6. RÉALISATIONS — Portfolio grid
   ══════════════════════════════════════════════ */
.portfolio { padding: 120px 0; position: relative; }
.portfolio::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.portfolio .section-title { text-align: center; margin-bottom: 56px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portfolio-grid .project-card:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}
.portfolio-grid .project-card:first-child .project-overlay h3 { font-size: 22px; }
.project-card.project-wide { grid-column: span 2; aspect-ratio: 21/9; }

.project-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; display: block;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  border: 1px solid transparent;
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.16,1,.3,1), filter .5s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(253,133,0,.15), 0 0 24px rgba(253,133,0,.08);
  border-color: var(--stroke-accent);
}

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: all .4s cubic-bezier(.16,1,.3,1);
  opacity: 0;
}
.project-card:hover .project-overlay {
  opacity: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.92) 100%);
}
.project-overlay h3 {
  font-size: 17px; font-weight: 700; color: var(--warm-white);
  transform: translateY(8px);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.project-card:hover .project-overlay h3 { transform: translateY(0); }
.project-link-text {
  font-size: 12px; font-weight: 600; color: var(--accent);
  margin-top: 6px; opacity: 0; transform: translateY(10px);
  transition: opacity .4s cubic-bezier(.16,1,.3,1) .05s, transform .4s cubic-bezier(.16,1,.3,1) .05s;
}
.project-card:hover .project-link-text { opacity: 1; transform: translateY(0); }
.project-cat {
  font-size: 10px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}

/* Portfolio CTA */
.portfolio-cta { text-align: center; margin-top: 56px; }
.portfolio-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--text-55);
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
  transition: color .3s ease, border-color .3s ease, gap .3s ease;
}
.portfolio-cta-link:hover { color: var(--accent); border-color: var(--accent); gap: 16px; }
.portfolio-cta-arrow { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.portfolio-cta-link:hover .portfolio-cta-arrow { transform: translateX(4px); }

/* Mobile portfolio */
@media (max-width: 768px) {
  .project-overlay { opacity: 1; background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,.6) 100%); padding: 14px; }
  .project-overlay h3 { font-size: 14px; transform: none; }
  .project-overlay .project-cat { display: none; }
  .project-link-text { display: none; }
}

/* ══════════════════════════════════════════════
   7. TÉMOIGNAGES — Glass + decorative quotes
   ══════════════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--bg2); position: relative; }
.testimonials::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.2), transparent);
}
.testimonials .section-title { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.testimonials-grid .testimonial-card { grid-column: span 2; }
/* Center last 2 cards: offset by 1 column each side */
.testimonials-grid .testimonial-card:nth-child(4) { grid-column: 2 / 4; }
.testimonials-grid .testimonial-card:nth-child(5) { grid-column: 4 / 6; }

.testimonial-card {
  background: var(--panel);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
}
/* Decorative quote mark */
.testimonial-card::after {
  content: '\201C'; /* left double quotation mark */
  position: absolute; top: 16px; right: 24px;
  font-size: 72px; font-weight: 900;
  color: rgba(253,133,0,.08);
  line-height: 1; pointer-events: none;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-accent);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text-55); font-size: 13px; line-height: 1.7; margin-bottom: 24px; flex: 1; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--stroke);
  margin-top: auto;
}
.testimonial-author img {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--stroke);
}
.testimonial-author strong { font-size: 13px; display: block; color: var(--warm-white); }
.testimonial-author span { font-size: 11px; color: var(--text-38); }

/* Testimonial result badge */
.testimonial-result {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 12px; color: var(--accent-glow); line-height: 1.5;
  margin-bottom: 20px; padding: 10px 14px;
  background: rgba(253,133,0,.06);
  border: 1px solid rgba(253,133,0,.12);
  border-radius: var(--radius-sm);
}
.result-badge {
  flex-shrink: 0;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--bg); background: var(--accent);
  padding: 2px 8px; border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════
   8. PRICING — Glass + rotating border featured
   ══════════════════════════════════════════════ */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes border-rotate { to { --angle: 360deg; } }

.pricing { padding: 100px 0; position: relative; }
.pricing::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.pricing .section-title { text-align: center; }
.pricing .section-sub { text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.pricing-card {
  background: var(--panel);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; position: relative;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-accent);
}

/* Featured card — rotating glow border */
.pricing-featured {
  border-color: rgba(253,133,0,.3);
  background: var(--panel);
  position: relative;
}
/* Spotlight glow from top */
.pricing-featured::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 0%, rgba(253,133,0,.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,.2);
}
.pricing-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.3px; color: var(--warm-white); }
.pricing-desc { color: var(--text-55); font-size: 13px; margin-bottom: 20px; }
.pricing-price { font-size: 17px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.pricing-estimate { font-size: 11px; color: var(--text-38); margin-bottom: 16px; }
.pricing-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--text-38);
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(0,0,0,.4); border: 1px solid var(--stroke);
  margin-bottom: 20px; width: fit-content;
}
.pricing-features { margin-bottom: 20px; flex: 1; }
.pricing-features li {
  padding: 7px 0; font-size: 13px; color: var(--text-55);
  border-bottom: 1px solid rgba(250,245,240,.04);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f98015' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-for { font-size: 12px; color: var(--text-38); margin-bottom: 24px; font-style: italic; line-height: 1.5; text-align: justify; }

/* ══════════════════════════════════════════════
   9. PROCESS — Timeline with orange line
   ══════════════════════════════════════════════ */
.process { padding: 100px 0; background: var(--bg2); position: relative; }
.process::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.2), transparent);
}
.process .section-title { text-align: center; margin-bottom: 56px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
/* Animated timeline line */
.process-line-bg, .process-line-fill {
  position: absolute;
  top: 88px; left: 12.5%; right: 12.5%;
  height: 2px; z-index: 0;
  border-radius: 1px;
}
.process-line-bg {
  background: rgba(250,245,240,.06);
}
.process-line-fill {
  background: linear-gradient(90deg, var(--accent), var(--accent-gold), var(--accent));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
  box-shadow: 0 0 12px rgba(253,133,0,.3), 0 0 4px rgba(253,133,0,.2);
}
.process-step {
  text-align: center; padding: 32px 16px; position: relative; z-index: 1;
}
/* Dot on timeline */
.process-dot {
  width: 12px; height: 12px;
  background: var(--bg2);
  border: 2px solid rgba(250,245,240,.12);
  border-radius: 50%;
  margin: 0 auto 12px;
  transition: all .4s ease;
  position: relative;
}
.process-dot::after {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: transparent;
  transition: background .4s ease;
}
.process-step.visible .process-dot {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(253,133,0,.4);
}
.process-step.visible .process-dot::after {
  background: var(--accent);
}
.process-num {
  font-size: 44px; font-weight: 900;
  background: linear-gradient(180deg, var(--accent), rgba(253,133,0,.15));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px; line-height: 1;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--warm-white); }
.process-step p { font-size: 13px; color: var(--text-55); line-height: 1.6; margin-bottom: 12px; text-align: justify; }
.process-detail { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: .5px; }

/* ══════════════════════════════════════════════
   10. FAQ — Clean accordion
   ══════════════════════════════════════════════ */
.faq { padding: 100px 0; position: relative; }
.faq::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.faq .section-title { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--stroke); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 600; text-align: left;
  transition: color .15s ease; gap: 16px; color: var(--warm-white);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { transition: transform .3s ease; flex-shrink: 0; color: var(--text-38); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-55); font-size: 14px; line-height: 1.7; text-align: justify; }

/* ══════════════════════════════════════════════
   11. CTA FINAL — Gradient glow section
   ══════════════════════════════════════════════ */
.cta-final { padding: 120px 0; position: relative; }
.cta-final::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.cta-final-inner {
  text-align: center;
  padding: 80px 40px; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 50% 0, rgba(253,133,0,.08), transparent 60%),
    var(--panel);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--stroke-accent);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
/* Glow line on top */
.cta-final-inner::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.6), rgba(255,209,128,.4), transparent);
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px); font-weight: 700;
  margin-bottom: 16px; line-height: 1.1; letter-spacing: -2px;
  color: var(--warm-white);
}
.cta-final h2 .accent { -webkit-text-fill-color: var(--accent); }
.cta-final p { color: var(--text-55); font-size: 16px; margin-bottom: 32px; }

/* Cal.com embed */
.cal-embed-wrapper {
  max-width: 680px; margin: 0 auto 32px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.3);
}

.cta-dual {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.cta-or { color: var(--text-38); font-size: 13px; font-weight: 500; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 12px; color: var(--text-38);
}

/* ══════════════════════════════════════════════
   12. FOOTER
   ══════════════════════════════════════════════ */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--stroke); }
.footer-grid {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.footer-brand .nav-logo { margin-bottom: 8px; display: block; }
.footer-role { font-size: 12px; color: var(--text-38); line-height: 1.5; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: var(--text-55); transition: color .15s ease; }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--panel); border: 1px solid var(--stroke);
  display: grid; place-items: center;
  color: var(--text-38); transition: all .3s cubic-bezier(.25,.46,.45,.94);
}
.footer-social a:hover {
  color: var(--warm-white); border-color: var(--stroke-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(253,133,0,.1);
}
.footer-bottom { text-align: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--stroke); }
.footer-bottom p { font-size: 11px; color: var(--text-25); }

/* ══════════════════════════════════════════════
   12b. LEAD MAGNET — Brand Score Quiz
   ══════════════════════════════════════════════ */
.brand-score { padding: 100px 0; position: relative; }
.brand-score::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.25), transparent);
}
.brand-score-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 56px 48px;
  background: var(--panel);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--stroke-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.brand-score-inner::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253,133,0,.5), transparent);
}
.brand-score-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--accent); background: rgba(253,133,0,.08);
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid rgba(253,133,0,.15);
  margin-bottom: 16px;
}
.brand-score-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 12px; color: var(--warm-white);
}
.brand-score-content p { color: var(--text-55); font-size: 15px; line-height: 1.6; }

/* Quiz steps */
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-progress {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 12px; display: block;
}
.quiz-question {
  font-size: 15px; font-weight: 600; color: var(--warm-white);
  margin-bottom: 16px; line-height: 1.4;
}
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-option {
  padding: 12px 18px; border-radius: var(--radius-sm);
  background: rgba(250,245,240,.04);
  border: 1px solid var(--stroke);
  color: var(--text-55); font-size: 13px; font-weight: 500;
  text-align: left;
  transition: all .2s ease; cursor: pointer;
}
.quiz-option:hover {
  background: rgba(253,133,0,.08);
  border-color: var(--accent);
  color: var(--warm-white);
}
.quiz-option.selected {
  background: rgba(253,133,0,.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* Quiz result */
.quiz-result { text-align: center; }
.quiz-score-circle {
  display: inline-flex; align-items: baseline; gap: 2px;
  margin-bottom: 16px;
}
.quiz-score-num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.quiz-score-label {
  font-size: 24px; font-weight: 700; color: var(--text-38);
}
.quiz-verdict {
  font-size: 14px; color: var(--text-55); margin-bottom: 24px; line-height: 1.5;
}

/* ── Quiz email capture ── */
.quiz-email-step { text-align: center; }
.quiz-email-form {
  display: flex; gap: 8px; max-width: 420px; margin: 16px auto 12px;
}
.quiz-email-input {
  flex: 1; padding: 12px 16px;
  background: rgba(250,245,240,.06); border: 1px solid var(--stroke);
  border-radius: var(--radius-sm); color: var(--text); font-size: 14px;
  font-family: var(--font-body); transition: border-color .2s ease;
}
.quiz-email-input::placeholder { color: var(--text-38); }
.quiz-email-input:focus { border-color: var(--accent); outline: none; }
.quiz-skip-email {
  display: block; margin: 0 auto; padding: 8px 16px;
  font-size: 12px; color: var(--text-38); cursor: pointer;
  transition: color .15s ease; background: none; border: none;
}
.quiz-skip-email:hover { color: var(--text-55); }
.quiz-reco {
  font-size: 13px; color: var(--accent); font-weight: 600;
  margin-bottom: 20px;
}

/* ── Cal.com fallback ── */
.cal-fallback {
  text-align: center; font-size: 12px; color: var(--text-25);
  margin-top: 12px;
}
.cal-fallback a { color: var(--accent); text-decoration: underline; }
.cal-fallback a:hover { color: var(--accent-glow); }

/* ── Pricing guarantee ── */
.pricing-guarantee {
  color: var(--accent); font-weight: 700; font-size: 14px;
  display: inline-block; margin-top: 4px;
}

/* ── Footer legal ── */
.footer-legal {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-top: 8px; font-size: 11px;
}
.footer-legal a { color: var(--text-38); transition: color .15s ease; }
.footer-legal a:hover { color: var(--accent); }
.footer-legal-sep { color: var(--text-25); }

/* ══════════════════════════════════════════════
   13. STICKY MOBILE CTA
   ══════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  align-items: center; gap: 6px;
  padding: 12px 20px; border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #fff; font-weight: 700; font-size: 13px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 20px rgba(253,133,0,.35);
  transition: all .15s ease;
}
.sticky-cta:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .nav { width: 95%; }
  .hero-inner { gap: 32px; }
  .hero-visual { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .process-line-bg, .process-line-fill, .process-dot { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-photo { max-width: 400px; margin: 0 auto; }
  .about-text .section-title { text-align: center; }
  .about-stats { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card,
  .testimonials-grid .testimonial-card:nth-child(4),
  .testimonials-grid .testimonial-card:nth-child(5) { grid-column: auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid .project-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .project-card.project-wide { grid-column: 1 / -1; aspect-ratio: 21/9; }
  .brand-score-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  /* Tablet: show overlay always (no hover on touch) */
  .project-overlay { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.7) 100%); padding: 16px; }
  .project-overlay h3 { font-size: 15px; transform: none; }
  .project-overlay .project-cat { font-size: 11px; }
  .project-link-text { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav { top: 8px; width: 95%; padding: 4px; border-radius: 20px; }
  .nav-inner { height: 48px; padding: 0 14px; }
  .nav-links {
    display: none; position: fixed;
    top: calc(var(--nav-h) + 16px); left: 0; right: 0; bottom: 0;
    background: rgba(1,1,1,.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; padding: 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; color: var(--warm-white); background: none; -webkit-text-fill-color: var(--warm-white); }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links-cta { display: list-item; margin-top: 8px; }
  .nav-links-cta .btn { font-size: 16px; padding: 14px 28px; }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Touch targets — minimum 44px (WCAG 2.5.5) */
  .btn { min-height: 44px; }
  .quiz-option { min-height: 44px; }
  .nav-burger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .footer-social a { width: 44px; height: 44px; }
  .faq-question { min-height: 44px; }

  .hero { padding: calc(var(--nav-h) + 32px) 20px 40px; min-height: auto; }
  .hero-title { font-size: 28px; letter-spacing: -1px; }
  .hero-visual { max-width: 100%; max-height: 180px; border-radius: var(--radius); overflow: hidden; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .logos-marquee { display: none; }
  .logos-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; padding: 0 24px; align-items: center; justify-items: center;
  }
  .logos-grid .logo-client { height: 20px; }
  .logos-grid .logo-featured { height: 24px; }

  .social-proof-inner { gap: 16px; }
  .proof-divider { display: none; }
  .proof-item { flex-direction: column; gap: 2px; text-align: center; }

  .services { padding: 64px 0; }
  .portfolio { padding: 64px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .project-card:first-child { grid-column: auto; aspect-ratio: 16/10; }
  .project-card.project-wide { grid-column: auto; aspect-ratio: 16/10; }
  .testimonials { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .faq { padding: 64px 0; }
  .brand-score { padding: 64px 0; }
  .brand-score-inner { padding: 32px 20px; gap: 24px; }
  .cta-final { padding: 64px 0; }
  .cta-final-inner { padding: 48px 24px; }
  .cal-embed-wrapper iframe { height: 500px; }
  .process-line-bg, .process-line-fill { display: none; }
  .process-dot { display: none; }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-contact { align-items: center; }
  .sticky-cta { display: inline-flex; }
}

@media (max-width: 480px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats {
    flex-direction: row; flex-wrap: wrap; gap: 24px;
    justify-content: center; text-align: center;
  }
  .stat { align-items: center; min-width: 80px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 11px; }
}

/* ── Project service link (maillage interne) ── */
.project-service-link {
  text-align: center;
  padding: 32px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(250,245,240,.06);
}
.project-service-link p {
  color: rgba(250,245,240,.55);
  font-size: 15px;
}
.project-service-link a {
  color: #fd8500;
  font-weight: 600;
  text-decoration: none;
}
.project-service-link a:hover {
  text-decoration: underline;
}
