/* =========================================================
   Izibara — feuille de style partagée
   Charte : palette BRAND_BRIEF (vert WhatsApp #24d366 inspiré de
   wasenderapi.com, police Switzer, grands rayons) — ton chaleureux CI.
   ========================================================= */

/* ---------- POLICE (Switzer, auto-hébergée) ---------- */
@font-face { font-family: "Switzer"; src: url("../fonts/switzer-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../fonts/switzer-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../fonts/switzer-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../fonts/switzer-700.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Switzer"; src: url("../fonts/switzer-800.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }

/* Baloo 2 — police du wordmark logo (auto-hébergée) */
@font-face { font-family: "Baloo 2"; src: url("../fonts/baloo2-800.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }

/* ---------- TOKENS ---------- */
:root {
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-500: #737373;
  --black: #0A0A0A;

  /* Charte BRAND_BRIEF (vert WhatsApp wasenderapi) */
  --green: #24D366;          /* accent principal (CTA) */
  --green-dark: #1DA851;     /* hover */
  --green-neon: #3BF07A;     /* halo / lueur */
  --green-deep: #0E7A3A;     /* départ de dégradé sombre */
  --grad-green: linear-gradient(92deg, #1DA851 -0.56%, #24D366 102.02%);

  /* Teal WhatsApp (interface téléphone uniquement) */
  --teal-700: #075E54;
  --teal-500: #128C7E;

  /* Signal alerte (neutre, hors marque) */
  --warning-500: #D98B3F;
  --warning-600: #B96F28;

  --bg: var(--white);
  --text: var(--black);
  --text-soft: var(--gray-500);
  --surface: var(--white);
  --border: var(--gray-200);
  --nav-bg: rgba(245, 245, 245, 0.9);
  /* Variante opaque du header : utilisée en mobile, où le backdrop-filter doit
     être désactivé (voir la media query NAV). */
  --nav-bg-solid: #F5F5F5;

  --radius-card: 1.25rem;
  --radius-lg: 1rem;
  --maxw: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0A0A0A; --text: #F5F5F5; --text-soft: #A3A3A3;
    --surface: #171717; --border: #262626;
    --nav-bg: rgba(10, 10, 10, 0.86); --nav-bg-solid: #0A0A0A;
  }
}
:root[data-theme="dark"] {
  --bg: #0A0A0A; --text: #F5F5F5; --text-soft: #A3A3A3;
  --surface: #171717; --border: #262626;
  --nav-bg: rgba(10, 10, 10, 0.86); --nav-bg-solid: #0A0A0A;
}
:root[data-theme="light"] {
  --bg: var(--white); --text: var(--black); --text-soft: var(--gray-500);
  --surface: var(--white); --border: var(--gray-200);
  --nav-bg: rgba(245, 245, 245, 0.9); --nav-bg-solid: #F5F5F5;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); overflow-x: hidden; }
body {
  font-family: "Switzer", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: "Switzer", -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800; letter-spacing: -0.015em; text-wrap: balance; margin: 0; color: var(--text);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--green); color: #06210f; padding: 0.6rem 1rem; border-radius: 0 0 0.5rem 0; font-weight: 700;
}
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- BOUTONS ---------- */
/* Anneau au survol/focus — halo d'entourage commun à tous les boutons du site */
.btn-cta, .btn-outline, .nav-cta { position: relative; }
.btn-cta::after, .btn-outline::after, .nav-cta::after {
  content: ""; position: absolute; inset: -5px; z-index: -1; border-radius: 100px;
  border: 1.5px solid rgba(36,211,102,0.55); opacity: 0; transform: scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none;
}
.btn-cta:hover::after, .btn-cta:focus-visible::after,
.btn-outline:hover::after, .btn-outline:focus-visible::after,
.nav-cta:hover::after, .nav-cta:focus-visible::after { opacity: 1; transform: scale(1); }

.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  background: var(--grad-green); color: #06210f; font-weight: 700; font-size: 1.02rem;
  padding: 0.95rem 1.6rem; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 10px 28px -10px rgba(36,211,102,0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
/* Halo lumineux renforcé au survol — CTA principal "Essayer gratuitement" */
.btn-cta:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 16px 40px -8px rgba(36,211,102,0.85), 0 0 34px -6px rgba(59,240,122,0.6); }
.btn-cta:active { transform: translateY(0) scale(0.98); box-shadow: 0 6px 18px -10px rgba(36,211,102,0.55); }
.btn-cta:focus-visible { outline: 3px solid var(--green-neon); outline-offset: 3px; }
.btn-cta svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  background: transparent; color: var(--text); font-weight: 700; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: 100px; border: 1px solid var(--border); cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.btn-outline:hover { border-color: var(--green); background: rgba(36,211,102,0.06); }
.btn-outline:active { transform: scale(0.98); }

/* ---------- NAV (header flottant) ---------- */
.nav {
  position: sticky; top: 0.75rem; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  max-width: min(1240px, calc(100% - 1.5rem)); margin: 0.75rem auto 0;
  padding: 0.7rem clamp(1rem, 2.5vw, 1.5rem) 0.7rem clamp(1.1rem, 2.5vw, 1.6rem);
  background: var(--nav-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 100px;
  box-shadow: 0 8px 30px -14px rgba(0,0,0,0.28);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.nav.scrolled { box-shadow: 0 12px 34px -12px rgba(0,0,0,0.4); }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
/* Logo hibou (app icon, fond vert #24D366) — voir BRAND_BRIEF */
.nav-logo .mark { width: 2rem; height: 2rem; border-radius: 0.55rem; display: block; }
/* Wordmark « izibara » — Baloo 2 ExtraBold, vert de marque #0A5C36 monochrome */
.nav-logo .wordmark {
  font-family: "Baloo 2", "Switzer", sans-serif; font-weight: 800;
  font-size: 1.4rem; line-height: 1; color: #0A5C36; letter-spacing: -0.005em;
}
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; font-size: 0.95rem; color: var(--text-soft); }
.nav-links a { position: relative; transition: color 0.15s ease; padding: 0.15rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--green); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a:active { color: var(--green-dark); }
.nav-links a[aria-current="page"] { color: var(--text); font-weight: 600; }
.nav-cta {
  background: var(--grad-green); color: #06210f; padding: 0.6rem 1.1rem; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem; white-space: nowrap; display: inline-block;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { filter: brightness(1.05); }
.nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; color: var(--text);
}
.nav-toggle svg { width: 1.6rem; height: 1.6rem; stroke: currentColor; stroke-width: 2; fill: none; }

@media (max-width: 759px) {
  /* ⚠️ backdrop-filter désactivé en mobile — NE PAS le réactiver ici.
     Un élément qui porte backdrop-filter devient le containing block de ses
     descendants en position:fixed : le tiroir .nav-links, enfant du header,
     se retrouvait alors calé sur la pilule du header (bande de ~56px à droite)
     au lieu de couvrir le viewport. Fond opaque en remplacement du flou. */
  .nav { backdrop-filter: none; background: var(--nav-bg-solid); }

  /* Panneau ajusté à son contenu — et non pleine hauteur.
     Avec 4 liens, un tiroir `bottom: 0` laissait ~70% de blanc vide et couvrait
     l'écran entier : le menu paraissait démesurément long. */
  .nav-links {
    position: fixed; top: 0.75rem; right: 0.75rem; bottom: auto; width: min(64vw, 240px);
    flex-direction: column; align-items: flex-start; gap: 1.1rem;
    background: var(--surface); border: 1px solid var(--border); border-radius: 1.25rem;
    padding: 4.25rem 1.5rem 1.5rem; font-size: 1.05rem;
    /* Glissement en transform (composité GPU = fluide sur Android bas de gamme).
       visibility:hidden sort les liens fermés de l'ordre de tabulation ;
       son changement est retardé à la fermeture pour laisser jouer le glissement. */
    transform: translateX(calc(100% + 1.5rem)); visibility: hidden;
    transition: transform 0.25s ease, visibility 0s linear 0.25s; z-index: 25;
  }
  .nav-links.open {
    transform: translateX(0); visibility: visible;
    transition: transform 0.25s ease, visibility 0s;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-links, .nav-links.open { transition: none; }
  }
  .nav-toggle { display: block; z-index: 26; }
  .nav-cta.desktop-only { display: none; }
}

/* ---------- CTA FLOTTANT MOBILE (injecté par main.js) ---------- */
.mobile-cta { display: none; }
@media (max-width: 759px) {
  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 24;
    padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
    /* Marge basse iOS : sans ça le bouton passe sous la barre de gestes. */
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    /* Fond opaque et non `backdrop-filter` : même raison que la pilule du
       header (piège du containing block) + coût GPU sur Android bas de gamme. */
    background: var(--nav-bg-solid); border-top: 1px solid var(--border);
    transform: translateY(110%); visibility: hidden;
    transition: transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .mobile-cta.visible {
    transform: translateY(0); visibility: visible;
    transition: transform 0.25s ease, visibility 0s;
  }
  .mobile-cta .btn-cta {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%;
  }
  .mobile-cta .btn-cta svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
  @media (prefers-reduced-motion: reduce) {
    .mobile-cta, .mobile-cta.visible { transition: none; }
  }
}

/* ---------- HERO (accueil) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(70% 55% at 82% 0%, rgba(36,211,102,0.16), transparent 60%), var(--black);
  color: #F5F5F5;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(1.75rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start;
}
/* Bloc texte aligné en haut sur la ligne de départ du téléphone (desktop) */
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.1fr 0.9fr; } .hero-copy { padding-top: 0.35rem; } }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.85rem;
}
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.08; color: #FAFAFA; }
.hero h1 .hi { color: var(--green); }
.hero-sub { margin-top: 0.7rem; font-size: clamp(0.92rem, 1.3vw, 1.02rem); color: #B8B8B8; max-width: 58ch; }
.hero-actions { margin-top: 1.15rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.hero-note { font-size: 0.85rem; color: #8A8A8A; }

/* Tagline du hero — accroche en première position avec soulignement
   « brosse » animé (style wasenderapi / wazzap.ai) sur le mot-clé. */
.hero-tagline {
  display: block; margin-bottom: 1rem;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem); font-weight: 600; line-height: 1.4;
  letter-spacing: 0.005em; color: #CFE9D6; animation: taglineIn 0.6s ease both;
}
.swoosh-word {
  position: relative; display: inline-block; white-space: nowrap; color: #FAFAFA; font-weight: 700;
  animation: swooshGlow 2s ease-in-out infinite;
}
@keyframes swooshGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(59,240,122,0)); }
  50% { filter: drop-shadow(0 0 6px rgba(59,240,122,0.95)) drop-shadow(0 0 16px rgba(59,240,122,0.6)); }
}
@media (prefers-reduced-motion: reduce) { .swoosh-word { animation: none; } }
.swoosh {
  position: absolute; left: -4%; bottom: -0.34em; width: 108%; height: 0.5em;
  overflow: visible; pointer-events: none;
}
.swoosh path {
  fill: none; stroke: var(--green); stroke-width: 5.5; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(36,211,102,0.75));
  stroke-dasharray: 265; stroke-dashoffset: 265;
  animation: swooshDraw 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Points de confiance sous le CTA (léger décalage vers le bas) */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.6rem; align-items: center;
  margin-top: 1.3rem; list-style: none; padding: 0;
}
.hero-trust .t {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: #CFE9D6;
}
.hero-trust .t svg { width: 1.2rem; height: 1.2rem; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }
.pricing-lede { max-width: 62ch; margin: 0 auto; }
.pricing-trust { justify-content: flex-start; margin-top: 1.1rem; }
@media (min-width: 640px) { .pricing-trust { flex-wrap: nowrap; white-space: nowrap; } }
@keyframes taglineIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes swooshDraw { to { stroke-dashoffset: 0; } }

/* Carte promo tarifs (hero) — inspirée du bloc "Packs et tarifs" Hostinger */
.promo-card {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-top: 1.75rem; padding: 1.2rem 6rem 1.2rem 1.85rem; border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark) 55%, var(--green));
  overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 28px -14px rgba(36,211,102,0.4);
}
.promo-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.14) 48%, transparent 56%);
}
.promo-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(36,211,102,0.55); }
.promo-card:active { transform: translateY(0) scale(0.99); }
.promo-card-text { position: relative; display: flex; flex-direction: column; gap: 0.5rem; }
.promo-card-title { font-size: 1.3rem; font-weight: 800; color: #06210f; }
.promo-card-desc { font-size: 1rem; color: #0A2E17; max-width: 34ch; }
.promo-card-price { margin-top: 0.2rem; font-size: 0.95rem; font-weight: 800; color: #06210f; }
.promo-card-price .num { font-size: 1.15rem; }
.promo-card-arrow {
  position: absolute; top: 1.3rem; right: 1.35rem; z-index: 1;
  width: 1.3rem; height: 1.3rem; stroke: #06210f; stroke-width: 2.2; fill: none;
}
/* Badge "%" — carré incliné façon post-it, en blanc pour rester dans la charte (le jaune du modèle est hors palette) */
.promo-card-badge {
  position: absolute; right: 5.6rem; top: 50%; transform: translateY(-50%) rotate(18deg); z-index: 0;
  width: 4.4rem; height: 4.4rem; border-radius: 0.85rem; background: #FFFFFF;
  box-shadow: 0 10px 22px -10px rgba(0,0,0,0.35);
  display: grid; place-items: center;
  font-size: 1.9rem; font-weight: 800; color: var(--green-deep);
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 10px 22px -10px rgba(0,0,0,0.35), 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 10px 22px -10px rgba(0,0,0,0.35), 0 0 0 10px rgba(255,255,255,0); }
}
@media (max-width: 520px) { .promo-card { padding-right: 1.85rem; } .promo-card-badge { display: none; } }
@media (prefers-reduced-motion: reduce) { .promo-card-badge { animation: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-tagline { animation: none; }
  .swoosh path { animation: none; stroke-dashoffset: 0; }
}

/* Mentions de confiance (section Pourquoi choisir) */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.9rem 2rem; align-items: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.trust-row .item { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.trust-row .item svg { width: 1.3rem; height: 1.3rem; stroke: var(--green); fill: none; stroke-width: 2.75; flex-shrink: 0; }

/* ---------- TÉLÉPHONE (interface WhatsApp réaliste) ---------- */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: min(310px, 100%); border-radius: 2.1rem; background: #050505; padding: 0.55rem;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-screen { background: #ECE5DD; border-radius: 1.6rem; overflow: hidden; display: flex; flex-direction: column; min-height: 360px; }
.phone-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1rem 0.7rem; background: #075E54; color: #fff; }
.phone-bar .avatar {
  width: 2.1rem; height: 2.1rem; border-radius: 50%; overflow: hidden;
  background: #fff; flex-shrink: 0;
}
.phone-bar .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-bar .who-block { flex: 1; }
.phone-bar .who { font-size: 0.9rem; font-weight: 700; }
.phone-bar .status { font-size: 0.72rem; color: #CDE8E1; }
.phone-bar .icons { display: flex; gap: 0.85rem; opacity: 0.9; }
.phone-bar .icons svg { width: 1.05rem; height: 1.05rem; }
.thread {
  flex: 1; background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 16px 16px; padding: 0.7rem 0.6rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.bubble {
  max-width: 82%; padding: 0.45rem 0.6rem; border-radius: 0.55rem; font-size: 0.78rem; line-height: 1.35;
  color: #111B21; box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  opacity: 0; transform: translateY(6px); animation: rise 0.5s ease forwards;
}
.bubble .time { display: block; margin-top: 0.2rem; font-size: 0.64rem; color: #667781; text-align: right; }
.bubble .time .tick { color: #53BDEB; }
.bubble.out { align-self: flex-end; background: #D9FDD3; border-bottom-right-radius: 0.15rem; }
.bubble.in { align-self: flex-start; background: #FFFFFF; border-bottom-left-radius: 0.15rem; }
.bubble.alert { align-self: flex-start; background: #FFF3D6; border: 1px solid #E8C877; color: #6B4A1F; border-bottom-left-radius: 0.15rem; }
.bubble.alert .time { color: #8A6C3D; }
.bubble:nth-child(1) { animation-delay: 0.15s; }
.bubble:nth-child(2) { animation-delay: 0.55s; }
.bubble:nth-child(3) { animation-delay: 0.95s; }
.bubble:nth-child(4) { animation-delay: 1.35s; }
.bubble:nth-child(5) { animation-delay: 1.75s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .bubble { animation: none; opacity: 1; transform: none; } }

/* ---------- COMMENT ÇA MARCHE (mini-phones) ---------- */
.how-grid { display: grid; gap: 2.5rem 1.75rem; grid-template-columns: 1fr; }
/* Desktop : les 3 étapes partagent les mêmes rangées (titre / texte / mockup) via
   `subgrid`. Sans cela, un titre sur 2 lignes ou un paragraphe plus long décale
   verticalement le mockup de sa colonne — les 3 téléphones ne démarraient pas à
   la même hauteur. */
@media (min-width: 820px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto auto; }
  .how-step { grid-row: span 3; grid-template-rows: subgrid; row-gap: 0; }
}
/* Pastille numérotée alignée sur le libellé (et non au-dessus) : grille
   « pastille | titre » en première ligne, le reste occupe toute la largeur. */
/* `baseline` et non `center` : avec un titre sur deux lignes, un centrage
   décalerait la pastille vers le bas et les 3 colonnes desktop ne seraient
   plus alignées entre elles. */
.how-step { display: grid; grid-template-columns: auto 1fr; column-gap: 0.75rem; align-items: baseline; }
.how-step .step-num {
  width: 2.1rem; height: 2.1rem; border-radius: 50%; display: grid; place-items: center;
  font-size: 0.9rem; font-weight: 800; color: var(--green-dark);
  background: color-mix(in srgb, var(--green) 14%, transparent);
  flex-shrink: 0;
}
.how-step h3 { font-size: 1.05rem; grid-column: 2; }
/* Texte et mockup alignés sous le titre (colonne 2), pas sous la pastille. */
.how-step p { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.7rem; grid-column: 2; }
.how-step .phone-wrap { margin-top: 1.3rem; justify-content: flex-start; grid-column: 2; }
.phone-screen--compact { min-height: 0; }
/* Hauteur plancher commune aux 3 mockups : les conversations n'ont pas le même
   nombre de bulles, sans plancher les téléphones auraient des tailles différentes. */
.how-step .phone-screen--compact { min-height: 330px; }
.phone-screen--compact .thread { padding-bottom: 1.1rem; }

/* ---------- SECTION GÉNÉRIQUE ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem); }
.section--tight { padding-top: clamp(2rem, 3.5vw, 2.75rem); padding-bottom: clamp(2rem, 3.5vw, 2.75rem); }
.section-head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.section-head .eyebrow { color: var(--green-dark); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-head p { margin-top: 0.75rem; color: var(--text-soft); font-size: 1rem; }
.section-head--nowrap { max-width: none; }

/* ---- Pages légales : bloc de texte long lisible (mentions, CGU, confidentialité) ---- */
.legal { max-width: 68ch; }
.legal h2 {
  margin-top: clamp(2.25rem, 4vw, 3rem); margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem); line-height: 1.25;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: 1.6rem; margin-bottom: 0.4rem; font-size: 1.02rem; }
.legal p, .legal li { color: var(--text-soft); font-size: 0.98rem; line-height: 1.65; }
.legal p { margin-top: 0.75rem; }
.legal ul { margin-top: 0.75rem; padding-left: 1.1rem; display: grid; gap: 0.4rem; }
.legal li { padding-left: 0.15rem; }
.legal a { color: var(--green-dark); font-weight: 600; }
.legal strong { color: var(--text); }
.legal .legal-meta { margin-top: 2.5rem; font-size: 0.88rem; color: var(--gray-500); }
/* Tableau clé/valeur des mentions légales — empilé sur mobile, 2 colonnes au-delà */
.legal-dl { margin-top: 1rem; display: grid; gap: 0.55rem 1.5rem; }
.legal-dl dt { font-weight: 700; font-size: 0.95rem; }
.legal-dl dd { margin: 0; color: var(--text-soft); font-size: 0.98rem; }
@media (min-width: 640px) {
  .legal-dl { grid-template-columns: 14rem 1fr; align-items: baseline; }
}
@media (min-width: 640px) { .section-head--nowrap h2 { white-space: nowrap; } }

/* ---------- PAGE HERO (pages internes) ---------- */
.page-hero {
  background: radial-gradient(70% 55% at 82% 0%, rgba(36,211,102,0.14), transparent 60%), var(--black);
  color: #F5F5F5; padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 3rem) clamp(0.5rem, 1vw, 0.75rem);
}
.page-hero-inner { max-width: 62ch; margin: 0 auto; }
/* Hero avec téléphone : le texte garde sa position standard (62ch centré),
   le téléphone flotte à droite sans influencer cette position */
.page-hero--with-phone { position: relative; }
.page-hero--with-phone .phone-wrap { margin-top: 2rem; justify-content: center; }
@media (min-width: 1200px) {
  .page-hero--with-phone { min-height: 620px; }
  .page-hero--with-phone .phone-wrap {
    position: absolute; top: 50%; right: clamp(2rem, 7vw, 6rem);
    transform: translateY(-50%); margin-top: 0;
  }
}
/* Entre 1200 et 1500px, la colonne de texte (62ch, centrée) et le téléphone
   (absolu, à droite) se chevauchent : le téléphone est dessiné par-dessus et
   rognait la fin des lignes — « Essai gratuit 14 jours… » et le dernier point
   de réassurance disparaissaient sur un portable 1280 ou 1366. On réserve sa
   zone pour que le texte aille à la ligne avant de l'atteindre. Au-delà de
   1530px l'écart est naturel, la colonne retrouve toute sa largeur. */
@media (min-width: 1200px) and (max-width: 1529px) {
  .page-hero--with-phone .page-hero-inner { padding-right: 10rem; }
}
/* Halo continu pour attirer l'œil sur la preuve produit (page Contact) */
.phone--halo { animation: phoneHalo 3.2s ease-in-out infinite; border-radius: 2.1rem; }
@keyframes phoneHalo {
  0%, 100% { box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06), 0 0 0 0 rgba(36,211,102,0.28); }
  50% { box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06), 0 0 42px 10px rgba(36,211,102,0.28); }
}
@media (prefers-reduced-motion: reduce) { .phone--halo { animation: none; } }
.page-hero .eyebrow { color: var(--green); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); line-height: 1.12; color: #FAFAFA; }
.page-hero p { margin-top: 1rem; font-size: clamp(0.95rem, 1.2vw, 1rem); color: #B8B8B8; max-width: 48ch; }
.page-hero p.p-wide { max-width: 58ch; }
.page-hero .hero-trust { margin-top: 0.85rem; }
/* Badges placés directement sous le paragraphe (page Fonctionnalités) :
   respiration supplémentaire, faute du bouton CTA qui sert d'espacement ailleurs */
.page-hero p + .hero-trust { margin-top: 2.1rem; }
.page-hero:has(.hero-trust) { padding-bottom: clamp(0.5rem, 1vw, 0.75rem); }
/* Trait vert en fondu : sépare la ligne de badges de confiance du bloc promesse.
   Centré dans la colonne texte, 2px, estompé aux deux extrémités. */
.hero-sep {
  display: block;
  width: min(14rem, 60%); height: 2px;
  margin: 1.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
/* CTA capsule sous la promesse : pastille ronde à gauche + libellé.
   Reprend la forme de la référence 3D en vectoriel plat — le logo WhatsApp
   reste non altéré (charte de marque Meta) et s'adapte à toute résolution. */
.promise-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  width: fit-content;
  margin-top: 1.35rem;
  padding: 0.4rem 1.7rem 0.4rem 0.4rem;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: rgba(36,211,102,0.08);
  color: #FFFFFF; text-decoration: none;
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.promise-cta:hover { background: rgba(36,211,102,0.18); border-color: var(--green-neon); }
.promise-cta:active { transform: scale(0.98); }
.promise-cta-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--green);
}
.promise-cta-icon svg { width: 1.45rem; height: 1.45rem; color: #06210f; }
@media (prefers-reduced-motion: reduce) { .promise-cta { transition: none; } }
/* Pas de guillemet décoratif ici (contrairement aux vrais blocs `.quote-mark`) :
   la promesse n'est pas une citation, et le glyphe en absolu imposait un
   `padding-left` qui désalignait le texte du bouton placé juste en dessous. */
.page-hero p.hero-promise {
  margin-top: 2.75rem;
  font-size: clamp(1.4rem, 2.85vw, 1.875rem);
  line-height: 1.3;
  color: #B8B8B8;
  max-width: 40ch;
}
.hero-promise-lead { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.3rem; }
.hero-promise-strong { display: block; font-weight: 800; color: #FFFFFF; }
@media (min-width: 1200px) {
  .page-hero--with-phone .page-hero-inner { display: flex; flex-direction: column; min-height: 620px; }
  /* Le groupe promesse + CTA est poussé vers le bas (margin-top:auto sur le
     premier). Le CTA porte la marge basse : promesse + CTA ≈ 9.5rem d'origine. */
  .page-hero--with-phone p.hero-promise { margin: auto 0 0; }
  .page-hero--with-phone .promise-cta { margin-bottom: 4.75rem; }
}
.hl-green { color: var(--green); font-weight: 600; }

/* ---------- BÉNÉFICES (accueil) ---------- */
.benefit-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
.receipt {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.4rem; position: relative; display: flex; flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.receipt:hover { border-color: color-mix(in srgb, var(--green) 45%, var(--border)); box-shadow: 0 16px 32px -22px rgba(36,211,102,0.35); transform: translateY(-2px); }
.receipt::before {
  content: ""; position: absolute; left: 1.4rem; right: 1.4rem; top: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 6px, transparent 6px 12px); opacity: 0.55;
}
.receipt .tag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-dark); }
.tag-icon { width: 0.95rem; height: 0.95rem; stroke: currentColor; fill: none; stroke-width: 2.4; flex-shrink: 0; }
.receipt h3 { margin-top: 0.5rem; font-size: 1.15rem; }
.receipt p { margin-top: 0.55rem; font-size: 0.92rem; color: var(--text-soft); }
/* Puces de validation en bas de chaque bénéfice */
.receipt-checks { margin-top: auto; padding: 1rem 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.55rem; }
.receipt-checks li { list-style: none; display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.receipt-checks .check { flex-shrink: 0; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: rgba(36,211,102,0.14); border: 1px solid var(--green); display: grid; place-items: center; margin-top: 0.05rem; }
.receipt-checks .check svg { width: 0.65rem; height: 0.65rem; stroke: var(--green); stroke-width: 2.5; fill: none; }

/* ---------- PREUVE (citation) ---------- */
.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.proof-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem); }
.proof-quote { max-width: 60ch; margin: 0 auto; }
.proof-label {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 1rem;
}
.proof-quote-body { position: relative; }
.quote-mark {
  position: absolute; top: -1.5rem; left: -0.1rem; font-size: 4.2rem; font-weight: 800; line-height: 1;
  font-family: Georgia, "Times New Roman", serif; color: var(--green); opacity: 0.85; pointer-events: none;
}
.proof-line { position: relative; font-size: 1.15rem; line-height: 1.55; font-weight: 500; color: var(--text); padding-left: 2.1rem; }
.proof-line strong { color: var(--green-dark); }
.proof-line strong.ink { color: var(--text); }

/* Mentions du nom de marque dans le corps de texte (hors logo/header) */
.brand { color: var(--green-dark); font-weight: 700; }
.brand-tm { font-size: 0.55em; font-weight: 700; margin-left: 0.05em; }
/* Sur fond sombre, le vert plus clair reste lisible (green-dark manque de contraste sur noir) */
.hero .brand, .page-hero .brand, .pricing .brand, .f-import .brand { color: var(--green); }

/* ---------- BENTO FONCTIONNALITÉS ---------- */
.bento { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento .f-livraison, .bento .f-paiement, .bento .f-solde,
  .bento .f-anomalie, .bento .f-dashboard, .bento .f-bilan { grid-column: span 2; }
  .bento .f-import { grid-column: span 6; }
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 0.9rem;
  /* Sans ce plancher à 0, la piste `1fr` du bento ne descend pas sous le contenu
     minimal de la carte : la ligne `.demo` (en `nowrap`) élargissait la carte
     au-delà du viewport sous ~345px de large. */
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { border-color: color-mix(in srgb, var(--green) 45%, var(--border)); box-shadow: 0 16px 32px -22px rgba(36,211,102,0.35); transform: translateY(-2px); }
.f-import:hover { transform: none; box-shadow: none; }
.f-icon {
  width: 2.6rem; height: 2.6rem; border-radius: 0.7rem; display: grid; place-items: center;
  background: color-mix(in srgb, var(--green) 14%, transparent); color: var(--green-dark);
}
.f-icon svg { width: 1.35rem; height: 1.35rem; stroke: currentColor; fill: none; stroke-width: 1.6; }
.feature-card h3 { font-size: 1.1rem; }
.feature-card p { font-size: 0.92rem; color: var(--text-soft); }
.f-livraison .demo, .f-paiement .demo, .f-solde .demo {
  margin-top: auto; font-size: 0.82rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: 0.6rem; padding: 0.6rem 0.75rem; color: var(--text-soft);
  white-space: nowrap; overflow-x: auto;
}
.f-livraison .demo strong, .f-paiement .demo strong, .f-solde .demo strong { color: var(--text); }
.f-paiement .operators { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.op-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; padding: 0.25rem 0.55rem; border-radius: 0.4rem;
  background: color-mix(in srgb, var(--green) 14%, transparent); color: var(--green-dark);
}
.f-anomalie { border-color: color-mix(in srgb, var(--warning-500) 45%, var(--border)); }
.f-anomalie .f-icon { background: color-mix(in srgb, var(--warning-500) 16%, transparent); color: var(--warning-600); }
.f-import {
  background: linear-gradient(135deg, var(--black), var(--green-deep)); color: #F5F5F5; border: none;
  flex-direction: row; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.f-import .f-icon { background: rgba(36,211,102,0.18); color: var(--green-neon); flex-shrink: 0; }
.f-import-body { flex: 1; min-width: 220px; }
.f-import h3 { color: #FAFAFA; font-size: 1.25rem; }
.f-import p { color: #D3E5CC; margin-top: 0.5rem; max-width: 56ch; }
.launch-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-neon); margin-bottom: 0.6rem;
}
.f-import .value {
  flex-shrink: 0; text-align: center; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 0.8rem; padding: 1rem 1.3rem;
}
.f-import .value .n { font-size: 1.5rem; font-weight: 800; color: #FAFAFA; }
.f-import .value .l { font-size: 0.72rem; color: #A3A3A3; margin-top: 0.2rem; }

/* ---------- TARIFS ---------- */
.pricing { background: var(--black); color: #F5F5F5; padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 3.5vw, 2.75rem); scroll-margin-top: 6.5rem; }
.pricing-inner { max-width: 1340px; margin: 0 auto; }
.pricing-head { max-width: 52ch; margin: 0 auto 1.25rem; text-align: center; }
.pricing-head .eyebrow { color: var(--green); }
.pricing-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: #FAFAFA; }
@media (min-width: 640px) { .pricing-head h2 { white-space: nowrap; } }
.pricing-head p { margin-top: 0.75rem; font-size: 1rem; color: #A3A3A3; }
.launch-banner {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-align: center;
  max-width: fit-content; margin: 1rem auto 0; background: rgba(36,211,102,0.08);
  border: 1px solid rgba(36,211,102,0.35); color: var(--green); font-size: 0.85rem; font-weight: 600;
  padding: 0.55rem 1.1rem; border-radius: 100px;
}
.pricing-trust-group { width: max-content; max-width: 100%; }
.price-grid { margin-top: clamp(3.5rem, 7vw, 4.5rem); display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .price-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.price-card { position: relative; background: #141414; border: 1px solid #262626; border-radius: var(--radius-card); padding: 2rem 1.75rem 1.75rem; display: flex; flex-direction: column; transition: border-color 0.2s ease, transform 0.2s ease; }
.price-card:not(.popular):hover { border-color: #3A3A3A; transform: translateY(-2px); }
.price-card.popular { border-color: var(--green); box-shadow: 0 0 0 1px rgba(36,211,102,0.25), 0 20px 45px -25px rgba(36,211,102,0.4); }
@media (min-width: 860px) { .price-card.popular { transform: translateY(-0.6rem); } }
.popular-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); background: var(--grad-green);
  color: #06210f; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 100px; white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; color: #FAFAFA; }
.price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.9rem; }
.price-line .price-old { font-size: 1.25rem; font-weight: 700; color: #8A8A8A; text-decoration: line-through; text-decoration-color: #8A8A8A; }
.price-line .amount { font-size: 2.2rem; font-weight: 800; color: #FAFAFA; }
.price-line .period { font-size: 0.9rem; color: #8A8A8A; }
.price-billed { font-size: 0.8rem; color: #737373; margin-top: 0.15rem; }
.price-desc { font-size: 0.9rem; color: #A3A3A3; margin-top: 1rem; min-height: 3.4em; }
.price-divider { border-top: 1px solid #262626; margin: 1.4rem 0 1.25rem; }
.price-features { display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.price-features li { list-style: none; display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; color: #D4D4D4; }
.price-features li.inherit { font-weight: 700; color: #FAFAFA; padding-bottom: 0.85rem; margin-bottom: 0.15rem; border-bottom: 1px solid #262626; }
.price-features li.inherit .check { background: rgba(36,211,102,0.15); border-color: var(--green); }
.price-features li.inherit strong { color: var(--green); }
.price-features .check { flex-shrink: 0; width: 1.15rem; height: 1.15rem; border-radius: 50%; border: 1px solid #3A3A3A; display: grid; place-items: center; margin-top: 0.1rem; }
.price-features .check svg { width: 0.65rem; height: 0.65rem; stroke: var(--green); stroke-width: 2.5; fill: none; }
.price-features .wa-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--green); margin-top: 0.05rem; margin-left: -0.15rem; }
.price-features .wa-icon svg { width: 100%; height: 100%; }
.price-card .btn-cta, .price-card .btn-outline { margin-top: 1.6rem; width: 100%; }
.price-card .btn-outline { color: #F5F5F5; border-color: #333; }
.price-card .btn-outline:hover { border-color: var(--green); }
.pricing-note { text-align: center; margin-top: 2.25rem; font-size: 0.88rem; color: #8A8A8A; }
.pricing-note a { color: var(--green); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ---------- TABLEAU COMPARATIF (page Tarifs) ---------- */
.compare-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem); overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.92rem; }
.compare th, .compare td { padding: 0.9rem 1rem; text-align: center; border-bottom: 1px solid var(--border); }
.compare thead th { font-size: 1rem; }
.compare thead th.pop { color: var(--green-dark); }
.compare tbody th { text-align: left; font-weight: 600; color: var(--text); }
.compare td.yes { color: var(--green-dark); font-weight: 700; }
.compare td.no { color: var(--text-soft); }
.compare tbody tr:hover { background: color-mix(in srgb, var(--green) 4%, transparent); }

/* ---------- FAQ ----------
   <details>/<summary> natif plutôt qu'un accordéon en JS : accessible au clavier
   d'origine, et la réponse reste dans le DOM même repliée — donc lue par Google. */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--green) 45%, var(--border)); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.05rem 3rem 1.05rem 1.3rem; font-size: 1rem; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; border-radius: var(--radius-lg); }
/* Chevron tracé en CSS : évite de répéter un SVG sur chaque question */
.faq-item summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 50%;
  width: 0.5rem; height: 0.5rem;
  border-right: 2px solid var(--green-dark); border-bottom: 2px solid var(--green-dark);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq-a { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--text-soft); font-size: 0.94rem; line-height: 1.65; }
.faq-a a { color: var(--green-dark); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; gap: clamp(2rem, 5vw, 3rem); grid-template-columns: 1fr; align-items: center;
  max-width: 1020px; margin: 0 auto;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-card {
  max-width: 640px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: clamp(2rem, 5vw, 3rem); text-align: center;
}
.contact-card .wa-logo {
  width: 4rem; height: 4rem; margin: 0 auto 1.25rem; border-radius: 1.1rem; background: var(--grad-green);
  display: grid; place-items: center;
}
.contact-card .wa-logo svg { width: 2.2rem; height: 2.2rem; fill: #06210f; }
.contact-card h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.15; }
.contact-card p { margin-top: 0.85rem; color: var(--text-soft); }
.contact-card .btn-cta { margin-top: 1.75rem; }
.contact-alt { margin-top: 1.25rem; font-size: 0.85rem; color: var(--text-soft); }
.contact-hours {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--text-soft);
}
.contact-hours span { display: inline-flex; align-items: flex-start; gap: 0.4rem; text-align: left; }
.contact-hours .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--green); margin-top: 0.4rem; flex-shrink: 0; }

/* ---------- 404 ---------- */
.not-found-hero { padding-bottom: clamp(3.5rem, 7vw, 5rem); }
.not-found-inner { text-align: left; }
.not-found-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.page-hero .btn-outline { color: #F5F5F5; border-color: rgba(255,255,255,0.25); }
.page-hero .btn-outline:hover { border-color: var(--green); }

/* ---------- CTA FINAL ---------- */
.final-cta { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem); text-align: center; }
.final-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); max-width: 30ch; margin: 0 auto; }
.final-cta .btn-cta { margin-top: 1.75rem; }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--border); padding: 2.5rem clamp(1.25rem, 4vw, 3rem); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-start; justify-content: space-between;
}
.footer-brand { max-width: 30ch; }
.footer-brand p { margin-top: 0.75rem; color: var(--text-soft); font-size: 0.88rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 2rem; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); font-weight: 700; margin-bottom: 0.75rem; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text); padding: 0.2rem 0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--green-dark); }
/* Liens réseaux sociaux du footer (bloc activé dès la création de la Page Facebook) */
.footer-col a.footer-social { display: flex; align-items: center; gap: 0.5rem; }
.footer-col a.footer-social svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.footer-bottom { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--text-soft); font-size: 0.82rem; }

/* ---------- OFFRE DE LANCEMENT + PRIX BARRÉS ---------- */
/* Bandeau lancement (section tarifs) */
/* Icône du bandeau — en CSS et non en attribut style : permet une CSP stricte
   sans 'unsafe-inline' sur style-src. */
.launch-banner > svg { width: 1rem; height: 1rem; stroke: var(--green); fill: none; stroke-width: 1.8; }
.launch-banner .lead { font-weight: 800; letter-spacing: 0.04em; }
.launch-banner .val { color: #FFFFFF; font-weight: 800; font-size: 1.2rem; line-height: 1; }
.launch-banner .off { color: var(--green); font-weight: 800; }

/* Étoile du badge "Recommandé" (nod au modèle image) */
.popular-badge .star { margin-right: 0.15rem; }

/* Quick-replies dans le mockup WhatsApp */
.bubble .qr { display: flex; gap: 0.35rem; margin-top: 0.55rem; flex-wrap: wrap; }
.qr-btn { font-size: 0.72rem; font-weight: 600; color: #075E54; background: #F0F7F4; border: 1px solid #CFE9DF; border-radius: 0.5rem; padding: 0.28rem 0.55rem; }
.bubble.reply { font-weight: 600; }
.bubble .q-quote {
  border-left: 3px solid var(--green-dark); padding: 0.2rem 0 0.2rem 0.5rem; margin-bottom: 0.35rem;
  font-size: 0.72em; font-weight: 400; color: #4A5D52; opacity: 0.8;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bubble .q-sub { font-size: 0.78em; font-weight: 400; color: #3D4A42; margin-top: 0.05rem; }
.thread .bubble:nth-child(6) { animation-delay: 2.15s; }
