/* ════════════════════════════════════════════════════════════════════
   STYLE.CSS — MON ASSIETTE TRANQUILLE
   ────────────────────────────────────────────────────────────────────
   CSS centralisé — utilisé par TOUTES les pages du site.
   Recherchez une section avec Ctrl+F sur son tag entre crochets.

   PARTIE 1 — BASE
     [BASE] RESET + VARIABLES
     [BASE] ANIMATIONS — reveal au scroll
     [BASE] BOUTONS GÉNÉRIQUES
     [BASE] MOBILE — anti-débordement + nav hamburger

   PARTIE 2 — COMPOSANTS COMMUNS
     [COMPOSANT] NAV
     [COMPOSANT] HERO
     [COMPOSANT] FOOTER
     [COMPOSANT] SIDEBAR NAV

   PARTIE 3 — PAGES SPÉCIFIQUES
     [PAGE] ACCUEIL — sections spécifiques index.html
     [PAGE] APPLICATION — showcase, carrousels, features, pricing
     [PAGE] ARTICLES — listing + article individuel
     [PAGE] CONTACT
     [PAGE] LÉGAL — système commun aux 5 pages légales
     [PAGE] LÉGAL — tableaux cookies
     [PAGE] FAQ
     [PAGE] GUIDE APP
═══════════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════
   [BASE] RESET + VARIABLES
═══════════════════════════════════════════════════════════ */
:root {
  /* Palette primaire teal MAT */
  --green-l:      #a8ddd4;
  --green-m:      #52b0a0;
  --green:        #2a8a7a;
  --green-dark:   #145048;

  /* Déclinaisons étendues */
  --green-l2:     #ceeee9;
  --green-xl:     #e6f6f3;

  /* Accents (cohérents MUT) */
  --blue:         #3a78c9;
  --coral:        #d4603a;
  --orange:       #e07a00;
  --violet:       #7c4dbd;
  --rose:         #c0529a;
  --teal:         #2a9d8f;

  /* Neutres */
  --bg:           #FBFDFC;
  --bg-soft:      #F1FAF7;
  --bg-card:      #FFFFFF;
  --ink:          #0F2D26;
  --ink-soft:     #2D544B;
  --muted:        #6B8C84;
  --hairline:     rgba(15, 45, 38, .08);

  /* Sombre */
  --dark:         #0F2D26;

  /* Ombres */
  --shadow-sm:    0 4px 12px rgba(15, 45, 38, .06);
  --shadow:       0 12px 40px rgba(15, 45, 38, .08);
  --shadow-lg:    0 24px 72px rgba(15, 45, 38, .14);
  --shadow-phone: 0 40px 100px rgba(15, 45, 38, .22);

  /* Rayons */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.12; letter-spacing: -.02em; font-weight: 600; color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.signature {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--green);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  max-width: 760px;
}
.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}


/* ════════════════════════════════════════════════════════════
   [BASE] ANIMATIONS — reveal au scroll
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════════════════
   [BASE] BOUTONS GÉNÉRIQUES
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(42, 138, 122, .3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42, 138, 122, .4); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}
.btn-ghost:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15, 45, 38, .3); }

/* Badge Google Play officiel */
.btn-play {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: transform .25s;
}
.btn-play:hover { transform: translateY(-2px); }
.btn-play img { display: block; height: 52px; width: auto; }
.btn-play--on-dark { border: 1.5px solid rgba(255,255,255,.18); }
.btn-play--in-card { align-self: flex-start; }
@media (max-width: 700px) {
  .btn-play--in-card {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ════════════════════════════════════════════════════════════
   [COMPOSANT] NAV
═══════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 251, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.site-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
}
.site-nav-inner > .site-nav-cta { justify-self: end; }
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.08rem;
  white-space: nowrap;
}
.site-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-m), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: .8rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(42, 138, 122, .3);
}

@-moz-document url-prefix() {
  .site-logo-mark { padding-bottom: 2px; }
}

.site-nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
}
.site-nav-links a {
  padding: 8px 16px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 99px;
  transition: background .2s, color .2s;
}
.site-nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.site-nav-links a.is-current { background: var(--bg-soft); color: var(--green); text-shadow: 0 0 .35px currentColor, 0 0 .35px currentColor; }
.site-nav-cta { display: flex; gap: 8px; align-items: center; }

/* Icône panier dans la nav */
.nav-cart {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav-cart:hover { background: var(--bg-soft); color: var(--green); }
.nav-cart svg { width: 20px; height: 20px; }
.nav-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

/* Fix mobile : pas de highlight bleu au tap */
a, button, input, [role="button"], .nav-toggle, .btn { -webkit-tap-highlight-color: transparent; }

/* Bouton hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════════
   [COMPOSANT] HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 100px 0 70px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(168, 221, 212, .35) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(208, 242, 224, .45) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.hero .eyebrow { justify-content: center; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
  background: linear-gradient(180deg, transparent 60%, rgba(168, 221, 212, .35) 60%, rgba(168, 221, 212, .35) 92%, transparent 92%);
  padding: 0 10px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px dashed var(--green-l);
  border-radius: 99px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.hero-note strong {
  font-weight: 700;
  color: var(--green);
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
}

@media (max-width: 700px) {
  .hero { padding: 80px 0 100px; }
  .hero p { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}


/* ════════════════════════════════════════════════════════════
   [COMPOSANT] FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 30px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--green-l); }
.footer-col a.is-current { color: var(--green-l); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom .signature { color: var(--green-l); }
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  row-gap: 6px;
}
.footer-bottom-links li { display: flex; align-items: center; }
.footer-bottom-links li:not(:first-child)::before {
  content: '\B7';
  margin: 0 12px;
  color: rgba(255,255,255,.3);
}
.footer-bottom-links a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--green-l); }
.footer-bottom-links a.is-current { color: var(--green-l); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { justify-content: flex-start; }
}


/* ════════════════════════════════════════════════════════════
   [COMPOSANT] SIDEBAR NAV (guide-app, tutoriels)
═══════════════════════════════════════════════════════════ */
.sidebar-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.sidebar-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  background: var(--bg-card);
  border: 1.5px solid var(--hairline);
  color: var(--muted);
  cursor: pointer;
  transition: border-color .3s, color .3s, box-shadow .3s, background .3s;
  position: relative;
  text-decoration: none;
}
.sidebar-dot:hover,
.sidebar-dot.is-active {
  border-color: var(--green-l);
  color: var(--green);
  background: var(--green-xl);
  box-shadow: 0 4px 12px rgba(42, 138, 122, .1);
}
.sidebar-dot[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 50;
}
.sidebar-dot-num {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: .95rem;
}

@media (max-width: 880px) {
  .sidebar-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--hairline);
    margin-bottom: 10px;
  }
  .sidebar-dot { width: 38px; height: 38px; font-size: 1rem; }
  .sidebar-dot[data-tooltip]:hover::after { display: none; }
}


/* ════════════════════════════════════════════════════════════
   [PAGE] ACCUEIL — sections spécifiques
═══════════════════════════════════════════════════════════ */

/* Section générique avec fond alterné */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-soft); }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-header .eyebrow { justify-content: center; }
.section-header .section-title { margin-left: auto; margin-right: auto; }
.section-header .section-intro { margin-left: auto; margin-right: auto; }

/* Bloc philosophie */
.philosophy {
  padding: 90px 0;
  text-align: center;
}
.philosophy-inner { max-width: 820px; margin: 0 auto; }
.philosophy-kicker {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 14px;
}
.philosophy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 28px;
}
.philosophy h2 em {
  font-style: italic;
  color: var(--green);
  background: linear-gradient(180deg, transparent 58%, rgba(168, 221, 212, .4) 58%, rgba(168, 221, 212, .4) 92%, transparent 92%);
  padding: 0 4px;
}
.philosophy p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.philosophy p:last-of-type { margin-bottom: 0; }
.philosophy-values {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.philosophy-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
}
.philosophy-value-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Cards "Allez plus loin" */
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.more-card {
  background: var(--bg-card);
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.more-card-icon { font-size: 1.8rem; margin-bottom: 4px; }
.more-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.more-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: auto; }

@media (max-width: 800px) {
  .more-grid { grid-template-columns: 1fr; }
}
.more-card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
}
.more-card-link::after {
  content: ' →';
  transition: margin-left .2s;
  display: inline-block;
}
.more-card:hover .more-card-link::after {
  transform: translateX(4px);
}

/* Bloc signature */
.sig-block {
  padding: 80px 0;
  text-align: center;
}
.sig-block-inner {
  max-width: 580px;
  margin: 0 auto;
}
.sig-text {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.sig-name {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 2rem;
  color: var(--green);
}
.sig-location {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Téléphone (composant showcase) */
.phone {
  --pw: 320;
  --pu: 1px;
  position: relative;
  width: calc(var(--pw) * var(--pu));
  background: #0a0e14;
  border-radius: calc(var(--pw) * 0.137 * var(--pu));
  padding: calc(var(--pw) * 0.037 * var(--pu)) calc(var(--pw) * 0.031 * var(--pu));
  box-shadow:
    var(--shadow-phone),
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -1px 0 rgba(0, 0, 0, .6),
    inset 2px 0 0 rgba(255, 255, 255, .04),
    inset -2px 0 0 rgba(0, 0, 0, .4);
  flex-shrink: 0;
}
.phone::after {
  content: '';
  position: absolute;
  inset: calc(var(--pw) * 0.0125 * var(--pu));
  border-radius: calc(var(--pw) * 0.125 * var(--pu));
  background: linear-gradient(135deg, #1a1f2b 0%, #0a0e14 50%, #05070d 100%);
  z-index: -1;
  transform: translateZ(-6px);
  pointer-events: none;
}
.phone-notch {
  position: absolute;
  top: calc(var(--pw) * 0.04 * var(--pu));
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--pw) * 0.144 * var(--pu));
  height: calc(var(--pw) * 0.013 * var(--pu));
  background: #0a0e14;
  border-radius: 99px;
  z-index: 30;
  opacity: .45;
}
.phone-home {
  position: absolute;
  bottom: calc(var(--pw) * 0.022 * var(--pu));
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--pw) * 0.3 * var(--pu));
  height: calc(var(--pw) * 0.013 * var(--pu));
  background: rgba(255,255,255,.4);
  border-radius: 99px;
  z-index: 30;
}
.phone-screen {
  width: 100%;
  aspect-ratio: 829 / 1864;
  border-radius: calc(var(--pw) * 0.112 * var(--pu));
  overflow: hidden;
  background: #fff;
  position: relative;
  isolation: isolate;
}
.phone-scroll .phone-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  pointer-events: none;
}
.phone-scroll .phone-header img,
.phone-scroll .phone-nav img,
.phone-scroll .phone-content-inner img {
  width: 100%;
  height: auto;
  display: block;
}
.phone-scroll .phone-content {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 5;
}
.phone-scroll .phone-content-inner {
  width: 100%;
  padding-top: 21.7%;
  padding-bottom: 13%;
  transition: transform 10s cubic-bezier(.2, .4, .3, 1);
}
.phone-scroll .phone-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  pointer-events: none;
}
.phone-scroll:hover .phone-content-inner {
  transform: translateY(var(--scroll, -40%));
}


/* ════════════════════════════════════════════════════════════
   [PAGE] APPLICATION — showcase, carrousels, features, pricing
═══════════════════════════════════════════════════════════ */

/* Carrousel de téléphones */
.carousel-section { padding: 80px 0 60px; }
.carousel-container { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.carousel-wrapper {
  position: relative;
  height: 520px;
  overflow: visible;
}
.carousel-track {
  position: relative;
  height: 100%;
  width: 100%;
}
.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  opacity: 0;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
  pointer-events: none;
  z-index: 1;
}
.carousel-item.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
}
.carousel-item.is-prev {
  transform: translate(calc(-50% - 280px), -50%) scale(.75);
  opacity: .7;
  pointer-events: auto;
  z-index: 3;
}
.carousel-item.is-next {
  transform: translate(calc(-50% + 280px), -50%) scale(.75);
  opacity: .7;
  pointer-events: auto;
  z-index: 3;
}
.carousel-item.is-far-prev {
  transform: translate(calc(-50% - 480px), -50%) scale(.55);
  opacity: .3;
  z-index: 2;
}
.carousel-item.is-far-next {
  transform: translate(calc(-50% + 480px), -50%) scale(.55);
  opacity: .3;
  z-index: 2;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
  z-index: 10;
}
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  font-size: 1.2rem;
  color: var(--ink-soft);
}
.carousel-arrow:hover {
  border-color: var(--green-l);
  box-shadow: var(--shadow-sm);
  transform: scale(1.08);
}

.carousel-indicator {
  text-align: center;
  margin-top: 28px;
}
.carousel-indicator-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.carousel-indicator-desc {
  font-size: .92rem;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 auto 14px;
  line-height: 1.55;
}
.carousel-indicator-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}
.carousel-indicator-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hairline);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.3);
}

@media (max-width: 700px) {
  .carousel-wrapper { height: 420px; }
  .carousel-item.is-prev { transform: translate(calc(-50% - 180px), -50%) scale(.65); }
  .carousel-item.is-next { transform: translate(calc(-50% + 180px), -50%) scale(.65); }
  .carousel-item.is-far-prev,
  .carousel-item.is-far-next { opacity: 0; }
  .carousel-arrows { padding: 0; }
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: border-color .3s, box-shadow .3s;
}
.feature-card:hover {
  border-color: var(--green-l);
  box-shadow: var(--shadow-sm);
}
.feature-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.feature-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card.is-featured {
  border-color: var(--green-l);
  box-shadow: var(--shadow);
}
.pricing-card-badge {
  display: inline-block;
  background: var(--green-xl);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card-price {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.pricing-card-price span {
  font-size: .9rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card-desc {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-card-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card-features li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA final (fond sombre) */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}


/* ════════════════════════════════════════════════════════════
   [PAGE] ARTICLES — listing + article individuel
═══════════════════════════════════════════════════════════ */

/* Listing articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--bg-card);
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.article-card:hover {
  border-color: var(--green-l);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.article-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-soft);
}
.article-card-body { padding: 24px; }
.article-card-category {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 8px;
}
.article-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.article-card p {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.article-card-date {
  font-size: .8rem;
  color: var(--muted);
}

/* Article individuel */
.article-section { padding: 20px 0 100px; }
.article-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.article-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--hairline);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
}
.article-header .article-category {
  background: var(--green-xl);
  color: var(--green-dark);
  padding: 5px 14px;
  border-radius: 99px;
  font-weight: 600;
  font-size: .8rem;
}
.article-header .article-date { color: var(--muted); }
.article-body h2 {
  font-size: 1.5rem;
  margin: 50px 0 18px;
  padding-top: 10px;
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 36px 0 14px;
}
.article-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  margin: 16px 0 24px 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.article-body li { margin-bottom: 8px; font-size: 1rem; }
.article-body blockquote {
  border-left: 3px solid var(--green-l);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--green-xl);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--ink-soft);
}


/* ════════════════════════════════════════════════════════════
   [PAGE] CONTACT
═══════════════════════════════════════════════════════════ */
.contact-section { padding: 20px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-info h3 { font-size: 1.2rem; margin-bottom: 16px; }
.contact-info p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-info a { color: var(--green); font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  background: var(--bg-card);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-m);
  box-shadow: 0 0 0 3px rgba(42, 138, 122, .12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* ════════════════════════════════════════════════════════════
   [PAGE] LÉGAL — système commun aux 5 pages légales
═══════════════════════════════════════════════════════════ */
.legal-section {
  padding: 40px 0 100px;
  position: relative;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-date {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 48px;
}
.legal-block {
  margin-bottom: 40px;
}
.legal-block h2 {
  font-size: 1.32rem;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-l);
  display: flex;
  align-items: center;
  gap: 14px;
}
.legal-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-m), var(--green));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42, 138, 122, .25);
}
.legal-block p,
.legal-block li {
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-block p:last-child,
.legal-block li:last-child { margin-bottom: 0; }
.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.legal-block ul li {
  padding-left: 22px;
  position: relative;
}
.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.legal-block a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--green-l);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.legal-block a:hover { text-decoration-color: var(--green); }
.legal-block strong { color: var(--ink); font-weight: 600; }

.legal-info-card {
  background: rgba(168, 221, 212, .18);
  border: 1.5px solid var(--green-l);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin: 14px 0 14px 0;
}
.legal-info-card p { margin-bottom: 6px; font-size: .95rem; }
.legal-info-card p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .legal-block h2 { font-size: 1.18rem; }
  .legal-section { padding: 30px 0 70px; }
  .legal-date { margin-bottom: 36px; }
}
@media (max-width: 500px) {
  .legal-block h2 { font-size: 1.1rem; gap: 10px; }
  .legal-num { width: 28px; height: 28px; font-size: .75rem; }
  .legal-block p, .legal-block li { font-size: .94rem; }
}


/* ════════════════════════════════════════════════════════════
   [PAGE] LÉGAL — tableaux cookies
═══════════════════════════════════════════════════════════ */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 18px 0;
  font-size: .9rem;
  background: var(--bg-card);
  border: 1.5px solid var(--green-l);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.cookie-table thead {
  background: rgba(168, 221, 212, .25);
}
.cookie-table th,
.cookie-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  line-height: 1.55;
}
.cookie-table th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cookie-table tbody tr:last-child td { border-bottom: none; }
.cookie-table td { color: var(--ink-soft); }
.cookie-table td:first-child { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--ink); }

@media (max-width: 600px) {
  .cookie-table { font-size: .82rem; }
  .cookie-table th, .cookie-table td { padding: 8px 10px; }
}


/* ════════════════════════════════════════════════════════════
   [PAGE] FAQ
═══════════════════════════════════════════════════════════ */
.faq-list { margin-top: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] {
  border-color: var(--green-l);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--green);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding: 0 28px 24px; }
.faq-item-body p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}
.faq-item-body p:last-child { margin-bottom: 0; }

.faq-cta {
  background: var(--bg-soft);
  border: 1.5px solid var(--green-l);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
  margin-top: 30px;
}
.faq-cta h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.faq-cta p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .faq-item summary { padding: 18px 22px; font-size: .98rem; }
  .faq-item-body { padding: 0 22px 20px; }
  .faq-cta { padding: 28px 24px; }
}


/* ════════════════════════════════════════════════════════════
   [PAGE] GUIDE APP
═══════════════════════════════════════════════════════════ */
.guide-layout {
  display: grid;
  grid-template-columns: 64px 1fr;
  max-width: 1240px;
  margin: 0 auto;
  gap: 32px;
  align-items: start;
  padding: 40px 28px 100px;
}
.guide-content { min-width: 0; }
.guide-content .legal-block { scroll-margin-top: 120px; }
.guide-content .legal-block.visible { scroll-margin-top: 100px; }

@media (max-width: 880px) {
  .guide-layout { grid-template-columns: 1fr; padding: 20px 16px 60px; }
}


/* ════════════════════════════════════════════════════════════
   [BASE] MOBILE — anti-débordement + nav hamburger
═══════════════════════════════════════════════════════════ */
html, body { overflow-x: clip; max-width: 100%; }

*:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 880px) {
  .site-nav-inner {
    display: flex !important;
    align-items: center;
    padding: 0 16px;
    height: 64px;
    position: relative;
  }
  .site-logo span:not(.site-logo-mark) { display: none; }

  .site-nav-cta .btn,
  .site-nav-cta .nav-cart {
    position: absolute;
    left: calc(50% + 8px);
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
  }
  .site-nav-cta .btn { padding: 8px 14px !important; font-size: .82rem !important; }

  .nav-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    display: flex;
  }

  .site-nav-links {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(251, 253, 251, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline);
    padding: 16px 24px 20px;
    gap: 4px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    list-style: none;
    margin: 0;
  }
  .site-nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav-links li { list-style: none; }
  .site-nav-links a {
    display: block;
    padding: 10px 14px;
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .site-nav-cta .btn { padding: 8px 14px !important; font-size: .82rem !important; }
}