/* ================================================================
   SWIPE TO DATE — LANDING PAGE CSS
   Extrait des <style> blocks de index.html et des 6 pages légales
   ================================================================ */


/* ================================================================
   PARTAGÉ — NAV
   ================================================================ */

.nav-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: #1c1c17;
  letter-spacing: -0.02em;
  text-transform: none;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  user-select: none;
  cursor: default;
}
.nb-l {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1c1c17;
  display: inline-block;
  position: relative;
  line-height: 1;
}
.nb-s { display: inline-block; width: 0.28em; }
.nb-to {
  color: #366850 !important;
  font-style: italic !important;
  font-weight: 500 !important;
}

.nav-dot {
  position: absolute;
  top: -7px; left: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #366850;
  opacity: 0;
  will-change: transform, opacity;
}
.nav-dot::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: #366850;
  opacity: 0.3;
  filter: blur(2px);
}
.nav-dot.is-ready {
  opacity: 1;
  animation: navTravel 10s cubic-bezier(0.65, 0, 0.35, 1) 800ms infinite;
}
@keyframes navTravel {
  0%,  14%  { transform: translateX(var(--np0, 0px)) }
  22%, 36%  { transform: translateX(var(--np1, 0px)) }
  44%, 58%  { transform: translateX(var(--np2, 0px)) }
  66%, 80%  { transform: translateX(var(--np3, 0px)) }
  88%, 100% { transform: translateX(var(--np4, 0px)) }
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #fff;
  background: #b85c38;
  padding: 9px 14px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 6px 20px -6px rgba(184,92,56,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background .2s, box-shadow .2s, transform .15s;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .nav-cta-btn { font-size: 13px; padding: 10px 22px; gap: 8px; }
}
.nav-cta-btn:hover {
  background: #c96840;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 10px 28px -6px rgba(184,92,56,0.55);
}


/* ================================================================
   PARTAGÉ — UTILS
   ================================================================ */

.paper-grain {
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 5;
}
.blueprint-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(123,119,111,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(123,119,111,.05) 1px, transparent 1px);
}
.blueprint-border {
  border: 1px solid rgba(123, 119, 111, 0.3);
}


/* ================================================================
   PARTAGÉ — ANIMATIONS DE RÉVÉLATION
   ================================================================ */

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.8; }
}
.pulse-accent { animation: subtle-pulse 3s infinite ease-in-out; }

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible { opacity: 1; transform: none; }

.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal-section.active { opacity: 1; transform: translateY(0); }


/* ================================================================
   LÉGAL — ÉLÉMENTS COMMUNS
   (toc, layout, article, listes — cgv + confidentialité + cookies)
   ================================================================ */

/* Layout wrapper pages légales simples (cookies, remboursement) */
.legal-section {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px,6vw,80px) clamp(20px,5vw,64px);
}

/* Layout avec sidebar TOC (cgv, confidentialité) */
.page-layout {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px,5vw,64px) clamp(20px,5vw,64px);
}
@media (min-width: 1024px) {
  .page-layout { display: flex; gap: 56px; align-items: flex-start; }
}

/* Table des matières sticky */
.toc-wrap {
  width: 220px; flex-shrink: 0;
  position: sticky; top: 72px;
  max-height: calc(100vh - 88px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #ccc6bd transparent;
}
.toc-wrap::-webkit-scrollbar { width: 3px; }
.toc-wrap::-webkit-scrollbar-track { background: transparent; }
.toc-wrap::-webkit-scrollbar-thumb { background: #ccc6bd; border-radius: 2px; }
.toc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: #7b776f;
  display: block; margin-bottom: 14px;
}
.toc-link {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .04em;
  color: #7b776f; text-decoration: none;
  padding: 6px 0 6px 10px;
  border-left: 1px solid #e6e2da;
  transition: color .15s, border-color .15s;
  line-height: 1.4;
}
.toc-link:hover { color: #1c1c17; border-color: #ccc6bd; }
.toc-link.active { color: #366850; border-color: #366850; font-weight: 500; }

/* Contenu légal */
.legal-content { flex: 1; min-width: 0; }

.article-block { padding: 36px 0; border-bottom: 1px solid #e6e2da; scroll-margin-top: 72px; }
.article-block:last-of-type { border-bottom: none; }

.article-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: #7b776f;
  display: block; margin-bottom: 10px;
}
.article-title {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: clamp(18px,2vw,22px);
  color: #1c1c17; font-weight: 400;
  line-height: 1.25; margin-bottom: 20px;
}
.article-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: #4a4640; line-height: 1.75;
}
.article-body p + p { margin-top: 12px; }
.article-body strong { color: #1c1c17; font-weight: 600; }
.article-body em { color: #366850; }
.article-body a { color: #366850; text-decoration: none; border-bottom: 1px solid rgba(54,104,80,.3); }
.article-body h3 {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 16px; color: #1c1c17; font-weight: 400; margin: 24px 0 10px;
}

.sub-article { margin-top: 20px; padding-top: 20px; border-top: 1px solid #f1ede5; }
.sub-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: #9a958c;
  display: block; margin-bottom: 8px;
}

/* Listes à puces custom */
.custom-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; padding: 0; list-style: none; }
.custom-list li { display: flex; gap: 10px; align-items: baseline; font-family: 'Inter', sans-serif; font-size: 15px; color: #4a4640; line-height: 1.5; }
.custom-list li::before { content: '—'; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #366850; flex-shrink: 0; }

/* Tableau identité (cgv + confidentialité) */
.id-table { width: 100%; border-collapse: collapse; }
.id-table td { padding: 9px 12px; border: 1px solid #e6e2da; font-family: 'Inter', sans-serif; font-size: 13px; color: #4a4640; vertical-align: top; }
.id-table td:first-child { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #7b776f; background: #f7f3eb; width: 40%; }
.id-table a { color: #366850; text-decoration: none; border-bottom: 1px solid rgba(54,104,80,.3); }


/* ================================================================
   INDEX — LANDING PRINCIPALE
   ================================================================ */

/* Micro-interactions */
.btn-hover-effect {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-hover-effect:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-hover-effect:active { transform: translateY(0) scale(0.98); }

/* CTA achat */
.cta-buy {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.01em; text-transform: none; border-radius: 4px;
}

/* Spine 4 étapes */
.spine-rail { background: linear-gradient(90deg, #366850, #9dd2b5); }
.spine-node { box-shadow: 0 0 0 6px rgba(54,104,80,.07); }
.spine-step { opacity: 0; transform: translateY(14px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal-section.active .spine-step { opacity: 1; transform: none; }
.reveal-section.active .spine-step:nth-child(1) { transition-delay: .05s; }
.reveal-section.active .spine-step:nth-child(2) { transition-delay: .18s; }
.reveal-section.active .spine-step:nth-child(3) { transition-delay: .31s; }
.reveal-section.active .spine-step:nth-child(4) { transition-delay: .44s; }

/* Chat avant/après */
.gpt-panel { box-shadow: 0 1px 3px rgba(28,28,23,.05); }
.gpt-panel.win { box-shadow: 0 14px 40px -16px rgba(54,104,80,.28); }
.bub { padding: 10px 13px; font-size: 14px; line-height: 1.45; max-width: 92%; border-radius: 16px; }
.bub-in  { background: #ece8e0; color: #1c1c17; border-bottom-left-radius: 5px; align-self: flex-start; }
.bub-out { background: #366850; color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.bub-gpt { background: #f1ede5; color: #4a4640; border-radius: 14px; }

/* CTA final */
.ctaf { background: #1c1c17; padding: clamp(64px,10vw,112px) 24px; position: relative; overflow: hidden; }
.ctaf-grid { position: absolute; inset: 0; background-size: 40px 40px; background-image: linear-gradient(to right,rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(to bottom,rgba(255,255,255,.04) 1px,transparent 1px); pointer-events: none; }
.ctaf-inner { max-width: 600px; margin: 0 auto; position: relative; text-align: center; }
.ctaf-chip { display: inline-flex; align-items: center; gap: 7px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .06em; color: #dd9b78; border: 1px solid rgba(221,155,120,.4); padding: 6px 14px; border-radius: 999px; }
.ctaf-chip .material-symbols-outlined { font-size: 16px; }
.ctaf-h { font-family: 'Libre Caslon Text', Georgia, serif; font-weight: 400; font-size: clamp(27px,4.2vw,40px); line-height: 1.12; color: #fdf9f1; margin: 24px 0 0; }
.ctaf-sub { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.55; color: #b8b3aa; margin: 16px auto 0; max-width: 32ch; }
.ctaf-price { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin: 30px 0 0; }
.ctaf-now { font-family: 'Libre Caslon Text', Georgia, serif; font-size: clamp(46px,9vw,64px); color: #fff; line-height: 1; }
.ctaf-was { font-family: 'Inter', sans-serif; font-size: 24px; color: #8a857c; text-decoration: line-through; }
.ctaf-cap { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #9a958c; margin-top: 10px; }
.ctaf-bascule { max-width: 34rem; margin: 22px auto 0; display: flex; flex-direction: column; gap: 12px; }
.ctaf-bascule p { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.55; color: #b8b3aa; margin: 0; }
.ctaf-bascule p:last-child { color: #cfcabf; }
.ctaf-btn { display: inline-flex; align-items: center; gap: 10px; background: #b85c38; color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; border: none; border-radius: 5px; padding: 19px 44px; margin-top: 28px; cursor: pointer; box-shadow: 0 14px 44px -14px rgba(184,92,56,.6); transition: transform .2s, background-color .2s; }
.ctaf-btn .material-symbols-outlined { font-size: 20px; }
.ctaf-btn:hover { transform: translateY(-2px); background: #dd9b78; color: #1c1c17; }
.ctaf-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 24px; }
.ctaf-trust span { display: inline-flex; align-items: center; gap: 7px; font-family: 'Inter', sans-serif; font-size: 13px; color: #cfcabf; }
.ctaf-trust .material-symbols-outlined { color: #9dd2b5; font-size: 18px; }
.ctaf-deadline { font-family: 'Inter', sans-serif; font-size: 13px; color: #b8b3aa; margin: 26px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); max-width: 30rem; }
.ctaf-deadline b { color: #dd9b78; font-weight: 600; }
.ctaf-ps { text-align: left; max-width: 34rem; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }
.ctaf-ps p { font-family: 'Inter', sans-serif; font-style: italic; color: #cfcabf; line-height: 1.6; font-size: 15px; margin: 0; }
.ctaf-ps b { color: #dd9b78; font-weight: 600; font-style: normal; }

/* Parallax */
.parallax-frame { will-change: transform; }

/* Tech drawing */
.tech-drawing { position: relative; background: transparent; border: 1px solid #7b776f; }
.tech-drawing::before { content: ''; position: absolute; top: -5px; left: -5px; width: 10px; height: 1px; background: #7b776f; }
.tech-drawing::after  { content: ''; position: absolute; bottom: -5px; right: -5px; width: 10px; height: 1px; background: #7b776f; }
.corner-accent { position: absolute; width: 8px; height: 8px; border: 1px solid #7b776f; }

/* Hero — entrée en cascade */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-stagger > * { opacity: 0; animation: heroRise .8s cubic-bezier(.16,1,.3,1) forwards; }
.hero-stagger > *:nth-child(1) { animation-delay: .05s; }
.hero-stagger > *:nth-child(2) { animation-delay: .18s; }
.hero-stagger > *:nth-child(3) { animation-delay: .31s; }
.hero-stagger > *:nth-child(4) { animation-delay: .44s; }
.hero-stagger > *:nth-child(5) { animation-delay: .57s; }

/* Titre ligne par ligne */
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; transform: translateY(105%); animation: lineUp .9s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero-title .line:nth-child(1) > span { animation-delay: .15s; }
.hero-title .line:nth-child(2) > span { animation-delay: .27s; }
.hero-title .line:nth-child(3) > span { animation-delay: .39s; }
.hero-title .line:nth-child(4) > span { animation-delay: .51s; }

/* Hero media scan */
.hero-media { opacity: 0; animation: heroRise 1s cubic-bezier(.16,1,.3,1) .35s forwards; }
.hero-media .scan {
  position: absolute; left: 0; right: 0; height: 28%;
  background: linear-gradient(to bottom, rgba(54,104,80,0) 0%, rgba(54,104,80,.18) 50%, rgba(54,104,80,0) 100%);
  top: -28%; animation: scanDown 2.6s cubic-bezier(.7,0,.3,1) 1s 1 forwards; pointer-events: none;
}
@keyframes scanDown { 0% { top: -28%; } 100% { top: 100%; } }

/* Hero fond + téléphone flottant */
.hero-bg {
  background:
    radial-gradient(58% 60% at 76% 42%, rgba(255,252,245,.95) 0%, rgba(255,252,245,0) 60%),
    radial-gradient(44% 50% at 80% 40%, rgba(221,155,120,.10) 0%, rgba(221,155,120,0) 70%),
    radial-gradient(54% 66% at 12% 92%, rgba(157,210,181,.10) 0%, rgba(157,210,181,0) 70%),
    linear-gradient(160deg, #fdf9f1 0%, #f6f1e6 100%);
}
.hero-stage { position: relative; height: 100%; min-height: 380px; }
.hero-shadow { position: absolute; bottom: 7%; left: 50%; width: 50%; height: 26px; background: rgba(28,28,23,.20); filter: blur(22px); border-radius: 50%; transform: translateX(-50%) scale(.5); opacity: 0; animation: heroShadowIn 2s cubic-bezier(.2,.85,.25,1) .4s forwards; z-index: 1; }
.hero-float { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; animation: heroReveal 2s cubic-bezier(.2,.85,.25,1) .4s forwards; will-change: transform, filter, opacity; }
.hero-phone { max-height: 90%; max-width: 92%; width: auto; display: block; animation: heroBob 8s ease-in-out 2.6s infinite; filter: drop-shadow(0 34px 50px rgba(28,28,23,.16)) drop-shadow(0 10px 18px rgba(28,28,23,.10)); }
@keyframes heroReveal { 0% { opacity: 0; transform: translateY(56px) scale(.92); filter: blur(8px); } 55% { opacity: 1; } 100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes heroShadowIn { to { opacity: 1; transform: translateX(-50%) scale(1); } }
@keyframes heroBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* Aperçu produit */
.apv-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding: 64px 24px 0; }
@media (min-width: 768px) { .apv-inner { grid-template-columns: 5fr 7fr; padding: 84px 36px 0; } }
.apv-right { display: flex; flex-direction: column; align-items: center; padding-bottom: 44px; width: 100%; }
.apv-fan { position: relative; height: 560px; max-width: 680px; width: 100%; overflow: hidden; }
@media (min-width: 768px) { .apv-fan { height: 700px; } }
.apv-fan::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 84px; background: linear-gradient(rgba(246,241,230,0), #f3eee2); pointer-events: none; z-index: 6; }
.apv-ph { position: absolute; left: 50%; transform-origin: top center; cursor: pointer; margin: 0; transition: transform .75s cubic-bezier(.2,.8,.2,1), width .75s cubic-bezier(.2,.8,.2,1), top .75s cubic-bezier(.2,.8,.2,1), opacity .75s ease; }
.apv-ph img { width: 100%; height: auto; display: block; filter: drop-shadow(0 26px 36px rgba(28,28,23,.22)); }
.apv-c { top: 0; width: 300px; transform: translateX(-50%); z-index: 5; cursor: zoom-in; }
.apv-c img { filter: drop-shadow(0 30px 42px rgba(28,28,23,.26)); }
.apv-l { top: 60px; width: 240px; transform: translateX(-50%) translateX(-150px) rotate(-6deg); z-index: 2; }
.apv-r { top: 60px; width: 240px; transform: translateX(-50%) translateX(150px) rotate(6deg); z-index: 2; }
@media (min-width: 768px) {
  .apv-c { width: 405px; }
  .apv-l { width: 330px; transform: translateX(-50%) translateX(-212px) rotate(-6deg); }
  .apv-r { width: 330px; transform: translateX(-50%) translateX(212px) rotate(6deg); }
}
.apv.reveal-section:not(.active) .apv-ph { transform: translateX(-50%) translateY(44px) !important; opacity: 0; }
.apv-caps { display: flex; gap: 10px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.apv-cap { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #7b776f; background: none; border: 1px solid #cbc6bd; border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: all .3s; }
.apv-cap.is-on { color: #fff; background: #366850; border-color: #366850; }
.apv-hint { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #9a958c; margin-top: 14px; text-align: center; }
.apv-lb { position: fixed; inset: 0; background: rgba(28,28,23,.94); display: none; z-index: 99; overflow: auto; padding: 44px 0 64px; text-align: center; }
.apv-lb.open { display: block; }
.apv-lb img { width: min(86vw, 560px); height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
.apv-lb-x { position: fixed; top: 18px; right: 22px; background: none; border: 1px solid rgba(253,249,241,.45); color: #fdf9f1; font-family: 'JetBrains Mono', monospace; border-radius: 999px; padding: 10px 16px; cursor: pointer; font-size: 12px; letter-spacing: .08em; z-index: 100; }
.apv-lb-hint { color: rgba(253,249,241,.55); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .12em; margin-top: 20px; text-transform: uppercase; }
.apv-lb.wide img { width: min(92vw, 1100px); }

/* Offre */
.ofr-spread { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; pointer-events: none; }
.ofr-spread img { width: 100%; height: auto; display: block; opacity: 0; transform: translateY(36px); transition: opacity 1.1s ease .1s, transform 1.1s cubic-bezier(.16,1,.3,1) .1s; }
.reveal-section.active .ofr-spread img { opacity: 1; transform: none; }
.ofr-card { position: relative; z-index: 2; margin-top: -92px; }
@media (max-width: 767px) { .ofr-card { margin-top: -40px; } }

/* Dream — laptop flottant */
@media (min-width: 768px) { #dream .dream-stage { order: -1; } }
.dream-stage { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 360px; padding: 44px 28px; }
.dream-shadow { position: absolute; bottom: 13%; left: 50%; width: 60%; height: 24px; background: rgba(28,28,23,.18); filter: blur(22px); border-radius: 50%; transform: translateX(-50%) scale(.6); opacity: 0; transition: opacity 1s ease .15s, transform 1s cubic-bezier(.16,1,.3,1) .15s; }
.reveal-section.active .dream-shadow { opacity: 1; transform: translateX(-50%) scale(1); }
.dream-float { position: relative; z-index: 2; width: 100%; max-width: 620px; opacity: 0; transform: translateY(40px) scale(.96); transition: opacity 1s ease .15s, transform 1s cubic-bezier(.16,1,.3,1) .15s; }
.reveal-section.active .dream-float { opacity: 1; transform: none; }
.dream-laptop { width: 100%; height: auto; display: block; cursor: zoom-in; filter: drop-shadow(0 30px 44px rgba(28,28,23,.18)) drop-shadow(0 10px 16px rgba(28,28,23,.10)); }
.reveal-section.active .dream-laptop { animation: heroBob 9s ease-in-out 1.8s infinite; }
.dream-hint { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #9a958c; margin-top: 18px; text-align: center; position: relative; z-index: 2; }

/* Soulignement "quand" */
.quand-underline { position: absolute; left: 0; bottom: -2px; height: 3px; width: 100%; background: #366850; transform: scaleX(0); transform-origin: left; animation: underlineGrow .7s cubic-bezier(.16,1,.3,1) 1.1s forwards; }
@keyframes underlineGrow { to { transform: scaleX(1); } }

/* Split-text par lettre */
.hero-tagline .char { display: inline-block; opacity: 0; transform: translateY(0.5em); animation: charIn .5s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes charIn { to { opacity: 1; transform: translateY(0); } }

/* Nightmare — bulles messagerie */
.chat-bubble { opacity: 0; transform: translateY(12px); }
.reveal-section.active .chat-bubble { animation: bubbleUp .5s cubic-bezier(.16,1,.3,1) forwards; }
.reveal-section.active .chat-bubble:nth-child(1) { animation-delay: .1s; }
.reveal-section.active .chat-bubble:nth-child(2) { animation-delay: .3s; }
.reveal-section.active .chat-bubble:nth-child(3) { animation-delay: .5s; }
.reveal-section.active .chat-bubble:nth-child(4) { animation-delay: .7s; }
@keyframes bubbleUp { to { opacity: 1; transform: translateY(0); } }

/* Indicateur "..." */
.typing-dot { width: 6px; height: 6px; border-radius: 9999px; background: #7b776f; display: inline-block; animation: typingPulse 1.2s infinite ease-in-out; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingPulse { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* "ok" sec */
.reveal-section.active .ok-drop { animation: okDrop .4s cubic-bezier(.7,0,.84,0) .85s both; }
@keyframes okDrop { 0% { opacity: 0; transform: translateY(-14px); } 100% { opacity: 1; transform: translateY(0); } }

/* Annotations */
.annot { opacity: 0; }
.reveal-section.active .annot { animation: annotIn .5s ease forwards; }
.reveal-section.active .annot:nth-of-type(1) { animation-delay: 1s; }
.reveal-section.active .annot:nth-of-type(2) { animation-delay: 1.12s; }
.reveal-section.active .annot:nth-of-type(3) { animation-delay: 1.24s; }
.reveal-section.active .annot:nth-of-type(4) { animation-delay: 1.36s; }
@keyframes annotIn { to { opacity: 1; } }

/* Hypothèses */
.hyp { opacity: 0; transform: translateX(-8px); }
.reveal-section.active .hyp { animation: hypIn .45s ease forwards; }
.reveal-section.active .hyp:nth-child(1) { animation-delay: .3s; }
.reveal-section.active .hyp:nth-child(2) { animation-delay: .5s; }
.reveal-section.active .hyp:nth-child(3) { animation-delay: .7s; }
.reveal-section.active .hyp:nth-child(4) { animation-delay: .9s; }
@keyframes hypIn { to { opacity: 1; transform: translateX(0); } }
.status-flash { opacity: 0; }
.reveal-section.active .status-flash { animation: statusFlash .6s ease 1.2s forwards; }
@keyframes statusFlash { 0% { opacity: 0; } 50% { opacity: 1; background: rgba(186,26,26,.12); } 100% { opacity: 1; background: transparent; } }

/* Révélation lente des lignes */
.line-reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.line-reveal.shown { opacity: 1; transform: translateY(0); }
.line-reveal.dim { color: #7b776f; }
.blink { display: inline-block; width: .5ch; background: #ba1a1a; color: transparent; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.copy-toast { opacity: 0; transition: opacity .25s ease; }
.copy-toast.show { opacity: 1; }

/* Insight */
.ins-reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.ins-reveal.shown { opacity: 1; transform: translateY(0); }
.ins-punch { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.ins-punch.shown { opacity: 1; transform: translateY(0); }
.etape-underline { display: block; height: 4px; width: 100%; background: #9dd2b5; transform: scaleX(0); transform-origin: left; transition: transform .8s cubic-bezier(.16,1,.3,1) .5s; }
.ins-punch.shown .etape-underline { transform: scaleX(1); }

/* Encadré hausse de prix */
.price-box { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.price-box.shown { opacity: 1; transform: translateY(0); }
.price-strike { position: relative; display: inline-block; }
.price-strike::after { content: ""; position: absolute; left: -6%; top: 52%; width: 0; height: 3px; background: #ba1a1a; transition: width .6s cubic-bezier(.16,1,.3,1) .5s; }
.price-box.shown .price-strike::after { width: 112%; }

/* Sceau garantie */
.seal-box { opacity: 0; transform: scale(.96); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.seal-box.shown { opacity: 1; transform: scale(1); }
.seal-shield { opacity: 0; transform: translateY(8px); transition: opacity .5s ease .25s, transform .5s ease .25s; }
.seal-box.shown .seal-shield { opacity: 1; transform: translateY(0); }

/* Témoignages */
.tmoin { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.tmoin.shown { opacity: 1; transform: translateY(0); }

/* Parcours */
.step-row { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.step-row.shown { opacity: 1; transform: translateY(0); }
.parcours-bar .seg { transition: background-color .5s ease; }
.pv2-line { position: absolute; left: 0; top: 18px; width: 2px; max-height: calc(100% - 18px); background: linear-gradient(to bottom, #366850, #9dd2b5); height: 0; transition: height .15s linear; border-radius: 2px; }
.pv2-step { opacity: .4; transition: opacity .5s ease; }
.pv2-step.active { opacity: 1; }
.pv2-dot { transition: background-color .4s, border-color .4s, color .4s, box-shadow .4s; color: #7b776f; z-index: 2; }
.pv2-step.active .pv2-dot { background: #366850; border-color: #366850; color: #fff; box-shadow: 0 0 0 6px rgba(54,104,80,.15); }
.pv2-visual { transition: opacity .5s ease; }
.pv2-step:not(.active) .pv2-visual { opacity: .55; }

/* Éventail de captures */
.preview-shot { opacity: 0; transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-section.active .preview-shot { opacity: 1; }
.preview-fan .preview-shot:nth-child(1) { transform: translateX(60%) rotate(0deg); }
.preview-fan .preview-shot:nth-child(2) { transform: translateX(-60%) rotate(0deg); }
.reveal-section.active .preview-fan .preview-shot:nth-child(1) { transform: translateX(0) rotate(-6deg); transition-delay: .15s; }
.reveal-section.active .preview-fan .preview-shot:nth-child(2) { transform: translateX(0) rotate(6deg); transition-delay: .25s; }
.reveal-section.active .preview-fan .preview-shot:nth-child(3) { transition-delay: .05s; }

/* Placeholders image */
.hero-img-slot, .dream-img-slot, .shot-slot {
  background-color: #ece8e0 !important;
  background-image: repeating-linear-gradient(45deg, rgba(123,119,111,.08) 0 1px, transparent 1px 10px) !important;
  position: relative;
}
.hero-img-slot::after, .dream-img-slot::after {
  content: "VISUEL À INTÉGRER";
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .15em; color: #7b776f; white-space: nowrap;
}


/* ================================================================
   CGV — SPÉCIFIQUE
   ================================================================ */

/* Masquer la ligne de header du tableau id (CGV uniquement) */
.id-table tr:first-child td { display: none; }

/* Processus de commande */
.step-list { display: flex; flex-direction: column; gap: 0; margin-top: 16px; border: 1px solid #e6e2da; }
.step-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px 16px; border-bottom: 1px solid #e6e2da; font-family: 'Inter', sans-serif; font-size: 14px; color: #4a4640; line-height: 1.5; }
.step-item:last-child { border-bottom: none; }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #366850; flex-shrink: 0; padding-top: 2px; min-width: 20px; }

/* Cases à cocher */
.checkbox-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: #f7f3eb; border: 1px solid #ccc6bd; margin-top: 8px; font-family: 'Inter', sans-serif; font-size: 14px; color: #4a4640; line-height: 1.5; }
.checkbox-item + .checkbox-item { border-top: none; margin-top: 0; }
.cb-square { width: 14px; height: 14px; border: 1px solid #7b776f; flex-shrink: 0; margin-top: 2px; }

/* Résumé en-tête */
.summary-strip { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #ccc6bd; border-bottom: 1px solid #ccc6bd; }
@media (min-width: 640px) { .summary-strip { grid-template-columns: repeat(4,1fr); } }
.summary-item { padding: 20px 18px; border-right: 1px solid #ccc6bd; }
.summary-item:last-child { border-right: none; }
@media (max-width: 639px) {
  .summary-item:nth-child(2n) { border-right: none; }
  .summary-item { border-bottom: 1px solid #ccc6bd; }
  .summary-item:last-child, .summary-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
.s-val { font-family: 'Libre Caslon Text', Georgia, serif; font-size: clamp(16px,2vw,20px); color: #1c1c17; display: block; margin-bottom: 4px; }
.s-val em { color: #366850; font-style: italic; }
.s-desc { font-family: 'Inter', sans-serif; font-size: 12px; color: #7b776f; line-height: 1.4; }


/* ================================================================
   CONFIDENTIALITÉ — SPÉCIFIQUE
   ================================================================ */

/* Tableau générique */
.data-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 13px; }
.data-table th { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #7b776f; background: #f7f3eb; padding: 10px 12px; border: 1px solid #e6e2da; text-align: left; font-weight: 400; }
.data-table td { padding: 10px 12px; border: 1px solid #e6e2da; font-family: 'Inter', sans-serif; color: #4a4640; line-height: 1.45; vertical-align: top; }
.data-table td strong { color: #1c1c17; }
.data-table a { color: #366850; text-decoration: none; border-bottom: 1px solid rgba(54,104,80,.3); }
.data-table tr:hover td { background: #fdfaf4; }

/* Durées de conservation */
.duration-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid #e6e2da; padding: 16px 0; align-items: baseline; }
.duration-row:last-child { border-bottom: none; }
.duration-category { font-family: 'Inter', sans-serif; font-size: 14px; color: #4a4640; line-height: 1.45; padding-right: 24px; }
.duration-val { font-family: 'Libre Caslon Text', Georgia, serif; font-size: 18px; color: #366850; font-weight: 400; font-style: italic; white-space: nowrap; }
@media (max-width: 599px) { .duration-row { grid-template-columns: 1fr; gap: 6px; } }

/* Grille droits */
.rights-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: #e6e2da; border: 1px solid #e6e2da; margin-top: 16px; }
@media (min-width: 640px) { .rights-grid { grid-template-columns: 1fr 1fr; } }
.right-item { background: #fdf9f1; padding: 18px 20px; }
.right-item:hover { background: #f7f3eb; }
.right-name { font-family: 'Libre Caslon Text', Georgia, serif; font-size: 15px; color: #1c1c17; font-weight: 400; display: block; margin-bottom: 6px; }
.right-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: #7b776f; line-height: 1.45; }

/* Badge RGPD */
.rgpd-badge { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #366850; border: 1px solid rgba(54,104,80,.3); padding: 8px 14px; border-radius: 2px; margin-bottom: 20px; }


/* ================================================================
   CONTACT — SPÉCIFIQUE
   ================================================================ */

.page-hero-bg {
  background:
    radial-gradient(54% 66% at 12% 92%, rgba(157,210,181,.08) 0%, rgba(157,210,181,0) 70%),
    linear-gradient(160deg, #fdf9f1 0%, #f6f1e6 100%);
}
.page-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #366850; }
.page-title { font-family: 'Libre Caslon Text', Georgia, serif; font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.02em; color: #1c1c17; font-weight: 400; }
.page-intro { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: #4a4640; max-width: 36ch; }

.contact-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 28px 0; border-bottom: 1px solid #ccc6bd; gap: 24px; transition: background .2s; position: relative; cursor: default; }
@media (max-width: 639px) { .contact-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; } }
.contact-row:first-child { border-top: 1px solid #ccc6bd; }
.cr-situation { font-family: 'Inter', sans-serif; font-size: 15px; color: #4a4640; line-height: 1.45; }
.cr-situation strong { font-family: 'Libre Caslon Text', Georgia, serif; font-weight: 400; font-size: 18px; color: #1c1c17; display: block; margin-bottom: 4px; }
.cr-email-wrap { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
@media (max-width: 639px) { .cr-email-wrap { justify-content: flex-start; } }
.cr-email { font-family: 'JetBrains Mono', monospace; font-size: clamp(12px, 1.5vw, 14px); color: #1c1c17; text-decoration: none; letter-spacing: 0.01em; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; padding-bottom: 1px; }
.cr-email:hover { color: #366850; border-color: #366850; }
.cr-copy { background: none; border: 1px solid #ccc6bd; color: #7b776f; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: 3px; cursor: pointer; transition: background .18s, color .18s, border-color .18s; flex-shrink: 0; white-space: nowrap; }
.cr-copy:hover { background: #1c1c17; color: #fdf9f1; border-color: #1c1c17; }
.cr-copy.copied { background: #366850; color: #fff; border-color: #366850; }
.contact-row:has(.cr-email:hover),
.contact-row:has(.cr-copy:hover) { background: rgba(54, 104, 80, .03); }

.delay-strip { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid #ccc6bd; margin-top: 48px; }
.delay-item { flex: 1 1 200px; padding: 20px 24px; border-right: 1px solid #ccc6bd; }
.delay-item:last-child { border-right: none; }
@media (max-width: 767px) { .delay-item { border-right: none; border-bottom: 1px solid #ccc6bd; } .delay-item:last-child { border-bottom: none; } }
.delay-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #7b776f; display: block; margin-bottom: 8px; }
.delay-val { font-family: 'Libre Caslon Text', Georgia, serif; font-size: 22px; color: #1c1c17; font-weight: 400; }
.delay-note { font-family: 'Inter', sans-serif; font-size: 12px; color: #7b776f; margin-top: 4px; line-height: 1.4; }

.address-line { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #7b776f; line-height: 2; letter-spacing: .02em; }

/* Delays reveal sur contact */
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }


/* ================================================================
   COOKIES — SPÉCIFIQUE
   ================================================================ */

.cookies-overview { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid #ccc6bd; margin-bottom: 48px; }
.cookie-cat { display: grid; grid-template-columns: 4px 1fr; border-bottom: 1px solid #e6e2da; }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-bar { width: 4px; }
.cookie-cat-body { padding: 20px 22px; }
.cookie-cat-header { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.cookie-cat-name { font-family: 'Libre Caslon Text', Georgia, serif; font-size: 17px; color: #1c1c17; font-weight: 400; }
.cookie-status { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.status-active  { background: rgba(54,104,80,.1); color: #366850; }
.status-consent { background: rgba(184,92,56,.1); color: #b85c38; }
.status-none    { background: #f1ede5; color: #7b776f; }
.cookie-cat-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: #7b776f; line-height: 1.5; }

.cookie-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 12px; }
.cookie-table th { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #7b776f; background: #f7f3eb; padding: 8px 10px; border: 1px solid #e6e2da; text-align: left; font-weight: 400; }
.cookie-table td { padding: 8px 10px; border: 1px solid #e6e2da; font-family: 'Inter', sans-serif; color: #4a4640; line-height: 1.4; vertical-align: top; }
.cookie-table code { font-family: 'JetBrains Mono', monospace; font-size: 11px; background: #f1ede5; padding: 1px 5px; border-radius: 2px; color: #1c1c17; }

.browser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #e6e2da; border: 1px solid #e6e2da; margin-top: 14px; }
@media (min-width: 640px) { .browser-grid { grid-template-columns: repeat(4,1fr); } }
.browser-item { background: #fdf9f1; padding: 14px 16px; }
.browser-name { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .06em; color: #1c1c17; display: block; margin-bottom: 4px; font-weight: 500; }
.browser-path { font-family: 'Inter', sans-serif; font-size: 12px; color: #7b776f; line-height: 1.4; }

.rights-inline { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.right-pill { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #366850; border: 1px solid rgba(54,104,80,.3); padding: 6px 12px; }

.consent-strip { background: #f7f3eb; border: 1px solid #e6e2da; padding: 20px 22px; margin-top: 14px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.consent-option { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13px; color: #4a4640; }
.consent-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }


/* ================================================================
   MENTIONS LÉGALES — SPÉCIFIQUE
   ================================================================ */

.lcen-ref { font-family: 'JetBrains Mono', monospace; font-size: clamp(11px,1.4vw,14px); letter-spacing: .04em; color: rgba(54,104,80,.5); line-height: 1.6; word-break: break-word; }

.id-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid #ccc6bd; }
@media (min-width: 768px) { .id-grid { grid-template-columns: 1fr 1fr; } }
.id-card { padding: 32px 28px; border-bottom: 1px solid #ccc6bd; }
@media (min-width: 768px) { .id-card { border-bottom: none; border-right: 1px solid #ccc6bd; } .id-card:last-child { border-right: none; } }
.id-card-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #7b776f; display: block; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #e6e2da; }
.id-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; padding: 9px 0; border-bottom: 1px solid #f1ede5; align-items: baseline; }
.id-row:last-child { border-bottom: none; }
.id-key { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #7b776f; }
.id-val { font-family: 'Inter', sans-serif; font-size: 13px; color: #1c1c17; line-height: 1.45; word-break: break-word; }
.id-val a { color: #366850; text-decoration: none; border-bottom: 1px solid rgba(54,104,80,.3); }

/* Wrapper mentions légales */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: clamp(48px,6vw,80px) clamp(20px,5vw,64px); }

/* Sections légales (mentions uniquement — NE PAS confondre avec .legal-section layout) */
.ml-section { padding: 32px 0; border-bottom: 1px solid #e6e2da; }
.ml-section:last-of-type { border-bottom: none; }
.section-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #7b776f; display: block; margin-bottom: 10px; }
.section-title { font-family: 'Libre Caslon Text', Georgia, serif; font-size: clamp(18px,2vw,22px); color: #1c1c17; font-weight: 400; line-height: 1.25; margin-bottom: 16px; }
.section-body { font-family: 'Inter', sans-serif; font-size: 15px; color: #4a4640; line-height: 1.7; }
.section-body strong { color: #1c1c17; font-weight: 600; }
.section-body a { color: #366850; text-decoration: none; border-bottom: 1px solid rgba(54,104,80,.3); }

.contact-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-list-item { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; font-family: 'Inter', sans-serif; font-size: 14px; color: #4a4640; }
.contact-list-item .cl-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #7b776f; flex-shrink: 0; }
.contact-list-item a { color: #366850; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; border-bottom: 1px solid rgba(54,104,80,.3); }


/* ================================================================
   REMBOURSEMENT — SPÉCIFIQUE
   ================================================================ */

.hero-sixty {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: clamp(120px, 22vw, 240px);
  line-height: .88; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(54,104,80,.2);
  user-select: none; pointer-events: none; display: block;
}

.guarantee-strip { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #ccc6bd; }
@media (min-width: 768px) { .guarantee-strip { grid-template-columns: repeat(4, 1fr); } }
.guarantee-item { padding: 28px 24px; border-right: 1px solid #ccc6bd; border-bottom: 1px solid #ccc6bd; }
@media (max-width: 767px) {
  .guarantee-item:nth-child(2n) { border-right: none; }
  .guarantee-item:nth-child(3), .guarantee-item:nth-child(4) { border-bottom: none; }
}
@media (min-width: 768px) { .guarantee-item { border-bottom: none; } .guarantee-item:last-child { border-right: none; } }
.guarantee-val { font-family: 'Libre Caslon Text', Georgia, serif; font-size: clamp(22px,3vw,32px); line-height: 1; color: #1c1c17; font-weight: 400; display: block; margin-bottom: 8px; }
.guarantee-val em { color: #366850; font-style: italic; }
.guarantee-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: #7b776f; line-height: 1.45; }

.refund-cta { background: #1c1c17; padding: clamp(40px,6vw,64px) clamp(20px,5vw,64px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.refund-email-btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .04em; color: #1c1c17; background: #fdf9f1; padding: 14px 24px; text-decoration: none; border-radius: 3px; white-space: nowrap; flex-shrink: 0; transition: background .2s; }
.refund-email-btn:hover { background: #9dd2b5; }

.legal-article { padding: 32px 0; border-bottom: 1px solid #e6e2da; }
.legal-article:last-child { border-bottom: none; }
.article-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #7b776f; display: block; margin-bottom: 10px; }

.contact-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.contact-table td { padding: 12px 16px; border: 1px solid #e6e2da; font-family: 'Inter', sans-serif; font-size: 14px; color: #4a4640; }
.contact-table tr:first-child td { background: #f1ede5; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #7b776f; }
.contact-table a { color: #366850; text-decoration: none; border-bottom: 1px solid rgba(54,104,80,.3); }


/* ================================================================
   PREFERS-REDUCED-MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal-section, .btn-hover-effect, .parallax-frame, .pulse-accent,
  .hero-stagger > *, .hero-title .line > span, .hero-media, .hero-media .scan,
  .quand-underline, .hero-tagline .char,
  .chat-bubble, .typing-dot, .ok-drop, .annot, .hyp, .status-flash,
  .line-reveal, .blink, .preview-shot, .ins-reveal, .ins-punch, .etape-underline,
  .step-row, .hero-float, .hero-shadow, .hero-phone {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .hero-shadow { transform: translateX(-50%) !important; }
  .apv-ph { transition: none !important; }
  .apv.reveal-section:not(.active) .apv-ph { opacity: 1 !important; }
  .apv.reveal-section:not(.active) .apv-c { transform: translateX(-50%) !important; }
  .apv.reveal-section:not(.active) .apv-l { transform: translateX(-50%) translateX(-212px) rotate(-6deg) !important; }
  .apv.reveal-section:not(.active) .apv-r { transform: translateX(-50%) translateX(212px) rotate(6deg) !important; }
  .dream-float, .dream-laptop { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
  .dream-shadow { transition: none !important; opacity: 1 !important; transform: translateX(-50%) !important; }
  .ofr-spread img { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-media .scan { display: none !important; }
  .fade-up { transition: none; opacity: 1; transform: none; }
  .nav-dot.is-ready { animation: none; transform: translateX(var(--np2, 0px)); }
}
