/* ==========================================================================
   Korya — design tokens & base styles
   ========================================================================== */

:root {
  /* Couleurs */
  --bg: #FAFAF7;
  --bg-white: #FFFFFF;
  --bg-rose: #FCF2ED;
  --text-title: #1A1815;
  --text-body-dark: #3A362F;
  --text-body-mid: #514D46;
  --text-body-muted: #6B665E;
  --text-tertiary: #8A857C;

  --accent: #E8481C;
  --accent-light: #FF6B3D;
  --accent-gradient: linear-gradient(135deg, #E8481C, #FF6B3D);
  --accent-badge-bg: #FBEBE4;

  --dark-bg: #131010;
  --dark-card: #1B1715;
  --dark-card-alt: #141110;
  --text-on-dark: #F3EEE7;
  --text-on-dark-body: #B6AEA4;
  --text-on-dark-body-2: #948C82;
  --text-on-dark-tertiary: #7E766C;

  --border-light: rgba(0, 0, 0, 0.08);
  --border-light-strong: rgba(0, 0, 0, 0.12);
  --border-light-soft: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(255, 255, 255, 0.09);
  --border-dark-strong: rgba(255, 255, 255, 0.22);

  --google-blue: #4285F4;
  --google-red: #EA4335;
  --google-yellow: #FBBC05;
  --google-green: #34A853;

  --font-title: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;

  --container-max: 1200px;
  --radius-pill: 100px;
  --radius-card: 18px;
  --shadow-btn: 0 10px 30px rgba(232, 72, 28, 0.3);
  --shadow-card: 0 20px 50px -30px rgba(26, 24, 21, 0.35);
  --ease: .18s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html, body {
  /* clip (not hidden/auto) — hidden forces overflow-y into a scroll container,
     which breaks position:sticky on the header. clip has no such side effect. */
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-title);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  margin: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow--dark { color: var(--accent-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  transition: transform .18s, border-color .18s, background .18s, box-shadow .18s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  padding: 16px 32px;
  font-size: 16.5px;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

.btn-primary--small {
  padding: 15px 30px;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(232, 72, 28, 0.28);
}

.btn-ghost {
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light-strong);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text-title);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--bg-rose);
  color: var(--text-title);
}

.btn-white {
  background: #fff;
  border: 1px solid var(--border-light-strong);
  color: var(--text-title);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.btn-solid-accent {
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  transition: transform .18s;
}
.btn-solid-accent:hover { transform: translateY(-2px) scale(1.02); color: #fff; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 20px;
}

.site-header__pill {
  max-width: 1080px;
  margin: 0 auto;
  padding: 11px 14px 11px 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 34px -14px rgba(26, 24, 21, 0.28);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text-title);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body-mid);
  justify-self: center;
}

.site-header__nav a { transition: color .18s; }
.site-header__nav a:hover { color: var(--accent); }

.site-header__cta {
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .18s;
  justify-self: end;
  display: inline-block;
}
.site-header__cta:hover { transform: translateY(-2px) scale(1.02); color: #fff; }

.site-header__nav-toggle {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.site-header__nav-toggle svg { width: 18px; height: 18px; color: var(--text-title); }

.site-header__mobile-nav {
  display: none;
}

/* ---- Footer ---- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 34px 32px;
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text-title);
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F4F2EE;
  transition: background .18s;
}
.site-footer__social:hover { background: var(--accent); }
.site-footer__social:hover svg { color: #fff; }
.site-footer__social svg { color: var(--text-body-mid); transition: color .18s; }

.site-footer__nav {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body-mid);
  flex-wrap: wrap;
}
.site-footer__nav a { color: var(--text-body-mid); }
.site-footer__nav a:hover { color: var(--accent); }

.site-footer__legal {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}
.site-footer__legal a { color: var(--text-tertiary); }
.site-footer__legal a:hover { color: var(--accent); }

.site-footer__tagline {
  font-size: 14.5px;
  color: var(--text-body-mid);
}
.site-footer__tagline strong { font-family: var(--font-title); color: var(--text-title); }

/* ---- Reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .4s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.float-up { animation: floatUp .6s ease both; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Homepage
   ========================================================================== */

.hero {
  padding: 76px 32px 8px;
}
.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body-mid);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(232, 72, 28, 0.6);
}
.hero h1 {
  font-weight: 700;
  font-size: 66px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-body-mid);
  max-width: 600px;
  margin: 0 auto 34px;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__google {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 4px;
}
.hero__google-word {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.hero__google-word span:nth-child(1) { color: var(--google-blue); }
.hero__google-word span:nth-child(2) { color: var(--google-red); }
.hero__google-word span:nth-child(3) { color: var(--google-yellow); }
.hero__google-word span:nth-child(4) { color: var(--google-blue); }
.hero__google-word span:nth-child(5) { color: var(--google-green); }
.hero__google-word span:nth-child(6) { color: var(--google-red); }
.hero__google-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.hero__google-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.hero__google-label { font-size: 12px; color: var(--text-tertiary); font-weight: 500; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body-dark);
}

/* ---- Marquee ---- */
.marquee-section {
  padding: 44px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light-soft);
}
.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: marquee 44s linear infinite;
}
.site-shot {
  width: 440px;
  flex: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  background: #fff;
}
.site-shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-light-soft);
  background: #FBFBF9;
}
.site-shot__dot { width: 10px; height: 10px; border-radius: 50%; }
.site-shot__url {
  margin-left: 12px;
  font-size: 11.5px;
  color: #A9A399;
  font-family: ui-monospace, Menlo, monospace;
}
.site-shot__frame { aspect-ratio: 2/1; overflow: hidden; }
.site-shot__frame img { width: 100%; height: 100%; object-fit: cover; }

.site-shot--future {
  width: 440px;
  flex: none;
  border-radius: 16px;
  overflow: hidden;
  border: 2px dashed rgba(232, 72, 28, 0.5);
  background: var(--bg-rose);
  display: flex;
  flex-direction: column;
}
.site-shot--future .site-shot__bar { border-bottom: 1px solid rgba(232, 72, 28, 0.18); }
.site-shot--future .site-shot__url { color: var(--accent); }
.site-shot--future__body {
  aspect-ratio: 2/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.site-shot--future__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
}
.site-shot--future__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent);
}

/* ---- Problème ---- */
.section-problem {
  padding: 88px 32px;
  background: #fff;
  border-bottom: 1px solid var(--border-light-soft);
}
.section-problem__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.section-problem h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-problem > .section-problem__inner > p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-body-mid);
  margin: 0 0 44px;
  text-wrap: pretty;
}
.symptoms {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 40px;
}
.symptom {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border-light-soft);
  border-radius: 14px;
}
.symptom__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.symptom p { font-size: 16.5px; line-height: 1.5; color: var(--text-body-dark); margin: 0; }
.section-problem__conclusion {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-title);
  margin: 0;
  font-weight: 500;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.section-problem__conclusion .accent { color: var(--accent); }

/* ---- Offre ---- */
.section-offer { padding: 92px 0; }
.section-heading {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-heading h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-heading p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-body-mid);
  margin: 0;
  text-wrap: pretty;
}

.offer-card {
  max-width: 960px;
  margin: 0 auto 30px;
  background: #fff;
  border: 1px solid var(--border-light-strong);
  border-radius: 22px;
  box-shadow: 0 24px 60px -34px rgba(26, 24, 21, 0.24);
  overflow: hidden;
}
.offer-card__body {
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.offer-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  background: var(--accent-badge-bg);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.offer-card__body h3 {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.offer-card__body > div:first-child > p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-body-mid);
  margin: 0;
}
.offer-card__included-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.included-list { display: flex; flex-direction: column; gap: 11px; }
.included-list__item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.included-list__icon {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.included-list__item span:last-child { font-size: 15px; line-height: 1.45; color: var(--text-body-dark); }

.offer-card__footer {
  padding: 22px 44px;
  background: var(--bg);
  border-top: 1px solid var(--border-light-soft);
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.offer-card__footer p { font-size: 14.5px; line-height: 1.55; color: var(--text-body-mid); margin: 0; }

.offer-plus {
  display: flex;
  justify-content: center;
  margin: -4px 0 4px;
}
.offer-plus span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-light-strong);
  box-shadow: 0 6px 16px -6px rgba(26, 24, 21, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.offer-briques-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body-muted);
  max-width: 640px;
  margin: 16px auto 26px;
}
.offer-briques-intro strong { font-weight: 600; color: var(--text-title); }

.briques-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light-soft);
  border: 1px solid var(--border-light-soft);
  border-radius: 16px;
  overflow: hidden;
}
.brique {
  background: #fff;
  padding: 30px 30px;
  transition: background .2s, transform .2s;
}
.brique:hover { background: #FCFBF9; transform: translateY(-3px); }
.brique__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}
.brique__dot { width: 9px; height: 9px; border-radius: 3px; background: var(--accent); }
.brique h4 { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin: 0; }
.brique p { font-size: 15.5px; line-height: 1.55; color: var(--text-body-muted); margin: 0; }

.section-offer__cta { text-align: center; margin-top: 44px; }
.section-offer__cta-note { font-size: 13.5px; color: var(--text-tertiary); margin: 14px 0 0; }

/* ---- Process (dark band) ---- */
.section-process {
  padding: 92px 32px;
  background: var(--dark-bg);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.section-process::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 640px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 107, 61, 0.18), rgba(255, 236, 220, 0.05) 55%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}
.section-process__inner { max-width: 840px; margin: 0 auto; position: relative; }
.section-process__head { margin-bottom: 52px; }
.section-process__head h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-process__head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-on-dark-body);
  margin: 0;
  max-width: 560px;
}
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding-bottom: 34px; }
.step__rail { display: flex; flex-direction: column; align-items: center; }
.step__num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 72, 28, 0.16);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
}
.step__line { width: 1.5px; flex: 1; background: rgba(255, 255, 255, 0.1); margin-top: 8px; }
.step:last-child .step__line { display: none; }
.step__body { padding-top: 4px; }
.step__body h3 { font-weight: 600; font-size: 21px; letter-spacing: -0.01em; margin: 0 0 7px; }
.step__body p { font-size: 16px; line-height: 1.55; color: var(--text-on-dark-body-2); margin: 0; max-width: 600px; }
.section-process__cta { text-align: center; margin-top: 12px; }
.section-process__cta a { font-family: var(--font-title); font-weight: 600; font-size: 19px; color: var(--accent-light); }

/* ---- Réalisations ---- */
.section-work { padding: 92px 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.work-card:hover {
  box-shadow: 0 16px 40px -20px rgba(26, 24, 21, 0.28);
  transform: translateY(-4px);
  color: inherit;
}
.work-card__img { aspect-ratio: 2/1; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; }
.work-card__body {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.work-card__body h3 { font-weight: 600; font-size: 19px; margin: 0 0 4px; }
.work-card__meta { font-size: 14.5px; color: var(--text-tertiary); }
.work-card__link { font-size: 14.5px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.work-card--odd { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: calc(50% - 12px); }

.section-work__cta { text-align: center; margin-top: 44px; }

/* ---- Preuves sociales ---- */
.section-proof { padding: 88px 0; background: var(--bg-rose); }
.section-proof__head { text-align: center; margin-bottom: 48px; }
.section-proof__head h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.section-proof__head p { font-size: 18px; line-height: 1.55; color: var(--text-body-mid); margin: 0 0 24px; }
.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  background: #fff;
  border: 1px solid var(--border-light-strong);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.google-pill__brand { font-family: var(--font-title); font-weight: 700; font-size: 15px; color: var(--text-title); }
.google-pill__stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.google-pill__score { font-size: 14.5px; font-weight: 600; color: var(--text-body-dark); }
.google-pill__more { font-size: 14px; color: var(--text-tertiary); }

.proof-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; align-items: start; }
.proof-featured {
  background: #fff;
  border: 1px solid var(--border-light-soft);
  border-radius: 18px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.proof-featured__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.proof-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.proof-featured__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-featured__quote {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-body-dark);
  margin: 0 0 26px;
  white-space: pre-line;
  flex: 1;
}
.proof-person {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--border-light-soft);
  padding-top: 22px;
}
.avatar {
  flex: none;
  border-radius: 50%;
  background-color: var(--accent-badge-bg);
  background-size: cover;
  background-position: center;
}
.avatar--lg { width: 48px; height: 48px; }
.avatar--md { width: 44px; height: 44px; }
.avatar--sm { width: 40px; height: 40px; }
.proof-person__name { font-weight: 600; font-size: 15.5px; }
.proof-person__role { font-size: 13.5px; color: var(--text-tertiary); }

.testimonials-stack { display: flex; flex-direction: column; gap: 24px; }
.testimonial {
  background: #fff;
  border: 1px solid var(--border-light-soft);
  border-radius: 16px;
  padding: 26px 26px;
}
.testimonial .proof-stars { font-size: 14px; margin-bottom: 12px; display: block; }
.testimonial p.quote { font-size: 15.5px; line-height: 1.6; color: var(--text-body-dark); margin: 0 0 18px; }
.testimonial .proof-person { border: none; padding: 0; gap: 12px; }
.testimonial .proof-person__name { font-size: 14.5px; }
.testimonial .proof-person__role { font-size: 13px; }

.section-proof__cta { text-align: center; margin-top: 44px; }

/* ---- FAQ ---- */
.section-faq { padding: 88px 0; }
.section-faq__wrap { max-width: 820px; margin: 0 auto; }
.section-faq__head { text-align: center; margin-bottom: 48px; }
.section-faq__head h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.faq-list { border-top: 1px solid var(--border-light-strong); }
.faq-item { border-bottom: 1px solid var(--border-light-strong); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-title);
}
.faq-item__icon {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .25s ease;
}
.faq-item.is-open .faq-item__a { max-height: 600px; opacity: 1; }
.faq-item__a p { font-size: 16px; line-height: 1.6; color: var(--text-body-mid); margin: 0; padding: 0 40px 26px 4px; }

/* ---- CTA final (dark) ---- */
.section-cta-final { padding: 60px 32px 96px; background: var(--dark-bg); }
.cta-box {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 26px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 72, 28, 0.28);
  background: linear-gradient(180deg, var(--dark-card), var(--dark-card-alt));
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 107, 61, 0.32), rgba(255, 236, 220, 0.08) 55%, transparent 72%);
  filter: blur(10px);
}
.cta-box__content { position: relative; }
.cta-box h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin: 0 0 18px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.cta-box p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-on-dark-body);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-box__cal {
  max-width: 900px;
  margin: 8px auto 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.cta-box__cal iframe { width: 100%; height: 720px; border: 0; display: block; }
.cta-box__email { font-size: 14.5px; color: var(--text-on-dark-body); margin: 24px 0 0; }
.cta-box__email a { color: var(--text-on-dark); font-weight: 600; text-decoration: underline; }
.cta-box__note { font-size: 13px; color: var(--text-on-dark-tertiary); margin: 6px 0 22px; }
.cta-box__pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cta-box__pill {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: #D8D1C7;
}

/* Simpler dark CTA (project pages) */
.cta-box--simple { padding: 70px 40px; max-width: 1000px; }
.cta-box--simple::before {
  width: 520px;
  height: 340px;
  background: radial-gradient(circle, rgba(232, 72, 28, 0.4), transparent 68%);
  filter: blur(32px);
}
.cta-box--simple h2 { font-size: 42px; line-height: 1.06; letter-spacing: -0.03em; max-width: 640px; margin-bottom: 16px; }
.cta-box--simple p.lead { font-size: 18px; max-width: 520px; margin-bottom: 32px; }

/* ==========================================================================
   Project pages (étude de cas)
   ========================================================================== */

.breadcrumb-wrap { max-width: 1000px; margin: 0 auto; padding: 28px 32px 0; }
.breadcrumb-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--text-tertiary); }
.breadcrumb-back:hover { color: var(--accent); }

.project-hero { padding: 32px 32px 44px; }
.project-hero__inner { max-width: 1000px; margin: 0 auto; }
.project-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.project-tag {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.project-tag--accent { background: var(--accent-badge-bg); color: var(--accent); }
.project-tag--plain { background: #fff; border: 1px solid var(--border-light); font-weight: 500; color: var(--text-body-mid); }
.project-hero h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.project-hero p.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-body-mid);
  max-width: 640px;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.project-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.project-shot-section { padding: 0 32px 56px; }
.project-shot { max-width: 1000px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 30px 80px -34px rgba(26, 24, 21, 0.3); }
.project-shot__bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  border-bottom: 1px solid var(--border-light-soft); background: #FBFBF9;
}
.project-shot__dot { width: 11px; height: 11px; border-radius: 50%; }
.project-shot__url { margin-left: 12px; font-size: 12px; color: #A9A399; font-family: ui-monospace, Menlo, monospace; }
.project-shot__frame { aspect-ratio: 2/1; overflow: hidden; }
.project-shot__frame img { width: 100%; height: 100%; object-fit: cover; }

.project-context { padding: 20px 32px 64px; }
.project-context__inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.project-context p { font-size: 17px; line-height: 1.65; color: var(--text-body-mid); margin: 0 0 14px; text-wrap: pretty; }
.project-context p:last-child { margin-bottom: 0; }
.project-context h2 { font-weight: 700; font-size: 30px; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 16px; }
.info-card { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 26px 28px; }
.info-card__list { display: flex; flex-direction: column; gap: 16px; }
.info-card__divider { height: 1px; background: var(--border-light-soft); }
.info-card__label { font-size: 12.5px; font-weight: 600; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.info-card__value { font-size: 16px; font-weight: 500; }

.project-band { padding: 64px 32px; background: #fff; border-top: 1px solid var(--border-light-soft); border-bottom: 1px solid var(--border-light-soft); }
.project-band__inner { max-width: 1000px; margin: 0 auto; }
.project-band h2 { font-weight: 700; font-size: 32px; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 32px; max-width: 640px; text-wrap: balance; }
.project-band p.intro { font-size: 17px; line-height: 1.6; color: var(--text-body-muted); margin: 0 0 28px; max-width: 640px; }

.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.before-after__col-label {
  display: inline-block; padding: 6px 13px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}
.before-after__col-label--before { background: var(--bg); border: 1px solid var(--border-light); color: var(--text-tertiary); }
.before-after__col-label--after { background: var(--accent-badge-bg); border: 1px solid rgba(232, 72, 28, 0.2); color: var(--accent); }
.before-after__img { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light); }
.before-after__img img { width: 100%; height: auto; display: block; }

.before-after-table { border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; }
.ba-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; }
.ba-row--head { background: var(--bg); font-size: 13px; font-weight: 600; color: var(--text-body-mid); text-transform: uppercase; letter-spacing: 0.03em; }
.ba-row:not(.ba-row--head) { border-top: 1px solid var(--border-light-soft); font-size: 15.5px; }
.ba-row > div { padding: 14px 20px; }
.ba-row:not(.ba-row--head) > div:first-child { font-weight: 500; color: var(--text-title); padding-top: 16px; padding-bottom: 16px; }
.ba-row:not(.ba-row--head) > div:nth-child(2) { color: var(--text-tertiary); }
.ba-row:not(.ba-row--head) > div:nth-child(3) { color: var(--text-title); font-weight: 600; }
.ba-row--head > div:last-child { color: var(--accent); }
.before-after-note { font-size: 15.5px; color: var(--text-tertiary); margin: 18px 0 0; }

.solution-grid { display: grid; gap: 1px; background: var(--border-light-soft); border: 1px solid var(--border-light-soft); border-radius: 16px; overflow: hidden; }
.solution-grid--2 { grid-template-columns: repeat(2, 1fr); }
.solution-grid--3 { grid-template-columns: repeat(3, 1fr); }
.solution-point { background: #fff; padding: 28px 26px; }
.solution-point__n { font-family: var(--font-title); font-weight: 600; font-size: 14px; color: #C9C2B6; margin-bottom: 14px; }
.solution-point h3 { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin: 0 0 8px; }
.solution-point p { font-size: 15.5px; line-height: 1.55; color: var(--text-body-muted); margin: 0; }

.seo-chart { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light); }
.seo-chart img { width: 100%; height: auto; display: block; }

.project-results { padding: 72px 32px; background: var(--dark-bg); color: var(--text-on-dark); position: relative; overflow: hidden; }
.project-results::before {
  content: ""; position: absolute; top: -20%; right: -5%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 72, 28, 0.16), transparent 60%); pointer-events: none;
}
.project-results__inner { max-width: 1000px; margin: 0 auto; position: relative; }
.project-results h2 { font-weight: 700; font-size: 32px; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 12px; max-width: 640px; text-wrap: balance; }
.project-results p.intro { font-size: 17px; line-height: 1.6; color: var(--text-on-dark-body); margin: 0 0 40px; max-width: 560px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card { background: var(--dark-card); border: 1px solid var(--border-dark); border-radius: 16px; padding: 30px 28px; }
.result-card__value { font-family: var(--font-title); font-weight: 700; font-size: 46px; line-height: 1; letter-spacing: -0.02em; color: var(--accent-light); margin-bottom: 12px; }
.result-card__label { font-size: 15.5px; line-height: 1.5; color: #D8D1C7; }

.delivered-list, .lessons-list { display: flex; flex-direction: column; gap: 12px; }
.lessons-list { gap: 14px; }
.delivered-item, .lesson-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px;
  background: var(--bg); border: 1px solid var(--border-light-soft); border-radius: 14px;
}
.lesson-item { gap: 16px; padding: 20px 22px; }
.delivered-item__icon, .lesson-item__icon {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; line-height: 1;
}
.lesson-item__icon { width: 26px; height: 26px; font-size: 13px; }
.delivered-item p, .lesson-item p { font-size: 16px; line-height: 1.5; color: var(--text-body-dark); margin: 0; }
.lesson-item p { line-height: 1.55; }

.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.gallery-item { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light); }
.gallery-item img { width: 100%; height: auto; display: block; }

.project-testimonial { padding: 64px 32px; background: var(--bg-rose); }
.project-testimonial__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.project-testimonial .proof-stars { display: block; font-size: 16px; margin-bottom: 20px; }
.project-testimonial__quote {
  font-family: var(--font-title); font-weight: 500; font-size: 26px; line-height: 1.4;
  letter-spacing: -0.015em; margin: 0 0 24px; text-wrap: balance;
}
.project-testimonial__person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.project-testimonial__person .proof-person { text-align: left; }
.project-testimonial__pending { font-family: var(--font-title); font-weight: 500; font-size: 20px; line-height: 1.5; color: var(--text-tertiary); margin: 0; }
.avatar-initials {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-badge-bg); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 700; font-size: 16px;
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal-main { flex: 1; max-width: 820px; margin: 0 auto; padding: 56px 32px 88px; width: 100%; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--text-tertiary); margin-bottom: 28px; }
.legal-back:hover { color: var(--accent); }
.legal-main h1 { font-weight: 700; font-size: 46px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 12px; }
.legal-updated { font-size: 15px; color: var(--text-tertiary); margin: 0 0 28px; }
.legal-intro { font-size: 17px; line-height: 1.7; color: var(--text-body-dark); margin: 0 0 48px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-weight: 600; font-size: 22px; letter-spacing: -0.015em; margin: 0 0 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-light);
}
.legal-section h3 { font-weight: 600; font-size: 17px; margin: 20px 0 8px; }
.legal-section h3:first-of-type { margin-top: 0; }
.legal-section p { font-size: 16.5px; line-height: 1.7; color: var(--text-body-dark); margin: 0 0 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0 0 16px; padding-left: 22px; font-size: 16.5px; line-height: 1.7; color: var(--text-body-dark); }
.legal-section ul:last-child { margin-bottom: 0; }
.legal-section a { color: var(--accent); }
.legal-section a:hover { color: #c93c15; }
.legal-fields { display: flex; flex-direction: column; gap: 8px; font-size: 16.5px; line-height: 1.6; color: var(--text-body-dark); }

.legal-table { border: 1px solid var(--border-light-strong); border-radius: 14px; overflow: hidden; margin-top: 4px; }
.lt-row { display: grid; grid-template-columns: 1.1fr 1.7fr 0.7fr; }
.lt-row--head { background: #F4F2EE; font-size: 13px; font-weight: 600; color: var(--text-body-mid); text-transform: uppercase; letter-spacing: 0.03em; }
.lt-row:not(.lt-row--head) { font-size: 15.5px; color: var(--text-body-dark); border-top: 1px solid var(--border-light-soft); }
.lt-row:nth-child(even):not(.lt-row--head) { background: #FCFBF9; }
.lt-row > div { padding: 13px 16px; }
.lt-row:not(.lt-row--head) > div { padding: 15px 16px; }
.lt-row:not(.lt-row--head) > div:first-child { font-weight: 500; }
.legal-table-note { font-size: 14.5px; line-height: 1.6; color: var(--text-tertiary); margin: 14px 0 0; }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 360px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--border-light-strong);
  border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(26, 24, 21, 0.35);
  padding: 22px 24px 20px;
  transform-origin: bottom right;
  transform: translateY(16px) scale(.96);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,.9,.32,1), opacity .3s ease;
}
.cookie-banner.is-visible { transform: translateY(0) scale(1); opacity: 1; }
.cookie-banner__icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--accent-badge-bg);
  color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 19px;
}
.cookie-banner h2 { font-family: var(--font-title); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 8px; }
.cookie-banner p { font-size: 14.5px; line-height: 1.55; color: var(--text-body-mid); margin: 0 0 20px; }
.cookie-banner p a { color: var(--accent); font-weight: 600; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-btn {
  flex: 1;
  min-width: 120px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  transition: transform .18s, background .18s, border-color .18s;
  text-align: center;
}
.cookie-btn--primary { background: var(--accent-gradient); color: #fff; box-shadow: 0 8px 20px rgba(232, 72, 28, 0.28); }
.cookie-btn--primary:hover { transform: translateY(-1px); }
.cookie-btn--ghost { background: #fff; border: 1px solid var(--border-light-strong); color: var(--text-title); flex: none; }
.cookie-btn--ghost:hover { border-color: var(--accent); background: var(--bg-rose); }
.cookie-btn--text {
  flex: none; background: none; border: none; color: var(--text-tertiary); font-weight: 500;
  font-size: 13.5px; text-decoration: underline; cursor: pointer; padding: 12px 4px;
}
.cookie-btn--text:hover { color: var(--accent); }

/* Preferences modal */
.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 210; background: rgba(19, 16, 16, 0.55);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.cookie-modal-overlay.is-visible { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff; border-radius: 22px; max-width: 560px; width: 100%; max-height: 86vh;
  overflow-y: auto; padding: 32px 32px 28px; box-shadow: 0 40px 100px -20px rgba(0,0,0,.5);
  transform: translateY(12px); transition: transform .25s ease;
}
.cookie-modal-overlay.is-visible .cookie-modal { transform: translateY(0); }
.cookie-modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.cookie-modal h2 { font-family: var(--font-title); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; margin: 0; }
.cookie-modal__close {
  flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-light);
  background: #fff; color: var(--text-tertiary); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.cookie-modal__close:hover { background: var(--bg-rose); color: var(--accent); border-color: var(--accent); }
.cookie-modal > p { font-size: 14.5px; line-height: 1.6; color: var(--text-body-mid); margin: 0 0 24px; }
.cookie-cat { border-top: 1px solid var(--border-light-soft); padding: 18px 0; }
.cookie-cat:last-of-type { border-bottom: 1px solid var(--border-light-soft); }
.cookie-cat__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.cookie-cat__title { font-family: var(--font-title); font-weight: 600; font-size: 15.5px; }
.cookie-cat p { font-size: 13.5px; line-height: 1.55; color: var(--text-tertiary); margin: 0; }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__track {
  position: absolute; inset: 0; background: #DCD7CE; border-radius: 100px; cursor: pointer; transition: background .2s;
}
.switch__track::before {
  content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff;
  border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.switch input:checked + .switch__track { background: var(--accent); }
.switch input:checked + .switch__track::before { transform: translateX(18px); }
.switch input:disabled + .switch__track { background: #C9C2B6; cursor: not-allowed; opacity: .8; }

.cookie-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .offer-card__body,
  .project-context__inner,
  .before-after,
  .proof-grid,
  .briques-grid,
  .solution-grid--2,
  .solution-grid--3,
  .work-grid,
  .gallery-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }
  .work-card--odd { max-width: 100%; }
  .cta-box__cal iframe { height: 620px; }
}

@media (max-width: 720px) {
  .btn { white-space: normal; text-align: center; }
  .site-header { padding: 12px 14px; }
  .site-header__pill {
    grid-template-columns: 1fr auto auto;
    padding: 9px 10px 9px 18px;
  }
  .site-header__nav { display: none; }
  .site-header__nav-toggle { display: flex; }
  .site-header__mobile-nav {
    display: block;
    max-width: 1080px;
    margin: 8px auto 0;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 10px 34px -14px rgba(26, 24, 21, 0.28);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .site-header__mobile-nav.is-open { max-height: 320px; opacity: 1; }
  .site-header__mobile-nav a {
    display: block;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body-dark);
    border-top: 1px solid var(--border-light-soft);
  }
  .site-header__mobile-nav a:first-child { border-top: none; }
  .site-header__mobile-nav a:hover { color: var(--accent); }
  .hero h1 { font-size: 40px; }
  .hero p.lead { font-size: 17px; }
  .section-problem h2, .section-heading h2, .section-process__head h2,
  .cta-box h2, .section-proof__head h2, .section-faq__head h2 { font-size: 30px; }
  .project-hero h1 { font-size: 36px; }
  .cta-box { padding: 48px 24px; }
  .cta-box--simple { padding: 44px 22px; }
  .cta-box__cal iframe { height: 560px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .marquee-track { animation-duration: 28s; }
  .cookie-banner {
    right: 10px; bottom: 10px; left: 10px; width: auto; max-width: none;
    padding: 14px 16px 12px;
  }
  .cookie-banner__icon { display: none; }
  .cookie-banner h2 { font-size: 15px; margin: 0 0 4px; }
  .cookie-banner p { font-size: 12.5px; line-height: 1.4; margin: 0 0 10px; }
  .cookie-banner__actions { gap: 8px; }
  .cookie-btn { min-width: 0; padding: 9px 10px; font-size: 12.5px; }
  .cookie-btn--text { padding: 8px 4px; font-size: 12px; }
}

/* Data tables (before/after, cookies) become stacked cards below 600px —
   a 3-col grid gets too cramped on narrow phones. */
@media (max-width: 600px) {
  .ba-row--head, .lt-row--head { display: none; }
  .ba-row, .lt-row {
    grid-template-columns: 1fr;
    padding: 14px 16px;
    gap: 4px;
  }
  .ba-row > div, .lt-row > div { padding: 2px 0 !important; }
  .ba-row > div::before, .lt-row > div::before {
    content: attr(data-label);
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .ba-row > div:first-child, .lt-row > div:first-child { font-weight: 600 !important; }
}
