/* ============================================================
   TOKENS — source unique de vérité, zéro valeur codée en dur
   ============================================================ */
:root {
  /* Couleurs */
  --color-bg:             #FFFFFF;
  --color-surface:        #F9FAFB;
  --color-border:         #E5E7EB;
  --color-text-primary:   #0D0D0D;
  --color-text-secondary: #6B7280;
  --color-text-muted:     #9CA3AF;
  --color-accent:         #059669;
  --color-accent-hover:   #10B981;
  --color-accent-light:   #ECFDF5;
  --color-accent-text:    #065F46;

  /* Typographie */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Échelle fluide */
  --text-sm:   clamp(0.875rem, 1vw,   0.875rem);
  --text-base: clamp(1rem,     1.2vw, 1rem);
  --text-lg:   clamp(1.125rem, 1.5vw, 1.25rem);
  --text-xl:   clamp(1.25rem,  2vw,   1.5rem);
  --text-2xl:  clamp(1.5rem,   2.5vw, 2rem);
  --text-3xl:  clamp(1.875rem, 3vw,   2.5rem);
  --text-hero: clamp(2rem,     5vw,   3.5rem);

  /* Espacements */
  --section-py:    clamp(64px, 10vw, 120px);
  --section-px:    clamp(20px, 5vw,  80px);
  --container-max: 1200px;

  /* Effets */
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --shadow-card:      0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover:0 8px 40px rgba(0,0,0,0.10);
  --transition:       0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Hauteur de nav — pour calc() dans hero */
  --nav-height: 72px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a        { text-decoration: none; color: inherit; }
ul       { list-style: none; }

/* ============================================================
   UTILITAIRES PARTAGÉS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition:
    background-color var(--transition),
    box-shadow       var(--transition),
    transform        var(--transition);
}

.btn--accent {
  background-color: var(--color-accent);
  background-image: linear-gradient(var(--color-accent-hover), var(--color-accent-hover));
  background-size: 0% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 12px 20px;
  transition:
    background-size 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow      var(--transition),
    transform       var(--transition);
}

.btn--accent:hover {
  background-size: 100% 100%;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.30);
  transform: translateY(-1px);
}

.btn--accent:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.btn--lg {
  font-size: var(--text-base);
  padding: 16px 28px;
}

.btn--outline {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  padding: 12px 20px;
  background-color: transparent;
  background-image: linear-gradient(var(--color-accent-light), var(--color-accent-light));
  background-size: 0% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition:
    background-size 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform       var(--transition);
}

.btn--outline:hover {
  background-size: 100% 100%;
}

@keyframes badge-enter {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
  background-color: var(--color-accent-light);
  color: var(--color-accent-text);
  animation: badge-enter 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ============================================================
   CURSEUR PERSONNALISÉ
   ============================================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
  transition:
    width   0.3s cubic-bezier(0.16, 1, 0.3, 1),
    height  0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s ease;
}

.cursor--hover {
  width: 40px;
  height: 40px;
  opacity: 0.3 !important;
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: var(--color-bg);
  transition:
    border-bottom var(--transition),
    box-shadow    var(--transition);
}

.nav.scrolled {
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  flex-shrink: 0;
}

.nav__logo-k {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-text-primary);
  outline: none;
}

.nav__cta {
  margin-left: auto;
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-height) var(--section-px) var(--section-px);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav__overlay.is-open {
  transform: translateY(0);
  pointer-events: all;
}

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.nav__overlay-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--color-text-primary);
  transition: color var(--transition);
}

.nav__overlay-link:hover {
  color: var(--color-accent);
}

.nav__overlay-cta {
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top:    clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  padding-left:   var(--section-px);
  padding-right:  var(--section-px);
}

/* Motif de points subtil — casse le blanc total sans surcharger */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--color-border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__content .badge {
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-hero);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  text-wrap: balance;
  margin-bottom: 20px;
}

.hero__accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}

.hero__link:hover {
  text-decoration-color: var(--color-accent);
}

.hero__proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__proof li {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Word-by-word reveal */
@keyframes hero-word-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__word {
  display: inline-block;
  animation: hero-word-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ============================================================
   COMPARATEUR
   ============================================================ */
.hero__comparator-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparator {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: var(--color-surface);
  user-select: none;
  -webkit-user-select: none;
}

/* Chrome */
.comparator__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F3F4F6;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.comparator__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.comparator__dot--red    { background: #FC5F57; }
.comparator__dot--yellow { background: #FDBC2E; }
.comparator__dot--green  { background: #27C840; }

.comparator__url {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  background: #ffffff;
  border-radius: 4px;
  padding: 3px 10px;
  margin: 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Stage */
.comparator__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  outline: none;
  --handle-pos: 50%;
}

.comparator__stage:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent);
}

/* Before / After */
.comparator__after,
.comparator__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.comparator__before {
  clip-path: inset(0 calc(100% - var(--handle-pos)) 0 0);
  z-index: 2;
  will-change: clip-path;
}

/* Divider */
.comparator__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--handle-pos);
  width: 2px;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0,0,0,0.12);
  z-index: 3;
  pointer-events: none;
  will-change: left;
}

/* Handle */
.comparator__handle {
  position: absolute;
  top: 50%;
  left: var(--handle-pos);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 0 0 2px rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: ew-resize;
  color: var(--color-text-secondary);
  transition:
    box-shadow var(--transition),
    transform  var(--transition);
  will-change: left;
}

.comparator__stage:hover .comparator__handle,
.comparator__stage.is-dragging .comparator__handle {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 0 3px rgba(5,150,105,0.25);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Labels */
.comparator__label {
  position: absolute;
  top: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}

.comparator__label--before {
  left: 12px;
  background: rgba(0,0,0,0.40);
  color: #ffffff;
}

.comparator__label--after {
  right: 12px;
  background: var(--color-accent);
  color: #ffffff;
}

/* Caption */
.comparator__caption {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ============================================================
   MINI PAGE — AVANT (IAD basique)
   ============================================================ */
.page-before {
  width: 100%;
  height: 100%;
  background: #EEF0F2;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}

.page-before__nav {
  background: #1A3A5C;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-shrink: 0;
}

.page-before__logo {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.page-before__nav-items {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.page-before__nav-items span {
  font-size: 7px;
  color: rgba(255,255,255,0.65);
}

.page-before__banner {
  background: #C8D4DF;
  padding: 12px 12px 14px;
  border-bottom: 3px solid #1A3A5C;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.page-before__small {
  font-size: 7px;
  color: #6B7280;
}

.page-before__name {
  font-size: 13px;
  font-weight: 700;
  color: #1A3A5C;
  line-height: 1.2;
}

.page-before__job {
  font-size: 8px;
  color: #374151;
}

.page-before__zone {
  font-size: 7px;
  color: #6B7280;
}

.page-before__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.page-before__line {
  height: 7px;
  background: #C2C8CF;
  border-radius: 2px;
}

.page-before__line--short {
  width: 65%;
}

.page-before__btn {
  display: inline-block;
  margin-top: 6px;
  background: #1A3A5C;
  color: #ffffff;
  font-size: 8px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 2px;
  opacity: 0.6;
  align-self: flex-start;
}

/* ============================================================
   MINI PAGE — APRÈS Konverto (Opendoor-inspired)
   ============================================================ */
.page-after {
  width: 100%;
  height: 100%;
  background: #ffffff;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Nav */
.page-after__nav {
  height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.page-after__logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.page-after__nav-links {
  display: flex;
  gap: 14px;
  flex: 1;
}

.page-after__nav-links span {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.page-after__cta-pill {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Hero full-bleed */
.page-after__hero {
  position: relative;
  flex: 1;
  min-height: 0;
  background-image: url('https://picsum.photos/seed/famille-maison-bordeaux/500/400');
  background-size: cover;
  background-position: center 25%;
  display: flex;
  align-items: flex-end;
}

.page-after__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.30) 55%,
    rgba(0,0,0,0.05) 100%
  );
}

.page-after__hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.page-after__eyebrow {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}

.page-after__headline {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.page-after__search {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  margin-top: 2px;
}

.page-after__search-input {
  flex: 1;
  padding: 9px 12px;
  font-size: 10px;
  color: var(--color-text-muted);
  background: #ffffff;
  display: flex;
  align-items: center;
}

.page-after__search-btn {
  padding: 9px 14px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.page-after__trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-after__trust span {
  font-size: 9px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* Social proof */
.page-after__proof {
  padding: 13px 16px 11px;
  background: #ffffff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border);
}

.page-after__proof-kpi {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.page-after__proof-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-after__proof-label {
  font-size: 9px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.page-after__testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.page-after__testi {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 8px;
  background: var(--color-surface);
  border-radius: 7px;
  border: 1px solid var(--color-border);
}

.page-after__testi-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.page-after__testi-avatar--1 {
  background-image: url('https://picsum.photos/seed/sophie-immo-client/52/52');
}

.page-after__testi-avatar--2 {
  background-image: url('https://picsum.photos/seed/marc-immo-client/52/52');
}

.page-after__testi-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.page-after__testi-stars {
  font-size: 9px;
  color: #F59E0B;
  line-height: 1;
}

.page-after__testi-quote {
  font-size: 8px;
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.45;
}

.page-after__testi-name {
  font-size: 7.5px;
  color: var(--color-text-muted);
  font-weight: 600;
  line-height: 1;
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 14px var(--section-px);
}

.proof-bar__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.proof-bar__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity   0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof-bar__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.proof-bar__icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.proof-bar__item--kedge {
  background-color: var(--color-accent-light);
  color: var(--color-accent-text);
  font-weight: 600;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
}

.proof-bar__item--kedge .proof-bar__icon {
  color: var(--color-accent-text);
}

.proof-bar__sep {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  user-select: none;
  line-height: 1;
}

@media (max-width: 640px) {
  .proof-bar__sep {
    display: none;
  }

  .proof-bar__list {
    gap: 8px 32px;
  }

  .proof-bar__item {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   DIFFÉRENCIATION
   ============================================================ */
.diff {
  padding: var(--section-py) var(--section-px);
  background-color: var(--color-bg);
}

.diff__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
}

.diff__header {
  text-align: center;
  max-width: 540px;
}

.diff__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.diff__accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.diff__subtitle {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.diff__card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity    0.5s  cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.5s  cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.diff__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.diff__card.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.diff__card--featured {
  border-top: 3px solid var(--color-accent);
  background-color: var(--color-surface);
}

.diff__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.diff__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.diff__card-body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) var(--section-px);
  background-color: var(--color-surface);
}

.services__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
}

.services__header {
  text-align: center;
  max-width: 540px;
}

.services__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.services__accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.services__subtitle {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  padding-top: 16px;
}

.services__card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity    0.5s  cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.5s  cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__card--featured.is-visible {
  transform: translateY(-12px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
}

.services__card.is-visible:hover {
  box-shadow: var(--shadow-card-hover);
}

.services__card--featured.is-visible:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,0.13);
}

.services__card--featured {
  border-top: 3px solid var(--color-accent);
}

.services__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background-color: var(--color-accent);
  color: #ffffff;
  align-self: flex-start;
}

.services__card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services__plan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text-primary);
}

.services__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.services__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.services__period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.services__upsell {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: -8px;
}

.services__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.services__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.services__feature svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent);
}

.services__btn {
  width: 100%;
  justify-content: center;
}

.services__footnote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 480px;
  line-height: 1.6;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  padding: var(--section-py) var(--section-px);
  background-color: var(--color-bg);
}

.portfolio__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
}

.portfolio__header { text-align: center; max-width: 540px; }

.portfolio__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.portfolio__accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.portfolio__subtitle {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.portfolio__card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  will-change: transform;
  transition:
    opacity    0.5s  cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.5s  cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__card.is-visible            { opacity: 1; transform: translateY(0); }
.portfolio__card.is-visible:hover      { box-shadow: var(--shadow-card-hover); }
.portfolio__card--large                { grid-row: span 2; }

/* Shine — reflet lumineux qui suit la souris */
.portfolio__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(255,255,255,0.18) 0%,
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 20;
}

.portfolio__card.is-tilted::after { opacity: 1; }

/* Mockup zone */
.portfolio__mockup {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 240px;
}

.portfolio__card--large .portfolio__mockup { min-height: 400px; background: #FAF6F0; }

/* Site mockup à l'échelle 0.45 */
.portfolio__mock-site {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% / 0.45);
  transform: scale(0.45);
  transform-origin: top left;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-body);
  line-height: 1.4;
}

/* Overlay hover */
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 150, 105, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.portfolio__card:hover .portfolio__overlay { opacity: 1; }

.portfolio__overlay-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Info bar */
.portfolio__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 12px;
  flex-shrink: 0;
}

.portfolio__meta { display: flex; flex-direction: column; gap: 3px; }

.portfolio__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

.portfolio__type  { font-size: var(--text-sm); color: var(--color-text-secondary); }

.portfolio__concept {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   PORTFOLIO — PMOCK (sites internes à l'échelle 0.45)
   ============================================================ */

/* Fonds thématiques */
.pmock--villa   { background: #FAF6F0; }
.pmock--velocis { background: #F2F0ED; }
.pmock--marz    { background: #F9F7F4; }

/* ---- NAV BASE ---- */
.pmock__nav {
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 60px;
  gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  flex-shrink: 0;
}

.pmock__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #0D0D0D;
  flex-shrink: 0;
}

.pmock__nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
}

.pmock__nav-links span { font-size: 14px; font-weight: 500; color: #6B7280; }

.pmock__nav-cta {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- VILLA LUMIÈRE ---- */
.pmock__nav--villa   { background: #1A1612; border-bottom-color: rgba(255,255,255,0.06); }
.pmock__brand--villa { color: #F5EDE0; font-size: 22px; letter-spacing: -0.01em; }
.pmock__nav-links--villa span { color: rgba(245,237,224,0.45); font-weight: 400; }
.pmock__nav-cta--terra { background: #C96B4A; color: #ffffff; }

.pmock__hero--villa {
  height: 420px;
  background-image: url('https://picsum.photos/seed/villa-piscine-provence-prestige/1200/420');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.pmock__hero--villa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,6,0,0.90) 0%, rgba(12,6,0,0.10) 60%);
}

.pmock__hero-overlay {
  position: relative;
  z-index: 1;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pmock__villa-tabs {
  display: flex;
  align-self: flex-start;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.pmock__villa-tab {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  padding: 10px 20px;
  background: rgba(255,255,255,0.10);
}

.pmock__villa-tab--active { background: #C96B4A; color: #ffffff; }

.pmock__villa-search {
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
}

.pmock__villa-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 13px;
  color: #9CA3AF;
  border-right: 1px solid #E5E7EB;
}

.pmock__villa-search-btn {
  padding: 14px 24px;
  background: #C96B4A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}

.pmock__villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 28px 24px;
}

.pmock__villa-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E8DDD3;
  background: #ffffff;
}

.pmock__villa-img {
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pmock__villa-img--1 { background-image: url('https://picsum.photos/seed/villa-gordes-luberon-piscine/400/130'); }
.pmock__villa-img--2 { background-image: url('https://picsum.photos/seed/mas-saint-remy-provence-jardin/400/130'); }
.pmock__villa-img--3 { background-image: url('https://picsum.photos/seed/villa-ramatuelle-mer-var/400/130'); }

.pmock__villa-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #C96B4A;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.pmock__villa-info { padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.pmock__villa-name  { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #1A1612; }
.pmock__villa-loc   { font-size: 12px; color: #9CA3AF; }
.pmock__villa-price { font-size: 13px; color: #6B7280; margin-top: 4px; }
.pmock__villa-price strong { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: #C96B4A; }

.pmock__stats--villa    { background: #F5EDE0; border-top: 1px solid #E8DDD3; }
.pmock__num--terra      { color: #C96B4A !important; }
.pmock__stat-sep--terra { background: #E8DDD3; }

.pmock__villa-testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 28px 24px;
}

.pmock__villa-testi {
  background: #ffffff;
  border: 1px solid #E8DDD3;
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pmock__villa-testi-stars { font-size: 14px; color: #F59E0B; line-height: 1; }

.pmock__villa-testi-quote {
  font-size: 14px;
  font-style: italic;
  color: #3D2F26;
  line-height: 1.55;
  flex: 1;
}

.pmock__villa-testi-name { font-size: 12px; color: #9CA3AF; font-weight: 600; }

.pmock__villa-cta-strip {
  margin: 0 28px 32px;
  background: #1A1612;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pmock__villa-cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #F5EDE0;
  line-height: 1.3;
}

.pmock__villa-cta-btn {
  background: #C96B4A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- VELOCIS LOGISTICS ---- */
.pmock__nav--velocis   { background: #F2F0ED; border-bottom: 1px solid #E2DFD9; }
.pmock__brand--velocis { font-size: 24px; font-weight: 900; color: #0D0D0B; letter-spacing: -0.02em; }
.pmock__nav-links--velocis span { color: #6B6A68; font-size: 13px; font-weight: 500; }
.pmock__nav-cta--cyan  { background: #00D4B4; color: #0D0D0B; font-weight: 700; }

.pmock__hero--velocis {
  background: #F2F0ED;
  padding: 32px 28px 12px;
  overflow: hidden;
}

.pmock__velocis-headline-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pmock__velocis-headline {
  font-family: var(--font-display);
  font-size: 148px;
  font-weight: 900;
  color: #0D0D0B;
  letter-spacing: -0.05em;
  line-height: 0.88;
  display: block;
  white-space: nowrap;
}

.pmock__velocis-headline--outline {
  color: transparent;
  -webkit-text-stroke: 2.5px #0D0D0B;
  font-size: 108px;
}

.pmock__velocis-sub {
  font-size: 18px;
  color: #6B6A68;
  font-weight: 400;
  margin-top: 14px;
  display: block;
}

.pmock__velocis-product {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pmock__velocis-img {
  height: 180px;
  background-image: url('https://picsum.photos/seed/cargo-bike-urban-delivery-city/1000/180');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.pmock__velocis-ctas { display: flex; gap: 16px; align-items: center; }

.pmock__cta--cyan       { background: #00D4B4; color: #0D0D0B; font-weight: 700; }
.pmock__cta--ghost-dark { background: transparent; color: #0D0D0B; border: 1.5px solid #0D0D0B; }

.pmock__velocis-chips { display: flex; gap: 10px; flex-wrap: wrap; }

.pmock__chip {
  font-size: 13px;
  font-weight: 600;
  color: #0D0D0B;
  background: #E8E6E0;
  padding: 7px 16px;
  border-radius: 100px;
}

/* ---- ATELIER MÄRZ ---- */
.pmock__nav--marz { background: #F9F7F4; border-bottom: 1px solid #E8E3DC; }

.pmock__brand--marz {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #2A1F1A;
  letter-spacing: 0.02em;
}

.pmock__nav-links--marz span { color: #8A7E74; font-size: 13px; font-weight: 400; }

.pmock__nav-links-lang {
  font-size: 12px;
  font-weight: 600;
  color: #8A7E74;
  flex-shrink: 0;
}

.pmock__hero--marz {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #EDE8E2;
}

.pmock__marz-collage { position: absolute; inset: 0; }

.pmock__marz-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
}

.pmock__marz-photo--1 { top: 0; left: 0; width: 42%; height: 56%; background-image: url('https://picsum.photos/seed/archi-loft-interieur-moderne/520/220'); }
.pmock__marz-photo--2 { top: -8px; left: 44%; width: 30%; height: 46%; background-image: url('https://picsum.photos/seed/archi-facade-pierre-paris/380/180'); }
.pmock__marz-photo--3 { bottom: 0; right: 0; width: 38%; height: 58%; background-image: url('https://picsum.photos/seed/archi-salon-epure-lumineux/460/220'); }
.pmock__marz-photo--4 { bottom: 20px; left: 5%; width: 32%; height: 42%; background-image: url('https://picsum.photos/seed/archi-terrasse-toiture-paris/400/160'); }

.pmock__marz-title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pmock__marz-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 130px;
  font-weight: 400;
  font-style: italic;
  color: #8C1E30;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.82;
  mix-blend-mode: multiply;
}

.pmock__marz-sub {
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 13px;
  font-weight: 400;
  color: #5E4F46;
  font-style: italic;
}

.pmock__marz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-top: 1px solid #E8E3DC;
  background: #F9F7F4;
  gap: 20px;
}

.pmock__marz-tagline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-style: italic;
  color: #2A1F1A;
  line-height: 1.4;
  flex: 1;
}

.pmock__cta--marz-outline {
  border: 1.5px solid #8C1E30;
  color: #8C1E30;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- BASE PARTAGÉE ---- */
.pmock__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0D0D0D;
}

.pmock__h1--white { color: #ffffff; }

.pmock__sub { font-size: 16px; line-height: 1.6; color: #6B7280; }
.pmock__sub--light { color: rgba(255,255,255,0.85); }

.pmock__cta {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  align-self: flex-start;
  white-space: nowrap;
}

.pmock__section-label {
  padding: 18px 28px 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
}

.pmock__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 28px;
}

.pmock__stat { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }

.pmock__stat strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.pmock__stat span { font-size: 12px; color: #6B7280; }

.pmock__stat-sep {
  width: 1px;
  height: 32px;
  background: #D1FAE5;
  flex-shrink: 0;
  margin: 0 8px;
}

/* ============================================================
   PROCESSUS
   ============================================================ */
.proc {
  padding: var(--section-py) var(--section-px);
  background-color: var(--color-surface);
}

.proc__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
}

.proc__header { text-align: center; max-width: 540px; }

.proc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.proc__accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.proc__subtitle {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.proc__grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: start;
  width: 100%;
}

.proc__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity   0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.proc__step.is-visible { opacity: 1; transform: translateY(0); }

.proc__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background-color: var(--color-accent-light);
  color: var(--color-accent-text);
}

.proc__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc__circle span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-accent);
  line-height: 1;
}

.proc__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.proc__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 24ch;
}

/* Connecteur — se dessine de gauche à droite au scroll */
.proc__connector {
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--color-accent) 0px,
    var(--color-accent) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 0% 100%;
  background-repeat: no-repeat;
  opacity: 0.55;
  /* badge 20px + gap 14px + demi-cercle 28px */
  margin-top: 62px;
  transition: background-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.proc__connector.is-visible { background-size: 100% 100%; }

/* ============================================================
   À PROPOS
   ============================================================ */
.about {
  padding: var(--section-py) var(--section-px);
  background-color: var(--color-bg);
}

.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Colonne photo */
.about__media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity   0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__media.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  line-height: 0;
}

.about__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about__badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  background-color: var(--color-surface);
}

/* Colonne texte */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity   0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.about__content.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-text);
}

.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
}

.about__accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.about__body {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.about__quote {
  border-left: 3px solid var(--color-accent);
  padding: 14px 20px;
  margin: 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background-color: var(--color-accent-light);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-accent-text);
}

.about__stats {
  display: flex;
  gap: 32px;
  padding-top: 4px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--color-text-primary);
  line-height: 1;
}

.about__stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.3;
}

.about__cta { align-self: flex-start; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) var(--section-px);
  background-color: var(--color-surface);
}

.contact__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.contact__accent { color: var(--color-accent); }

.contact__sub {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.contact__args { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.contact__arg {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  font-weight: 500;
}

.contact__arg-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form layout */
.contact__form { display: flex; flex-direction: column; gap: 0; }

/* Floating label field */
.contact__field {
  position: relative;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity  0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__field.is-visible { opacity: 1; transform: translateY(0); }

.contact__label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  pointer-events: none;
  transition:
    top       0.2s cubic-bezier(0.16, 1, 0.3, 1),
    font-size 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    font-weight 0.2s ease,
    color     0.2s ease;
  z-index: 1;
  background: var(--color-surface);
  padding: 0 4px;
}

/* Label floats up when input has value or is focused */
.contact__input:focus ~ .contact__label,
.contact__input:not(:placeholder-shown) ~ .contact__label,
.contact__textarea:focus ~ .contact__label,
.contact__textarea:not(:placeholder-shown) ~ .contact__label {
  top: -9px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
}

/* Select: label always floated (select always shows a value) */
.contact__field--select .contact__label {
  top: -9px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.contact__select:focus ~ .contact__label { color: var(--color-accent); }

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* Hide placeholder by default, show on focus */
.contact__input::placeholder,
.contact__textarea::placeholder { color: transparent; }

.contact__input:focus::placeholder,
.contact__textarea:focus::placeholder { color: var(--color-text-muted); transition: color 0.2s; }

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.contact__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Select arrow */
.contact__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Submit */
.contact__submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-accent);
  background-image: linear-gradient(var(--color-accent-hover), var(--color-accent-hover));
  background-size: 0% 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background-size 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow var(--transition),
    transform var(--transition);
  margin-top: 4px;
}

.contact__submit:hover:not(:disabled) {
  background-size: 100% 100%;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.30);
  transform: translateY(-1px);
}

.contact__submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.contact__submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: contact-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.contact__submit.is-loading .contact__submit-text { display: none; }
.contact__submit.is-loading .contact__submit-spinner { display: block; }

@keyframes contact-spin { to { transform: rotate(360deg); } }

/* Feedback */
.contact__feedback {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: 12px;
}

.contact__feedback[hidden] { display: none; }

.contact__feedback--success {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.contact__feedback--error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.20);
}

.contact__feedback--error a { color: #DC2626; font-weight: 700; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: var(--section-py) var(--section-px) 0;
  background-color: var(--color-accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-final__inner.is-visible { opacity: 1; transform: translateY(0); }

.cta-final__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.cta-final__sub {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.70);
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: 8px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.cta-final__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.cta-final__btn:active { transform: translateY(0) scale(0.98); }

/* Cercles concentriques */
.cta-final__circles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.cta-final__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  animation: cta-pulse 8s ease-in-out infinite;
}

.cta-final__circle--1 { width: 300px;  height: 300px;  animation-delay: 0s; }
.cta-final__circle--2 { width: 560px;  height: 560px;  animation-delay: 2.5s; }
.cta-final__circle--3 { width: 820px;  height: 820px;  animation-delay: 5s; }

@keyframes cta-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
  50%       { transform: translate(-50%, -50%) scale(1.06); opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) { .cta-final__circle { animation: none; } }

/* Pills ticker */
.cta-final__ticker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0 40px;
  overflow: hidden;
}

.cta-final__ticker-row {
  overflow: hidden;
  width: 100%;
}

.cta-final__ticker-inner {
  display: flex;
  gap: 12px;
  width: max-content;
}

.cta-final__ticker-row--fwd .cta-final__ticker-inner {
  animation: ticker-fwd 22s linear infinite;
}

.cta-final__ticker-row--rev .cta-final__ticker-inner {
  animation: ticker-rev 22s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .cta-final__ticker-inner { animation: none !important; }
}

.cta-final__pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #0D0D0D;
  padding: 48px var(--section-px) 32px;
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer__logo:hover { opacity: 0.8; }
.footer__logo span  { color: var(--color-accent); }

.footer__nav {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__nav a:hover { color: #ffffff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}

.footer__tagline {
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   SECTION REVEAL AU SCROLL
   ============================================================ */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity   0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter    0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 769px) {
  .section-reveal { filter: blur(4px); }
}

.section-reveal--visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================================
   BLOBS DE FOND — sections blanches uniquement
   ============================================================ */

/* Calque conteneur : clip les blobs sans toucher au box-shadow du contenu */
.section-blob-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Sections blanches qui accueillent les blobs */
.diff,
.portfolio,
.about {
  position: relative;
}

/* Contenu au-dessus du calque blobs */
.diff__container,
.portfolio__container,
.about__container {
  position: relative;
  z-index: 1;
}

.bg-blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(5, 150, 105, 0.06);
  pointer-events: none;
  animation: blob-morph 12s ease-in-out infinite;
  will-change: transform;
}

@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%     { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50%     { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
  75%     { border-radius: 67% 33% 47% 53% / 37% 20% 80% 63%; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blob { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablette — 900px */
@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__comparator-wrap {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }

  .diff__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    padding-top: 0;
  }

  .services__card--featured.is-visible {
    transform: translateY(0);
    box-shadow: var(--shadow-card);
  }

  .services__card--featured {
    order: -1;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__card--large {
    grid-row: span 1;
  }

  .portfolio__card--large .portfolio__mockup {
    min-height: 200px;
  }

  .about__container {
    grid-template-columns: 1fr;
  }

  /* Passe à un fade vertical pour les colonnes empilées */
  .about__media {
    transform: translateY(16px);
  }

  .about__media.is-visible {
    transform: translateY(0);
  }

  .about__content {
    transform: translateY(16px);
    transition-delay: 0.1s;
  }

  .about__content.is-visible {
    transform: translateY(0);
  }

  .about__photo-wrap {
    max-height: 320px;
  }

  .about__photo {
    height: 320px;
    object-fit: cover;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .hero__proof {
    gap: 12px;
    flex-direction: column;
  }

  .proc__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .proc__connector {
    width: 2px;
    height: 28px;
    background-image: repeating-linear-gradient(
      to bottom,
      var(--color-accent) 0px,
      var(--color-accent) 6px,
      transparent 6px,
      transparent 14px
    );
    background-size: 100% 0%;
    background-position: top;
    margin: 0 auto;
    transition: background-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .proc__connector.is-visible {
    background-size: 100% 100%;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Skip-to-content — accessibilité clavier */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ============================================================
   SERVICES — nouvelles classes (étapes + addon + badge light + reassurance)
   ============================================================ */

.services__badge--light {
  background-color: var(--color-accent-light);
  color: var(--color-accent-text);
}

.services__reassurance {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

/* Conteneur des 2 étapes */
.services__steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

/* Wrapper d'une étape (label + card) */
.services__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 380px;
}

.services__step-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.services__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services__step-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services__step .services__card {
  width: 100%;
}

/* Flèche entre les 2 étapes */
.services__connector {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 52px;
}

/* Option additionnelle */
.services__addon {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 820px;
  background-color: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.services__addon-plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
}

.services__addon-body {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}

.services__addon-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.services__addon-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

.services__amount--sm {
  font-size: var(--text-2xl);
}

.services__addon-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* FOOTER — liens légaux */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__legal a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--color-accent-hover);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .services__steps {
    flex-direction: column;
    align-items: center;
  }

  .services__connector {
    transform: rotate(90deg);
    margin-top: 0;
  }

  .services__step {
    max-width: 100%;
    width: 100%;
  }

  .services__addon {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services__addon-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-banner {
    padding: 14px 16px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

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