:root {
  --bg: #FFD45C;
  --bg-2: #FFC73A;
  --ink: #1F1B16;
  --ink-2: #3A3329;
  --ink-3: #6B5F4E;
  --paper: #FFF8E7;
  --paper-2: #FFEFC9;
  --line: rgba(31, 27, 22, .14);
  --line-soft: rgba(31, 27, 22, .07);
  --primary: #FF5B3E;
  --primary-2: #E64327;
  --secondary: #3D7A5C;
  --tertiary: #7A4DD4;
  --pink: #FF95B8;
  --blue: #4FB6E0;

  --f-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --f-body: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --max-w: 1320px;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  overflow-x: clip;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
  font-variation-settings: "opsz" 96;
}

p { margin: 0; }

ul { list-style: none; padding: 0; margin: 0; }

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 99px;
  border: 2.5px solid var(--ink);
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  line-height: 1;
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--primary); color: #FFF8E7; }
.btn-secondary { background: var(--paper); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Floating decorations ── */
.deco { position: absolute; pointer-events: none; z-index: 1; }
.deco.d1 { top: 110px; left: 5%; animation: spin 18s linear infinite; }
.deco.d2 { top: 30%; right: 6%; animation: bobA 4s ease-in-out infinite; }
.deco.d3 { top: 70%; left: 8%; animation: bobB 5s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bobA { 0%, 100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes bobB { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(-3deg); } }

/* ── Navigation ── */
.hp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  gap: 24px;
  border-bottom: 2.5px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.hp-nav.scrolled {
  border-bottom-color: var(--ink);
  box-shadow: 0 4px 0 rgba(31, 27, 22, .08);
}
.hp-nav .brand-link { display: flex; align-items: center; flex-shrink: 0; }
.hp-nav .links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.hp-nav .links a {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  padding: 6px 4px;
  position: relative;
}
.hp-nav .links a:hover { color: var(--primary); }
.hp-nav .links a:hover::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-cta { padding: 12px 20px; font-size: 14px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  padding: 60px 56px 100px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 7px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-size: 84px;
  line-height: .94;
  letter-spacing: -.035em;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 8px;
  height: 14px;
  background: var(--paper);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1deg);
}
.hero p.lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 32px;
  line-height: 1.55;
  font-weight: 500;
}
.hero .ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero .trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero .trust div {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero .trust b {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.hero .trust span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.hero-vis {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-vis .sun {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.hero-vis .badge {
  position: absolute;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 3;
}
.hero-vis .badge.b1 { top: 8%; right: -4%; animation: bobA 5s ease-in-out infinite; }
.hero-vis .badge.b2 { bottom: 14%; left: -8%; animation: bobB 6s ease-in-out infinite; }
.hero-vis .badge .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-vis .badge .desc {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
  margin-top: 2px;
  font-family: var(--f-display);
  font-weight: 700;
}

.mascot-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ── Mascot animations ── */
@keyframes idle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes blink-eye {
  0%, 90%, 100% { transform: scaleY(1); }
  94% { transform: scaleY(.05); }
}
@keyframes wave-arm {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-18deg); }
  75% { transform: rotate(18deg); }
}

.mascot-svg .body { animation: idle-bob 3.2s ease-in-out infinite; transform-origin: center; }
.mascot-svg .eye { animation: blink-eye 4.5s ease-in-out infinite; transform-origin: center; }
.mascot-svg .eye.b { animation-delay: .05s; }
.mascot-svg .arm-r { animation: wave-arm 3.6s ease-in-out infinite; transform-origin: 110px 78px; transform-box: view-box; }

/* ── Sections ── */
.hp-sect {
  padding: 96px 56px;
  position: relative;
  overflow: hidden;
}
.hp-sect.cream { background: var(--paper); }
.hp-sect.green { background: var(--secondary); color: #FFF8E7; }
.hp-sect.green h2 { color: #FFF8E7; }
.hp-sect.green .sub { color: rgba(255, 248, 231, .85); }
.hp-sect.purple { background: var(--tertiary); color: #FFF8E7; }
.hp-sect.purple h2 { color: #FFF8E7; }
.hp-sect.purple .sub { color: rgba(255, 248, 231, .85); }
.hp-sect.pink { background: var(--pink); }
.hp-sect.cta-wrap { background: var(--bg); }

.hp-sect > .hd,
.hp-sect > .stat-row,
.hp-sect > .offre-card,
.hp-sect > .process-grid,
.hp-sect > .pour-grid,
.hp-sect > .real-grid,
.hp-sect > .nous,
.hp-sect > .faq-list,
.hp-sect > .cta-final {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.hp-sect .eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 700;
  display: inline-block;
  background: var(--paper);
  padding: 6px 14px;
  border-radius: 99px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.hp-sect .eyebrow.on-pink { color: var(--ink); }
.hp-sect .eyebrow.on-green,
.hp-sect .eyebrow.on-purple {
  background: var(--bg);
  color: var(--ink);
}
.hp-sect .eyebrow.on-ink { background: var(--bg); color: var(--ink); }

.hp-sect h2 {
  font-size: 60px;
  line-height: .98;
  letter-spacing: -.025em;
  max-width: 18ch;
  margin-bottom: 18px;
  font-weight: 800;
}
.hp-sect h2 em { font-style: normal; color: var(--primary); }
.hp-sect.green h2 em, .hp-sect.purple h2 em { color: var(--bg); }

.hp-sect .sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.6;
  font-weight: 500;
}
.hp-sect .hd {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

/* ── Stats ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-.5deg);
}
.stat:nth-child(2) { transform: rotate(.5deg); background: var(--bg); }
.stat:nth-child(3) { transform: rotate(-.3deg); background: var(--pink); }
.stat .big {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
.stat .big em { color: var(--primary); font-style: normal; }
.stat .lbl {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 14px;
  line-height: 1.5;
  max-width: 32ch;
  font-weight: 500;
}
.stat .lbl b { font-weight: 800; }
.stat .src {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--ink-3);
  margin-top: 14px;
  font-weight: 600;
}

/* ── Offre ── */
.offre-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}
.offre-card .badge-corner {
  position: absolute;
  top: -18px;
  right: -12px;
  background: var(--primary);
  color: #FFF8E7;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 99px;
  border: 2.5px solid var(--ink);
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.offre-card h3 {
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 18px;
  max-width: 14ch;
  font-weight: 800;
}
.offre-card .price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.offre-card .price-cell {
  padding: 20px;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
}
.offre-card .price-cell:nth-child(2) { background: var(--pink); }
.offre-card .price-cell .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.offre-card .price-cell .num {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-top: 8px;
  color: var(--ink);
}
.offre-card .price-cell .num small {
  font-size: 18px;
  color: var(--ink-3);
  font-weight: 500;
}
.offre-card .price-cell .note {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 6px;
  font-weight: 600;
}
.offre-card .feat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offre-card .feat li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}
.offre-card .feat li b { color: var(--ink); font-weight: 800; }
.offre-card .feat .ck {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFF8E7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.step:nth-child(2) { background: var(--bg); }
.step:nth-child(3) { background: var(--pink); }
.step:nth-child(4) { background: var(--paper-2); }
.step .nb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-3);
  font-weight: 700;
  background: #fff;
  padding: 5px 11px;
  border-radius: 99px;
  border: 2px solid var(--ink);
  align-self: flex-start;
}
.step .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h4 {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -.01em;
  line-height: 1.15;
  font-weight: 800;
}
.step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 500;
}
.step .when {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--ink-3);
  padding-top: 14px;
  border-top: 2px dashed rgba(31, 27, 22, .25);
  font-weight: 600;
}

/* ── Pour qui ── */
.pour-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pour-cell {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  color: var(--ink);
}
.pour-cell:hover { transform: translate(-2px, -2px) rotate(-1deg); box-shadow: 6px 6px 0 var(--ink); }
.pour-cell .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--ink);
}
.pour-cell:nth-child(2) .ico { background: var(--pink); }
.pour-cell:nth-child(3) .ico { background: var(--paper); }
.pour-cell:nth-child(4) .ico { background: var(--blue); }
.pour-cell:nth-child(5) .ico { background: var(--paper-2); }
.pour-cell b {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}
.pour-cell span {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
  font-weight: 500;
}

/* ── Réalisations ── */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.real-cell {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
}
.real-cell .img {
  aspect-ratio: 4/3;
  border-bottom: 2.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--f-display);
  font-weight: 700;
}
.real-cell:nth-child(2) .img { background: var(--pink); }
.real-cell:nth-child(3) .img { background: var(--blue); color: var(--ink); }
.real-cell .placeholder-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.025em;
  font-style: italic;
}
.real-cell .placeholder-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--ink-3);
  font-style: normal;
}
.real-cell .meta { padding: 20px; }
.real-cell .meta b {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 800;
  display: block;
}
.real-cell .meta span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-top: 4px;
  font-weight: 600;
}
.real-cell .meta p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 12px;
  line-height: 1.5;
  font-weight: 500;
}

/* ── Qui sommes-nous ── */
.nous {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.nous .photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.nous .photo-card {
  aspect-ratio: 3/4;
  border-radius: 18px;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.nous .photo-card.b { background: var(--pink); transform: rotate(2deg); }
.nous .photo-card.a { transform: rotate(-2deg); }
.nous .photo-card .nm {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 99px;
  border: 2px solid var(--ink);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: flex-start;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .nb {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  width: 32px;
  padding-top: 6px;
  font-weight: 700;
}
.faq-item .q {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -.01em;
  font-weight: 800;
  line-height: 1.3;
}
.faq-item .a {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: none;
  font-weight: 500;
  padding: 0 56px 24px 84px;
}
.faq-item .plus {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  padding-top: 6px;
  font-weight: 800;
  transition: transform .2s;
}
.faq-item[open] .plus { transform: rotate(45deg); }

/* ── CTA Final ── */
.cta-final {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 64px;
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--primary);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  color: var(--bg);
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  font-weight: 800;
  max-width: 18ch;
}
.cta-final h2 em { color: var(--primary); font-style: normal; }
.cta-final p {
  font-size: 17px;
  color: rgba(255, 248, 231, .85);
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 28px;
  font-weight: 500;
}
.cta-final .contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255, 248, 231, .7);
  font-weight: 500;
}
.cta-final .contacts > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cta-final .contacts b {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--bg);
  font-size: 18px;
  display: block;
}
.cta-final .contacts a { color: var(--bg); }
.cta-final .contacts a:hover { color: var(--primary); }

.cta-final .form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 28px;
  border: 2.5px solid var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.field input, .field textarea {
  font: inherit;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2.5px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  font-weight: 500;
  width: 100%;
}
.field input:focus, .field textarea:focus { box-shadow: 4px 4px 0 var(--primary); }
.form-submit { justify-content: center; width: 100%; margin-top: 6px; }
.rgpd {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  text-align: center;
  font-weight: 600;
}

/* ── Footer ── */
.hp-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 56px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.hp-footer .footer-brand {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--bg);
}
.hp-footer p {
  color: rgba(255, 248, 231, .7);
  font-size: 13.5px;
  margin-top: 10px;
  max-width: 36ch;
  line-height: 1.55;
  font-weight: 500;
}
.hp-footer h5 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 248, 231, .55);
  font-weight: 700;
  margin-bottom: 14px;
}
.hp-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-footer a {
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.hp-footer a:hover { color: var(--primary); }
.hp-footer .legal {
  grid-column: 1/-1;
  border-top: 1px dashed rgba(255, 255, 255, .18);
  padding-top: 18px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 248, 231, .5);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 14px;
}
.hp-footer .legal a { font-size: inherit; }

/* ── Floating mascot ── */
.friend {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 9999;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.friend:hover { transform: scale(1.08) rotate(-4deg); }
.friend:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; border-radius: 12px; }
.friend .speech {
  position: absolute;
  bottom: 100%;
  right: 50%;
  transform: translateX(50%) translateY(-8px);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.friend .speech::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: translateX(-50%) rotate(45deg);
}
.friend.show-speech .speech {
  opacity: 1;
  transform: translateX(50%) translateY(-12px);
}

/* ── Page header (sub-pages) ── */
.page-head {
  padding: 64px 56px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-head-inner { max-width: 920px; }
.page-head h1 {
  font-family: var(--f-display);
  font-size: 72px;
  line-height: .98;
  letter-spacing: -.03em;
  margin: 14px 0 18px;
  font-weight: 800;
}
.page-head h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.page-head h1 em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 8px;
  height: 14px;
  background: var(--paper);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1deg);
}
.page-head .lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
  font-weight: 500;
}

/* ── Nav cards (home: par où commencer) ── */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nav-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
  transition: transform .12s, box-shadow .12s;
}
.nav-card:hover { transform: translate(-2px, -2px) rotate(-.5deg); box-shadow: 7px 7px 0 var(--ink); }
.nav-card.alt { background: var(--pink); }
.nav-card .nb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-3);
  font-weight: 700;
}
.nav-card h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.nav-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
}
.nav-card .more {
  margin-top: auto;
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
}
.nav-card:hover .more .arrow { transform: translateX(3px); transition: transform .15s; }

/* ── CTA simple (sans formulaire) ── */
.cta-final.cta-final--simple {
  grid-template-columns: 1fr;
  text-align: left;
}
.cta-final--simple .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Active link in nav ── */
.hp-nav .links a.active {
  color: var(--primary);
}
.hp-nav .links a.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── 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;
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hp-sect { padding: 80px 40px; }
  .hero { padding: 48px 40px 80px; }
  .hp-nav { padding: 18px 32px; }
  .hp-footer { padding: 48px 40px 28px; }
  .hero h1 { font-size: 64px; }
  .hp-sect h2 { font-size: 48px; }
  .stat .big { font-size: 56px; }
  .pour-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-final { padding: 48px; }
  .page-head { padding: 48px 40px 24px; }
  .page-head h1 { font-size: 56px; }
}

@media (max-width: 900px) {
  .hp-nav .links { display: none; flex-direction: column; gap: 12px; align-items: stretch; padding: 16px 0 0; }
  .hp-nav.menu-open .links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 16px 32px 24px;
    border-bottom: 2.5px solid var(--ink);
    box-shadow: 0 4px 0 rgba(31, 27, 22, .08);
  }
  .hp-nav.menu-open .links a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px dashed var(--line);
  }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 24px;
  }
  .hero h1 { font-size: 48px; }
  .hero p.lede { font-size: 17px; }
  .hero-vis { max-width: 380px; margin: 0 auto; width: 100%; }
  .hero .trust { gap: 10px; }
  .hero .trust div { padding: 10px 14px; flex: 1; min-width: 100px; }
  .hero .trust b { font-size: 18px; }

  .hp-sect { padding: 64px 24px; }
  .hp-sect .hd { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .hp-sect h2 { font-size: 36px; }

  .stat-row { grid-template-columns: 1fr; }
  .stat .big { font-size: 56px; }

  .offre-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .offre-card h3 { font-size: 32px; }
  .offre-card .price-row { grid-template-columns: 1fr 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .pour-grid { grid-template-columns: 1fr 1fr; }
  .real-grid { grid-template-columns: 1fr; }

  .nous { grid-template-columns: 1fr; gap: 32px; }

  .faq-item summary { padding: 20px; gap: 14px; }
  .faq-item .q { font-size: 18px; }
  .faq-item .a { padding: 0 20px 20px 20px; }
  .faq-item .nb { display: none; }

  .cta-final {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .cta-final h2 { font-size: 36px; }

  .page-head { padding: 32px 24px 8px; }
  .page-head h1 { font-size: 40px; }
  .page-head .lede { font-size: 17px; }

  .nav-cards { grid-template-columns: 1fr; }

  .hp-footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 28px;
  }
  .hp-footer > div:first-child { grid-column: 1/-1; }
  .hp-footer .legal { flex-direction: column; align-items: flex-start; }

  .friend { bottom: 12px; right: 12px; }
  .friend .speech { white-space: normal; max-width: 200px; text-align: center; }

  .deco { display: none; }
}

@media (max-width: 540px) {
  .hp-sect { padding: 48px 20px; }
  .hero { padding: 32px 20px 48px; }
  .hp-nav { padding: 14px 20px; }
  .hp-footer { grid-template-columns: 1fr; padding: 40px 20px 24px; }

  .hero h1 { font-size: 40px; }
  .hp-sect h2 { font-size: 30px; }
  .stat .big { font-size: 48px; }

  .process-grid { grid-template-columns: 1fr; }
  .pour-grid { grid-template-columns: 1fr; }
  .offre-card .price-row { grid-template-columns: 1fr; }

  .cta-final { padding: 28px 20px; }

  .hp-nav .brand-link svg { height: 26px; }
}
