/* =======================================================================
01) DESIGN TOKENS (couleurs, rayons, espacements, typos)
======================================================================= */
:root{
  /* Palette “japonaise / shiatsu” */
  --bg: #071116;
  /* sumi / ink */
  --bg-2:#0a1b22;
  /* indigo */
  --paper:#fbfaf6;
  /* washi */
  --ink:#0b1317;
  /* texte sur clair */
  --mist: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.16);
  --accent:#c23b2a;
  /* vermillon */
  --accent-2:#c23b2a;
  /* rouge accent secondaire */
  --jade:#1aa6a0;
  /* touche zen */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --space-xs: .6rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;
  --shadow-soft: 0 14px 34px rgba(0,0,0,.18);
  --shadow-strong: 0 22px 60px rgba(0,0,0,.28);
  --serif: "Noto Serif JP", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --focus: 0 0 0 3px rgba(194,59,42,.35), 0 0 0 1px rgba(194,59,42,.75) inset;
}
/* =======================================================================
02) RESET + BASE
======================================================================= */
*{
  box-sizing:border-box;
}
html{
  background: var(--bg);
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:var(--sans);
  background: var(--bg);
  color: var(--paper);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a{
  color:inherit;
  text-decoration:none;
}
img{
  max-width:100%;
  display:block;
}
:focus-visible{
  outline:none;
  box-shadow: var(--focus);
  border-radius: 10px;
}
/* =======================================================================
03) LAYOUT (containers / sections / helpers)
======================================================================= */
.container{
  width:min(1140px, 92vw);
  margin-inline:auto;
}
.section{
  padding: var(--space-2xl) 0;
  position:relative;
}
.section-dark{
  background: var(--bg);
  color: var(--paper);
}
.section-light{
  background: var(--paper);
  color: var(--ink);
}
.center{
  text-align:center;
}
/* Fond “washi/brume” (sans diagonales) */
.pattern{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.65;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.12), transparent 52%),
    radial-gradient(circle at 88% 10%, rgba(194,59,42,.12), transparent 54%),
    radial-gradient(circle at 50% 105%, rgba(26,166,160,.10), transparent 60%),
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.05), transparent 30%),
    radial-gradient(circle at 65% 55%, rgba(0,0,0,.07), transparent 36%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.04), transparent 34%),
    linear-gradient(to bottom, rgba(255,255,255,.06), transparent 28%);
}
.section-light .pattern{
  opacity:.22;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 16% 18%, rgba(194,59,42,.09), transparent 56%),
    radial-gradient(circle at 86% 12%, rgba(194,59,42,.09), transparent 56%),
    radial-gradient(circle at 24% 30%, rgba(10,20,25,.06), transparent 32%),
    radial-gradient(circle at 70% 62%, rgba(10,20,25,.05), transparent 36%),
    linear-gradient(to bottom, rgba(10,20,25,.04), transparent 30%);
}
/* =======================================================================
04) TYPO (titres, sous-titres, badges)
======================================================================= */
.kicker-hero{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:700;
  letter-spacing:.04em;
  font-size:2.4rem;
  color: rgba(255,255,255,.92);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:700;
  letter-spacing:.04em;
  font-size:0.82rem;
  color: rgba(255,255,255,.92);
}
.section-light .kicker{
  background: rgba(10,20,25,.04);
  border-color: rgba(10,20,25,.12);
  color: rgba(10,20,25,.88);
}
.section-title{
  margin: .7rem 0 var(--space-sm);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  letter-spacing: .01em;
  line-height: 1.15;
}
.section-subtitle{
  margin:0;
  max-width: 760px;
  opacity:.86;
  font-size: 1.04rem;
}
.section-light .section-subtitle{
  opacity:.82;
}
/* (utile pour le sous-titre témoignages) */
.testimonials-subtitle{
  margin-inline:auto;
  text-align:center;
}
/* =======================================================================
05) BUTTONS
======================================================================= */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:.6rem;
  border-radius: 14px;
  border: 0;
  padding: 1rem 1.25rem;
  font-weight: 800;
  font-size: .98rem;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
  will-change: transform;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), #9d2f24);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(194,59,42,.26);
}
.btn-primary:hover{
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 0 0 2px rgba(194,59,42,.22), 0 16px 34px rgba(194,59,42,.28);
}
.btn-secondary{
  background: rgba(255,255,255,.08);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn-primary-blue{
  background: linear-gradient(135deg, #2b6dff, #1237c9);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(43,109,255,.26);
}
.btn-primary-blue:hover{
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 0 0 2px rgba(43,109,255,.22), 0 16px 34px rgba(43,109,255,.28);
}
.btn-secondary:hover{
  transform: translateY(-2px) scale(1.015);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 2px rgba(194,59,42,.20), inset 0 0 0 1px rgba(255,255,255,.10);
}
.btn-outline{
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10,20,25,.20);
  box-shadow: inset 0 0 0 1px rgba(10,20,25,.06);
}
.btn-outline:hover{
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 22px rgba(10,20,25,.10);
}
/* Typewriter dans le CTA (desktop = 1 ligne, mobile = wrap) */
.typewriter{
  position: relative;
  display: inline;
  white-space: nowrap;
}
.typewriter::after{
  content: "";
  display: inline-block;
  width: 10px;
  height: 1.05em;
  margin-left: .35rem;
  transform: translateY(.15em);
  background: rgba(255,255,255,.78);
  border-radius: 2px;
  animation: caretBlink 1s steps(1) infinite;
  opacity: .85;
}
@keyframes caretBlink{
  50% {
    opacity: 0;
  }
}
/* =========================
BTN OUTLINE — fond blanc
========================= */
a.btn.btn-outline{
  background: transparent;
  color: var(--ink);
  /* texte sombre */
  border: 1px solid rgba(10,20,25,.20);
  box-shadow: inset 0 0 0 1px rgba(10,20,25,.06);
  text-decoration: none;
}
/* États */
a.btn.btn-outline:hover,
a.btn.btn-outline:focus,
a.btn.btn-outline:active,
a.btn.btn-outline:visited{
  color: var(--ink);
  /* empêche blanc ou bleu */
  background: rgba(10,20,25,.04);
  border-color: rgba(10,20,25,.30);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 22px rgba(10,20,25,.10);
  text-decoration: none;
}
/* Icônes / éléments internes */
a.btn.btn-outline *{
  color: inherit;
}

/* =========================
  TOPBAR (TON STYLE ORIGINAL)
  ========================= */
  .topbar{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(7,17,22,.52);
    border-bottom: 1px solid rgba(255,255,255,.12);
    /* ✅ nécessaire pour l'animation hide/show */
    transform: translateY(0);
    transition: transform .28s ease, opacity .28s ease;
    will-change: transform;
  }
  .topbar .wrap{
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: .9rem 0;
    gap: 1rem;
  }
  .navlinks{
    position: relative;
    --dot-x: 50%;
    display:flex;
    align-items:center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: .92rem;
    opacity:.92;
  }
  .navlinks::after{
    content: "";
    position: absolute;
    left: var(--dot-x);
    bottom: -6px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgb(194 59 42 / 95%);
    transform: translateX(-50%) scale(0.7);
    opacity: 0;
    transition: left .24s ease, opacity .18s ease, transform .18s ease;
  }
  .navlinks.has-active-dot::after{
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  .navlinks a{
    padding: .45rem .65rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background .18s ease, border-color .18s ease;
  }
  .navlinks a[href="#hero"]{
    font-size: 1rem;
  }
  .navlinks a.nav-login{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .9rem;
    border-color: rgba(194,59,42,.45);
    background: rgba(194,59,42,.14);
    font-weight: 800;
  }
  .navlinks a.nav-login:hover{
    background: rgba(194,59,42,.22);
    border-color: rgba(194,59,42,.75);
  }
  .navlinks a:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
  }
  /* =========================
  BOUTON HAMBURGER
  ========================= */
  .navtoggle{
    display:none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }
  .navtoggle__bar{
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    transition: transform .18s ease, opacity .18s ease;
  }
  /* =========================
  RESPONSIVE (mobile/tablette)
  ========================= */
  @media (max-width: 820px){
    .topbar .wrap{
      padding: .7rem 0;
      min-height: 54px;
    }
    .navtoggle{
      display:flex;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
    }
    .navlinks{
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: calc(100% + 10px);
      width: min(92vw, 520px);
      padding: .75rem;
      gap: .35rem;
      background: rgba(7,17,22,.95);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      box-shadow: 0 18px 44px rgba(0,0,0,.38);
      display: grid;
      grid-auto-rows: min-content;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity .18s ease, visibility .18s ease;
      z-index: 2;
    }
    .navlinks::after{
      display: none;
    }
    .navlinks a{
      width: 100%;
      padding: .6rem .75rem;
      border-radius: 12px;
    }
    .navlinks a.nav-login{
      justify-content: center;
      padding: .7rem .85rem;
    }
    .navlinks[data-open="true"]{
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
    }
    /* animation hamburger -> croix */
    .navtoggle[aria-expanded="true"] .navtoggle__bar:nth-child(1){
      transform: translateY(7px) rotate(45deg);
    }
    .navtoggle[aria-expanded="true"] .navtoggle__bar:nth-child(2){
      opacity: 0;
    }
    .navtoggle[aria-expanded="true"] .navtoggle__bar:nth-child(3){
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  /* Accessibilité: réduit animations si demandé */
  @media (prefers-reduced-motion: reduce){
    .topbar{
      transition: none !important;
    }
  }
  /* =========================================
TOPBAR: empêcher les liens de devenir bleus
========================================= */
.topbar .navlinks a,
.topbar .navlinks a:visited,
.topbar .navlinks a:hover,
.topbar .navlinks a:focus,
.topbar .navlinks a:active{
  color: rgba(255,255,255,.92) !important;
  text-decoration: none !important;
}

#hero.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: calc(var(--space-2xl, 5.5rem) + 3.2rem) 0 var(--space-xl, 3.5rem);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #071116;
    color: var(--paper, #fbfaf6);
    font-family: "Poppins", var(--sans);
  }
  #hero.hero::before,
  #hero.hero::after{
    display: none;
  }
  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  #hero .canvas-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse 58% 52% at 50% 46%,
        rgba(7,17,22,.88) 0%,
        rgba(7,17,22,.50) 55%,
        rgba(7,17,22,0) 82%
      );
  }
  #hero .container {
    width: min(1140px, 92vw);
    margin-inline: auto;
  }
  #hero .hero-word-cloud,
  #hero .pattern,
  #hero .hero-word{
    display: none !important;
  }
  #hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
  }
  #hero .kicker-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .24rem .62rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.04);
    font-weight: 400;
    letter-spacing: .12em;
    font-size: .75rem;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
  }
  #hero .hero-title {
    margin: .9rem 0 0;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 6.8vw, 5.6rem);
    line-height: 1.05;
    letter-spacing: .01em;
  }
  #hero .hero-title-l1{
    display: block;
    font-family: inherit;
    line-height: 1.02;
  }
  #hero .hero-title .ia-badge {
    display: inline-block;
    position: relative;
    margin-left: .22em;
    padding: .04em .22em .06em;
    border-radius: .22em;
    background: linear-gradient(135deg, #c23b2a 0%, #9d2f24 100%);
    color: #fbfaf6;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow:
      0 0 0 1px rgba(255,255,255,.10),
      0 6px 24px rgba(194,59,42,.45),
      0 2px 8px rgba(0,0,0,.35);
    animation: iaBadgePulse 3s ease-in-out infinite;
    vertical-align: .04em;
    font-size: .88em;
  }
  #hero .hero-title .ia-badge::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(194,59,42,.55), transparent 72%);
    z-index: -1;
    animation: iaHalo 3s ease-in-out infinite;
    filter: blur(6px);
  }
  #hero .hero-title .ia-badge::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
    animation: iaScan 2.4s ease-in-out infinite;
  }
  @keyframes iaBadgePulse {
    0%, 100% {
      box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 6px 24px rgba(194,59,42,.45), 0 2px 8px rgba(0,0,0,.35);
    }
    50% {
      box-shadow: 0 0 0 2px rgba(255,255,255,.16), 0 8px 36px rgba(194,59,42,.70), 0 2px 12px rgba(0,0,0,.40);
    }
  }
  @keyframes iaHalo {
    0%, 100% { opacity: .5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.18); }
  }
  @keyframes iaScan {
    0% { left: 10%; right: 80%; opacity: 0; }
    15%, 85% { opacity: 1; }
    100% { left: 80%; right: 10%; opacity: 0; }
  }
  #hero .hero-subtitle {
    margin: 1.5rem auto 1rem;
    font-weight: 300;
    font-size: clamp(1.08rem, 2.2vw, 1.55rem);
    max-width: 44ch;
    opacity: .92;
  }
  #hero .hero-description {
    margin: 0 auto 2.2rem;
    font-weight: 300;
    font-size: clamp(.95rem, 1.6vw, 1.12rem);
    line-height: 1.7;
    max-width: 76ch;
    opacity: .86;
  }
  #hero .hero-ctas {
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
  }
  #hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border: 0;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    font-weight: 800;
    font-size: .98rem;
    cursor: pointer;
    text-decoration: none;
  }
  #hero .btn-primary {
    background: linear-gradient(135deg, var(--accent, #c23b2a), #9d2f24);
    color: var(--paper, #fbfaf6);
    box-shadow: 0 14px 28px rgba(194,59,42,.26);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  #hero .btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 0 0 2px rgba(194,59,42,.22), 0 16px 34px rgba(194,59,42,.28);
  }
  #hero .chat-cta {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: .95rem;
    padding: .75rem 1rem .75rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    text-align: left;
    box-shadow: 0 16px 36px rgba(0,0,0,.18);
    width: min(760px, 100%);
    margin-inline: auto;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    color: var(--paper, #fbfaf6) !important;
    text-decoration: none !important;
  }
  #hero .chat-cta:hover {
    transform: translateY(-2px) scale(1.012);
    background: rgba(255,255,255,.12);
    border-color: rgba(194,59,42,.24);
    box-shadow: 0 0 0 2px rgba(194,59,42,.18), 0 18px 44px rgba(0,0,0,.22);
  }
  #hero .chat-cta * {
    color: inherit !important;
  }
  #hero .chat-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.26);
    background-image: url("images/ODL_portrait.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 0 0 54px;
    position: relative;
    overflow: hidden;
  }
  #hero .chat-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%);
    mix-blend-mode: screen;
  }
  #hero .chat-cta-text {
    display: grid;
    gap: .2rem;
    line-height: 1.18;
    min-width: 0;
    flex: 1 1 auto;
  }
  #hero .chat-cta-text b {
    font-size: .98rem;
    font-weight: 400;
  }
  #hero .chat-cta-text span {
    font-weight: 300;
    font-size: .84rem;
    opacity: .85;
  }
  #hero .typewriter {
    position: relative;
    display: inline;
    white-space: nowrap;
  }
  #hero .typewriter::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 1.05em;
    margin-left: .35rem;
    transform: translateY(.15em);
    background: rgba(255,255,255,.8);
    border-radius: 2px;
    animation: caretBlink 1s steps(1) infinite;
  }
  @keyframes caretBlink {
    50% {
      opacity: 0;
    }
  }
  @media (min-width: 821px) {
    #hero .chat-cta {
      width: min(640px, 100%);
    }
    #hero .chat-cta i {
      margin-left: auto;
    }
  }
  @media (max-width: 1024px) {
    /* mots OFF tablette/mobile */
    #hero .hero-word {
      display: none !important;
    }
  }
  @media (max-width: 820px) {
    #hero.hero {
      padding: calc(var(--space-xl, 3.5rem) + 3.6rem) 0 var(--space-lg, 2.2rem);
    }
    #hero .hero-content {
      max-width: 92vw;
    }
    #hero .hero-description {
      max-width: 62ch;
    }
  }
  @media (max-width: 560px) {
    #hero .chat-cta {
      border-radius: 18px;
      padding: .8rem .9rem;
      gap: .75rem;
      align-items: flex-start;
    }
    #hero .chat-avatar {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
    }
    #hero .chat-cta i {
      display: none;
    }
    #hero .chat-cta-text b {
      font-size: .95rem;
    }
    #hero .chat-cta-text span {
      font-size: .82rem;
    }
    #hero .typewriter {
      display: block;
      white-space: normal;
      overflow-wrap: anywhere;
    }
  }
  @media (max-width: 420px) {
    #hero .hero-ctas .btn {
      width: 100%;
      justify-content: center;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    #hero-canvas{
      display: none;
    }
    #hero .hero-title .ia-badge,
    #hero .hero-title .ia-badge::before,
    #hero .hero-title .ia-badge::after,
    #hero .hero-word,
    #hero .typewriter::after {
      animation: none !important;
    }
  }
  .hero-title{
    margin: .9rem 0 0;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 6.8vw, 5.6rem);
    line-height: 1.05;
    letter-spacing: .01em;
  }

.intro-grid{
        display:grid;
        grid-template-columns: 1.1fr .9fr;
        gap: var(--space-xl);
        align-items:center;
        position:relative;
        z-index:2;
      }
      #intro.section-light{
        background: #f6f6f6;
      }
      .intro-copy{
        font-family: "Poppins", var(--sans);
        font-size: 1.02rem;
        color: #1f2430;
      }
      .intro-copy .kicker{
        font-family: "Poppins", var(--sans);
        font-weight: 400;
        font-size: .78rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(128,70,60,.9);
        border: 1px solid rgba(172,120,108,.25);
        background: #f3efed;
        margin-bottom: 1.2rem;
      }
      .intro-copy .kicker i{
        color: #a23125;
      }
      #intro .section-title{
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-family: "Raleway", sans-serif;
        font-size: clamp(2.1rem, 4.4vw, 3rem);
        font-weight: 800;
        line-height: 1.06;
        letter-spacing: -.01em;
        color: #111827;
      }
      #intro .section-title b{
        color: #a23125;
        font-weight: 800;
      }
      .intro-copy p{
        margin: 0 0 1.35rem;
        font-weight: 300;
        font-size: 1.07rem;
        line-height: 1.65;
        color: rgba(17,24,39,.75);
      }
      .intro-copy p u{
        text-underline-offset: 5px;
        text-decoration-color: rgba(130,130,130,.55);
        text-decoration-thickness: 1px;
      }
      #intro .intro-cta{
        margin-top: .55rem;
        border-radius: 999px;
        padding: .82rem 1.12rem;
        font-size: .94rem;
        font-weight: 500;
        border-color: rgba(17,24,39,.16);
        box-shadow: inset 0 0 0 1px rgba(17,24,39,.04);
        background: rgba(255,255,255,.7);
      }
      #intro .intro-cta:hover{
        border-color: rgba(17,24,39,.26);
        background: rgba(255,255,255,.92);
      }
      #intro .intro-cta i{
        color: #a23125;
      }
      .intro-visual{
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid rgba(10,20,25,.10);
        box-shadow: 0 10px 26px rgba(15,23,42,.10);
        background: #fff;
        margin: 0;
        min-height: 390px;
        position: relative;
      }
      .intro-visual-img{
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center center;
        background: #fff;
      }
      /* voile doux */
      .intro-visual::after{
        content:"";
        position:absolute;
        inset:0;
        background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,0) 20%);
        pointer-events:none;
      }
      /* =========================
      RESPONSIVE (AJOUTS UNIQUEMENT)
      (sans modifier tes règles existantes)
      ========================= */
      /* Tablette: colonnes plus équilibrées + image un peu moins haute */
      @media (max-width: 980px){
        .intro-grid{
          grid-template-columns: 1fr 1fr;
          gap: var(--space-lg);
        }
        .intro-visual{
          min-height: 320px;
        }
      }
      /* Mobile: empilement, texte centré, image en dessous */
      @media (max-width: 820px){
        .intro-grid{
          grid-template-columns: 1fr;
          gap: var(--space-lg);
          text-align: center;
        }
        .intro-copy{
          font-size: 1rem;
        }
        .intro-copy .btn{
          margin-inline: auto;
          /* centre le bouton si display inline-block */
        }
        .intro-visual{
          min-height: 300px;
          width: min(560px, 100%);
          margin-inline: auto;
        }
        .intro-copy p{
          max-width: 100%;
        }
        #intro .intro-cta{
          width: min(100%, 460px);
          justify-content: center;
        }
      }
      /* Très petit: image moins haute */
      @media (max-width: 420px){
        .intro-visual{
          min-height: 220px;
        }
      }
      /* =========================================
      CTA INTRO — indépendant sur fond blanc
      ========================================= */
      .section-light a.btn.btn-outline{
        background: transparent;
        color: var(--ink) !important;
        /* texte sombre forcé */
        border: 1px solid rgba(10,20,25,.20);
        box-shadow: inset 0 0 0 1px rgba(10,20,25,.06);
        text-decoration: none !important;
      }
      /* Tous les états */
      .section-light a.btn.btn-outline:hover,
      .section-light a.btn.btn-outline:focus,
      .section-light a.btn.btn-outline:active,
      .section-light a.btn.btn-outline:visited{
        color: var(--ink) !important;
        /* empêche bleu ou blanc */
        background: rgba(10,20,25,.04);
        border-color: rgba(10,20,25,.30);
        transform: translateY(-2px) scale(1.015);
        box-shadow: 0 10px 22px rgba(10,20,25,.10);
        text-decoration: none !important;
      }
      /* Icône et éléments internes */
      .section-light a.btn.btn-outline *,
      .section-light a.btn.btn-outline:hover *{
        color: inherit !important;
      }

/* =========================
   WHATSAPP CTA SECTION
   ========================= */
.whatsapp-cta-section {
  background: #fff;
  margin-top: 30px;
}
.whatsapp-cta-section .pattern {
  opacity: .12;
}
.whatsapp-cta-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.whatsapp-cta-title {
  margin: 0 0 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #111827;
}
.whatsapp-cta-desc {
  margin: 0 0 1.5rem;
  font-family: "Poppins", var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(17, 24, 39, .78);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: #25D366;
  color: #fff !important;
  font-family: "Poppins", var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #20bd5a;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .4);
}
.btn-whatsapp i {
  font-size: 1.35rem;
}

/* Variante dans la modal : ombre réduite / supprimée */
.guide-modal .btn-whatsapp {
  box-shadow: none;
}
.guide-modal .btn-whatsapp:hover,
.guide-modal .btn-whatsapp:focus {
  box-shadow: none;
}

/* WhatsApp section pleine largeur, fond sombre (page chat) */
.whatsapp-cta-section--dark {
  position: relative;
  width: 100%;
  padding: var(--space-2xl, 3.5rem) var(--space-md, 1.5rem);
  background:
    radial-gradient(circle at 50% -20%, rgba(26,60,92,.25), transparent 48%),
    linear-gradient(180deg, #041020 0%, #020a16 100%);
  color: #f4f4f6;
}
.whatsapp-cta-section--dark .pattern {
  opacity: .18;
  mix-blend-mode: screen;
}
.whatsapp-cta-section--dark .whatsapp-cta-title {
  color: #f4f4f6;
}
.whatsapp-cta-section--dark .whatsapp-cta-desc {
  color: rgba(244, 244, 246, .82);
}
.whatsapp-cta-section--dark .whatsapp-cta-inner {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
}

/* =========================
   Modal Guide WhatsApp
   ========================= */
.guide-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 3rem;
  overflow-y: auto;
  background: rgba(2, 10, 22, .88);
  backdrop-filter: blur(6px);
  -webkit-overflow-scrolling: touch;
}
.guide-modal-overlay[aria-hidden="true"],
.guide-modal-overlay[hidden] {
  display: none;
}
.guide-modal {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: auto;
  background: var(--paper, #fbfaf6);
  color: var(--ink, #0a1419);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .35);
}
.guide-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 20, 25, .08);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.guide-modal__close:hover,
.guide-modal__close:focus {
  background: rgba(194, 59, 42, .15);
  color: #b23a31;
}
.guide-modal__body {
  padding: 2rem 1.75rem 2.25rem;
}
.guide-modal__title {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
}
.guide-modal__intro {
  margin: 0 0 1.75rem;
  font-family: "Poppins", var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(10, 20, 25, .82);
}
.guide-modal__title-icon {
  font-size: 1.4rem;
  color: #25D366;
  filter: drop-shadow(0 4px 10px rgba(37, 211, 102, .45));
}
.guide-modal__number {
  margin: 1rem 0 1.4rem;
  font-family: "Poppins", var(--sans);
  font-size: .96rem;
  line-height: 1.6;
}
.guide-modal__number-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .4rem;
  font-weight: 600;
}
.guide-modal__number-label i {
  color: #25D366;
}
.guide-modal__number-btn {
  margin-top: .1rem;
}
.guide-modal__number a:not(.btn-whatsapp) {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}
.guide-modal__number a:not(.btn-whatsapp):hover,
.guide-modal__number a:not(.btn-whatsapp):focus {
  text-decoration: underline;
  color: #20bd5a;
}
.guide-modal__block {
  margin-bottom: 2rem;
}
.guide-modal__block:last-child {
  margin-bottom: 0;
}
.guide-modal__h2 {
  margin: 0 0 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
}
.guide-modal__block p {
  margin: 0 0 .85rem;
  font-family: "Poppins", var(--sans);
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(10, 20, 25, .85);
}
.guide-modal__block p:last-child {
  margin-bottom: 0;
}
.guide-modal__block a {
  color: #b23a31;
  text-decoration: underline;
}
.guide-modal__block a:hover,
.guide-modal__block a:focus {
  color: #8a2c26;
}
.guide-modal__steps-intro {
  margin: 0 0 1rem;
  font-family: "Poppins", var(--sans);
  font-size: 1rem;
  color: rgba(10, 20, 25, .82);
}
.guide-modal .steps-simple {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
}
.guide-modal .steps-simple::before {
  left: 1.4rem;
}
.guide-modal .stepSimple-body p + p {
  margin-top: .5rem;
}
.guide-modal .stepSimple-body ul {
  margin: .6rem 0 0;
  padding-left: 1.25rem;
}
.guide-modal .stepSimple-body li {
  margin-bottom: .25rem;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(10, 20, 25, .8);
}
.guide-modal__h3 {
  margin: 0 0 .6rem;
  font-family: "Poppins", var(--sans);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--ink);
}
.guide-modal__faq .guide-modal__h2 {
  margin-bottom: 1rem;
}
.guide-modal__faq .faqX {
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  gap: .5rem;
}
.guide-modal__faq .faqX-q {
  padding: .85rem 1rem;
  font-family: "Poppins", var(--sans);
  font-weight: 600;
  font-size: .98rem;
}
.guide-modal__faq .faqX-aInner {
  padding: 0 1rem 1rem;
}
.guide-modal__faq .faqX-aInner p {
  font-size: .95rem;
}
.guide-modal__faq .faqX-aInner p + p {
  margin-top: .5rem;
}

/* =========================
   Section Cadeaux (index)
   ========================= */
#cadeaux.gifts-section {
  background: #f1eee8;
  color: #111827;
  padding-top: clamp(3.2rem, 6vw, 4.8rem);
  padding-bottom: clamp(3.2rem, 6vw, 4.8rem);
}
.gifts-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 0 auto .9rem;
  padding: .38rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(194,59,42,.2);
  background: rgba(255,255,255,.55);
  color: rgba(130,52,44,.95);
  font-family: "Poppins", var(--sans);
  font-weight: 600;
  font-size: .73rem;
  letter-spacing: .14em;
}
.gifts-title {
  margin: 0 auto 2.8rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: #111827;
  text-wrap: balance;
}
.gifts-title b {
  color: #b23a31 !important;
  font-weight: 800;
}
.gifts-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.gift-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(194,59,42,.15);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1rem;
}
.gift-badge {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-bottom: .65rem;
  border-radius: 999px;
  background: #a8342c;
  color: #fff;
  font-family: "Poppins", var(--sans);
  font-weight: 700;
  font-size: .84rem;
}
.gift-card h3 {
  margin: 0 0 .9rem;
  font-family: "Poppins", var(--sans);
  font-size: clamp(1.14rem, 2.2vw, 1.65rem);
  line-height: 1.3;
  color: #111827;
}
.gift-highlight {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .8rem;
  margin-bottom: .9rem;
  border-radius: 13px;
  background: #f2eee8;
}
.gift-highlight-icon {
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(10,20,25,.14);
  background: #fff;
  display: grid;
  place-items: center;
  color: #a8342c;
  font-size: 1.25rem;
  overflow: visible;
}
.gift-highlight-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.gift-highlight-whatsapp-badge {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #25d366;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.22);
}
.gift-highlight-whatsapp-badge i {
  font-size: .82rem;
  line-height: 1;
}
.gift-highlight p {
  margin: 0;
  font-family: "Poppins", var(--sans);
  font-size: .98rem;
  line-height: 1.45;
  color: rgba(17,24,39,.82);
}
.gift-copy {
  margin: 0 0 .8rem;
  font-family: "Poppins", var(--sans);
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(17,24,39,.82);
}
.gift-footnote {
  margin: 0;
  padding-top: .55rem;
  font-family: "Poppins", var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(17,24,39,.88);
}
.gift-footnote i {
  color: #a8342c;
}
.gift-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .95rem;
}
.gift-tags span {
  padding: .28rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(10,20,25,.12);
  background: #fff;
  font-family: "Poppins", var(--sans);
  font-size: .8rem;
  color: rgba(17,24,39,.78);
}
@media (max-width: 900px) {
  .gifts-title {
    max-width: 15ch;
  }
  .gifts-grid {
    grid-template-columns: 1fr;
  }
}

#temoignages .section-title{
    margin: 0 auto .8rem;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -.01em;
    color: #f4f4f6;
    text-wrap: balance;
  }
  #temoignages .section-title b{
    color: #b23a31;
    font-weight: 800;
  }
  #temoignages .testimonials-subtitle {
    margin-inline: auto;
    max-width: 660px;
    font-family: "Poppins", var(--sans);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.4;
    color: rgba(255,255,255,.72);
  }
  @media (max-width: 720px){
    #temoignages .section-title{
      max-width: 15ch;
    }
    #temoignages .testimonials-subtitle{
      font-size: 1.02rem;
    }
  }
  #temoignages .carousel {
    position: relative;
    margin-top: 2.2rem;
  }
  #fonctionnement .section-title{
    margin: 0 auto .8rem;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -.01em;
    color: #111827;
    text-wrap: balance;
  }
  #fonctionnement .section-title b{
    color: #b23a31 !important;
    font-weight: 800;
  }
  @media (max-width: 720px){
    #fonctionnement .section-title{
      max-width: 15ch;
    }
  }
  #temoignages .carousel.carousel--multi {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  #temoignages .carousel--multi .carousel-viewport {
    overflow: hidden;
    border-radius: 24px;
    padding: 0.35rem;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }
  #temoignages .carousel--multi .carousel-track {
    display: flex;
    gap: 1.15rem;
    align-items: stretch;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  #temoignages .carousel--multi .testimonial-slide {
    min-width: calc((100% - 1.15rem) / 2);
    padding: 1.9rem 1.8rem 1.45rem;
    border-radius: 22px;
    background:
      radial-gradient(circle at 85% 100%, rgba(178,58,49,.08), transparent 42%),
      linear-gradient(180deg, rgba(18,22,30,.94), rgba(10,13,19,.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    position: relative;
    color: #f2f3f6;
  }
  #temoignages .carousel--multi .testimonial-slide::before {
    content: "\201C";
    position: absolute;
    top: 0.72rem;
    left: 0.92rem;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 2.3rem;
    line-height: 1;
    color: rgba(178,58,49,.72);
  }
  #temoignages .carousel--multi .testimonial-slide p {
    margin: 0 0 1.05rem;
    padding-left: 1.65rem;
    color: rgba(238,241,246,.9);
    font-family: "Poppins", var(--sans);
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.74;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  #temoignages .carousel--multi .testimonial-slide cite {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-style: normal;
    font-family: "Poppins", var(--sans);
    font-weight: 600;
    color: rgba(245,246,249,.94);
    padding-left: 1.65rem;
  }
  #temoignages .carousel--multi .testimonial-slide cite::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(178,58,49,.95);
  }
  #temoignages .carousel--multi .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding-top: 0.9rem;
  }
  #temoignages .carousel--multi .carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(14,18,26,.78);
    color: rgba(255,255,255,.72);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }
  #temoignages .carousel--multi .carousel-btn:hover {
    transform: translateY(-1px);
    color: rgba(255,255,255,.92);
    box-shadow: 0 0 0 2px rgba(178,58,49,.24), 0 10px 24px rgba(0,0,0,.35);
  }
  #temoignages .carousel--multi .carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }
  #temoignages .carousel--multi .carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.26);
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease;
  }
  #temoignages .carousel--multi .carousel-dot.active {
    width: 22px;
    background: rgba(178,58,49,.96);
  }
  @media (max-width: 1080px) {
    #temoignages .carousel--multi .testimonial-slide {
      padding: 1.7rem 1.45rem 1.3rem;
    }
    #temoignages .carousel--multi .testimonial-slide p {
      font-size: 0.99rem;
    }
  }
  @media (max-width: 720px) {
    #temoignages .carousel--multi .carousel-viewport {
      padding: 0;
      border-radius: 20px;
    }
    #temoignages .carousel--multi .carousel-track {
      gap: 0.9rem;
    }
    #temoignages .carousel--multi .testimonial-slide {
      min-width: 100%;
      border-radius: 20px;
      padding: 1.45rem 1.2rem 1.15rem;
    }
    #temoignages .carousel--multi .testimonial-slide::before {
      font-size: 2.8rem;
      top: 0.45rem;
      left: 0.75rem;
    }
    #temoignages .carousel--multi .testimonial-slide p,
    #temoignages .carousel--multi .testimonial-slide cite {
      padding-left: 1.45rem;
    }
    #temoignages .carousel--multi .testimonial-slide p {
      font-size: 0.96rem;
      line-height: 1.65;
    }
    #temoignages .carousel--multi .carousel-btn {
      width: 38px;
      height: 38px;
      opacity: 0.92;
    }
    #temoignages .carousel--multi .carousel-dot {
      width: 10px;
      height: 10px;
    }
    #temoignages .carousel--multi .carousel-dot.active {
      width: 24px;
    }
  }
  @media (max-width: 420px) {
    #temoignages .carousel--multi .carousel-btn {
      display: none;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    #temoignages .carousel--multi .carousel-track,
    #temoignages .carousel--multi .carousel-btn,
    #temoignages .carousel--multi .carousel-dot {
      transition: none !important;
    }
  }

/* =========================================
  CTA CENTRÉ — totalement indépendant
  ========================================= */
  .hero-ctas{
    display:flex;
    justify-content:center;
    /* centre horizontalement */
    align-items:center;
    width:100%;
  }
  /* Sécurité : si un autre CSS change le display */
  .hero-ctas > .btn{
    display:inline-flex;
  }
  /* Optionnel : responsive mobile */
  @media (max-width: 420px){
    .hero-ctas{
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .hero-ctas .btn{
      width:100%;
      justify-content:center;
    }
  }

/* ✅ Étapes simples : vertical, propre, sans bugs */
  .steps-simple{
    margin: var(--space-xl) auto 0;
    max-width: 860px;
    display: grid;
    gap: 1rem;
  }
  /* Carte étape */
  .stepSimple{
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.1rem 1.1rem;
    border-radius: 22px;
    border: 1px solid rgba(10,20,25,.10);
    box-shadow: 0 16px 34px rgba(10,20,25,.10);
    background:
      radial-gradient(circle at 18% 18%, rgba(194,59,42,.06), transparent 58%),
      radial-gradient(circle at 82% 78%, rgba(26,166,160,.05), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
    transition: transform .18s ease, box-shadow .18s ease;
  }
  /* Petit hover léger (optionnel mais classy) */
  .stepSimple:hover{
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(10,20,25,.12);
  }
  /* Badge numéro */
  .stepSimple-badge{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: rgba(194,59,42,.92);
    background: rgba(194,59,42,.10);
    border: 1px solid rgba(194,59,42,.22);
    box-shadow: 0 10px 22px rgba(10,20,25,.10);
  }
  /* Texte */
  .stepSimple-body h3{
    margin: .05rem 0 .25rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: rgba(10,20,25,.92);
  }
  .stepSimple-body p{
    margin: 0;
    color: rgba(10,20,25,.78);
    line-height: 1.7;
  }
  /* Mobile */
  @media (max-width: 720px){
    .steps-simple{
      margin-top: var(--space-lg);
    }
    .stepSimple{
      grid-template-columns: 48px 1fr;
      padding: 1rem;
      gap: .85rem;
    }
    .stepSimple-badge{
      width: 40px;
      height: 40px;
    }
  }
  /* Ligne de progression derrière les 4 étapes */
  .steps-simple{
    position: relative;
  }
  /* ligne (derrière les cartes) */
  .steps-simple::before{
    content:"";
    position:absolute;
    left: 2.5rem;
    /* ajuste si besoin */
    top: .8rem;
    bottom: .8rem;
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(194,59,42,.18),
      rgba(10,20,25,.10),
      rgba(26,166,160,.16)
    );
    border-radius: 999px;
    z-index: 0;
  }
  /* mettre les cartes au-dessus de la ligne */
  .stepSimple{
    position: relative;
    z-index: 1;
  }
  /* “gomme” la ligne sous le rond */
  .stepSimple-badge{
    position: relative;
    z-index: 2;
    background: rgba(251,250,246,1);
    /* même que le fond clair */
  }
  .stepSimple-badge::after{
    content:"";
    position:absolute;
    inset:-8px;
    /* halo gomme */
    border-radius: 999px;
    background: rgba(251,250,246,1);
    z-index: -1;
  }

/* =========================================
TITRE & SOUS-TITRE — TEXTE NOIR INDÉPENDANT
========================================= */

.section-light .section-title.center,
.section-light .section-title.center b,
.section-light .section-subtitle.center{
  color: #000 !important;
}

/* Optionnel : centrage si non déjà géré */
.section-light .center{
  text-align: center;
}

/* =========================
  FAQ X — design + animation
  Ne dépend pas de ton ancien CSS FAQ
  ========================= */
  .faqX{
    max-width: 920px;
    margin: var(--space-lg) auto 0;
    display: grid;
    gap: var(--space-sm);
  }
  .faqX-item{
    background: var(--paper);
    color: var(--ink);
    border: 1px solid rgba(10,20,25,.10);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }
  /* bouton question */
  .faqX-q{
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    font-weight: 900;
    line-height: 1.35;
    transition: background .18s ease;
  }
  .faqX-q:hover{
    background: rgba(10,20,25,.03);
  }
  .faqX-q i{
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(10,20,25,.14);
    color: rgba(10,20,25,.70);
    transition: transform .25s ease, background .18s ease, border-color .18s ease;
  }
  .faqX-item.is-open .faqX-q i{
    transform: rotate(45deg);
    background: rgba(194,59,42,.08);
    border-color: rgba(194,59,42,.22);
    color: rgba(194,59,42,.90);
  }
  /* zone réponse animée */
  .faqX-a{
    height: 0px;
    /* animé en JS */
    overflow: hidden;
    transition: height .38s ease;
  }
  .faqX-aInner{
    padding: 0 var(--space-md) var(--space-md);
  }
  .faqX-aInner p{
    margin: 0;
    color: rgba(10,20,25,.78);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .faqX-item.is-open .faqX-aInner p{
    opacity: 1;
    transform: translateY(0);
  }
  /* petit accent “zen” */
  .faqX-item.is-open{
    box-shadow: 0 20px 44px rgba(10,20,25,.12);
    border-color: rgba(194,59,42,.18);
  }
  /* mobile */
  @media (max-width: 720px){
    .faqX-q{
      padding: 1rem;
    }
    .faqX-aInner{
      padding: 0 1rem 1rem;
    }
  }
  /* =========================
  FAQ section dark style (#io3lj)
  ========================= */
  #io3lj.section-light{
    background:
      radial-gradient(circle at 50% -20%, rgba(26,60,92,.25), transparent 48%),
      linear-gradient(180deg, #041020 0%, #020a16 100%);
    color: #f4f4f6;
  }
  #io3lj .pattern{
    opacity: .18;
    mix-blend-mode: screen;
  }
  #io3lj .section-title.center,
  #io3lj .section-title.center b{
    color: #f5f5f7 !important;
    font-family: "Raleway", sans-serif;
    font-size: clamp(2rem, 4.1vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: .45rem;
  }
  #io3lj .faqX-heading-subtitle{
    margin: 0 auto 2rem;
    font-family: "Poppins", var(--sans);
    font-size: .83rem;
    font-weight: 400;
    letter-spacing: .22em;
    color: rgba(239,239,243,.56);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
  }
  #io3lj .faqX-heading-subtitle::before,
  #io3lj .faqX-heading-subtitle::after{
    content: "";
    display: inline-block;
    width: 64px;
    height: 1px;
    background: rgba(239,239,243,.22);
  }
  #io3lj .faqX{
    max-width: 980px;
    gap: .78rem;
  }
  #io3lj .faqX-item{
    background: rgba(16,20,28,.86);
    color: #f4f5f8;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,.30);
    backdrop-filter: blur(2px);
  }
  #io3lj .faqX-q{
    padding: 1.2rem 1.25rem;
    font-family: "Poppins", var(--sans);
    font-size: 1.06rem;
    font-weight: 500;
    color: rgba(246,247,250,.96);
  }
  #io3lj .faqX-q:hover{
    background: rgba(255,255,255,.02);
  }
  #io3lj .faqX-q i{
    width: 33px;
    height: 33px;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(245,245,248,.72);
    background: rgba(6,10,17,.45);
  }
  #io3lj .faqX-item.is-open{
    border-color: rgba(162,49,37,.34);
    box-shadow: 0 16px 38px rgba(0,0,0,.34);
  }
  #io3lj .faqX-item.is-open .faqX-q i{
    transform: rotate(45deg);
    background: rgba(162,49,37,.18);
    border-color: rgba(162,49,37,.55);
    color: rgba(244,118,103,.95);
  }
  #io3lj .faqX-a{
    transition: height .34s ease;
  }
  #io3lj .faqX-aInner{
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  #io3lj .faqX-aInner p{
    color: rgba(233,236,242,.88);
    font-family: "Poppins", var(--sans);
    font-weight: 300;
    font-size: 1.03rem;
    line-height: 1.62;
  }
  @media (max-width: 720px){
    #io3lj .faqX-heading-subtitle{
      font-size: .73rem;
      letter-spacing: .17em;
      gap: .65rem;
      margin-bottom: 1.4rem;
    }
    #io3lj .faqX-heading-subtitle::before,
    #io3lj .faqX-heading-subtitle::after{
      width: 38px;
    }
    #io3lj .faqX-q{
      font-size: .98rem;
      padding: 1rem;
    }
    #io3lj .faqX-aInner{
      padding: 0 1rem 1rem;
    }
    #io3lj .faqX-aInner p{
      font-size: .95rem;
    }
  }

/* ================================
  BTN OUTLINE DARK — 100% indépendant
  ================================ */
  .btn-wrap{
    text-align:center;
  }
  /* On cible l'élément <a> directement */
  a.btn.btn-outline{
    --btn-text: rgba(255,255,255,.92);
    --btn-border: rgba(255,255,255,.28);
    --btn-border-hover: rgba(255,255,255,.45);
    --btn-bg-hover: rgba(255,255,255,.08);
    --btn-shadow: rgba(0,0,0,.35);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
    padding:.85rem 1.1rem;
    border-radius:999px;
    background:transparent;
    color:var(--btn-text) !important;
    /* ← verrouille la couleur */
    border:1px solid var(--btn-border);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    text-decoration:none !important;
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
  }
  /* Empêche tout hover externe de changer la couleur */
  a.btn.btn-outline:hover,
  a.btn.btn-outline:focus,
  a.btn.btn-outline:active,
  a.btn.btn-outline:visited{
    color:var(--btn-text) !important;
    text-decoration:none !important;
  }
  /* Hover visuel */
  a.btn.btn-outline:hover{
    background: var(--btn-bg-hover);
    border-color: var(--btn-border-hover);
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 12px 26px var(--btn-shadow);
  }
  /* Icônes / span / b héritent correctement */
  a.btn.btn-outline *,
  a.btn.btn-outline:hover *{
    color: inherit !important;
  }
  /* Focus accessibilité */
  a.btn.btn-outline:focus-visible{
    outline: 3px solid rgba(255,255,255,.65);
    outline-offset: 3px;
  }
  /* centrage */
  .btn-outline--center{
    margin-inline:auto;
  }

.footer{
    padding: var(--space-lg) 0 var(--space-md);
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    background: var(--bg);
  }
  .footer-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    opacity:.92;
  }
  .footer-links{
    display:flex;
    gap:.9rem;
    flex-wrap:wrap;
  }
  .footer-links a{
    padding:.25rem .1rem;
    border-bottom: 1px solid transparent;
  }
  .footer-links a:hover{
    color: var(--accent-2);
    border-bottom-color: rgba(194,59,42,.40);
  }
  /* =========================
  RESPONSIVE (AJOUTS UNIQUEMENT)
  ========================= */
  /* Tablette: un peu plus d’air + centrage léger */
  @media (max-width: 820px){
    .footer{
      padding: var(--space-md) 0 0;
    }
    .footer-wrap{
      justify-content: center;
      text-align: center;
      gap: .75rem;
    }
    .footer-links{
      justify-content: center;
    }
  }
  /* Mobile: liens “stackés” proprement */
  @media (max-width: 520px){
    .footer-wrap{
      flex-direction: column;
      align-items: center;
      gap: .65rem;
    }
    .footer-links{
      flex-direction: column;
      align-items: center;
      gap: .5rem;
    }
    .footer-links a{
      padding: .35rem .2rem;
    }
  }

/* =========================
   CHAT PAGE
   ========================= */
main.chat-page {
  padding-top: 96px;
  padding-bottom: 36px;
  min-height: calc(100vh - 180px);
  background: var(--bg, #071116);
  display: grid;
  align-items: center;
}

.chat-shell {
  width: min(900px, 92vw);
  margin: 0 auto;
}

.chat-disclaimer {
  margin: .75rem 0 0;
  font-size: .82rem;
  font-style: italic;
  color: rgba(238, 241, 246, 0.62);
  text-align: center;
}

.chat-card {
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #0b1317;
  overflow: hidden;
}

#chat {
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
}

.chat-widget {
  width: 100% !important;
}

/* =========================
   ERROR PAGE
   ========================= */
main.error-page {
  padding-top: 96px;
  min-height: calc(100vh - 180px);
  background: var(--bg, #071116);
  display: grid;
  align-items: center;
}

.error-shell {
  width: min(900px, 92vw);
  margin: 0 auto;
}

.error-card {
  min-height: 45vh;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #0b1317;
  padding: clamp(1.2rem, 2vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.9rem;
  text-align: center;
}

.error-card h1 {
  margin: 0;
  font-family: var(--serif, "Noto Serif JP", Georgia, serif);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.2;
}

.error-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(11, 19, 23, 0.82);
}

.error-card a,
.error-card a:visited,
.error-card a:hover,
.error-card a:focus,
.error-card a:active {
  text-decoration: underline !important;
}

