/* ════════════════════════════════════════════════════════════════════
   Adil Bertal — adilbertal.com
   Design system CrossBiz : crème + navy + bleu ciel, serif display.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --cream:    #FAF7F2;
  --cream-2:  #F2ECE2;   /* surfaces alternées */
  --navy:     #16243D;
  --navy-2:   #1f3354;
  --accent:   #38b6ff;
  --accent-d: #1f9fe8;
  --charcoal: #36404c;
  --ink:      #2b3340;
  --ink-soft: #5b6472;
  --line:     #e3dccf;
  --white:    #ffffff;
  --radius:   14px;
  --shadow-sm: 0 1px 3px rgba(22,36,61,.06);
  --shadow:   0 10px 30px rgba(22,36,61,.08);
  --shadow-lg: 0 24px 60px rgba(22,36,61,.14);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

img { max-width: 100%; display: block; }
a { color: var(--accent-d); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); }
.accent { color: var(--accent); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 840px; }
.container.center { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #04243b; box-shadow: 0 8px 22px rgba(56,182,255,.32); }
.btn-primary:hover { background: var(--accent-d); color: #04243b; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(56,182,255,.42); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-d); }
.btn-sm { padding: 9px 18px; font-size: 14.5px; }
.btn-note { font-weight: 500; font-size: 13px; opacity: .8; background: rgba(4,36,59,.12); padding: 2px 9px; border-radius: 999px; }

/* ── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-ring { display: inline-flex; flex-shrink: 0; }
.logo-word { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-word-main { font-weight: 800; font-size: 18px; letter-spacing: .01em; color: var(--charcoal); }
.logo-word-sub { font-weight: 600; font-size: 9px; letter-spacing: .42em; color: var(--accent); margin-top: 3px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: 15.5px; position: relative; }
.site-nav a:not(.btn):hover { color: var(--accent-d); }
.site-nav a:not(.btn).active { color: var(--navy); }
.site-nav a:not(.btn).active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--accent); border-radius: 2px;
}
.nav-cta { color: #04243b; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.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); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { padding: 64px 0 72px; background:
  radial-gradient(1100px 500px at 78% -8%, rgba(56,182,255,.10), transparent 60%),
  var(--cream); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-d); margin: 0 0 18px; }
.hero h1 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 22px; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 33em; margin: 0 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-meta { font-size: 14px; color: var(--ink-soft); margin: 0; }
.hero-portrait { position: relative; }
.portrait-frame {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--white); position: relative; max-width: 420px; margin-left: auto;
}
.portrait-frame img { width: 100%; height: auto; }
.portrait-badge {
  position: absolute; left: -10px; bottom: 26px; background: var(--navy); color: #fff;
  padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow); max-width: 230px;
  display: flex; flex-direction: column; gap: 2px;
}
.portrait-badge strong { font-family: var(--serif); font-size: 24px; color: var(--accent); }
.portrait-badge span { font-size: 12.5px; line-height: 1.4; color: #cdd6e3; }
.portrait-badge em { color: #fff; font-style: italic; }

/* ── Sections génériques ─────────────────────────────────────────────── */
.section { padding: 84px 0; }
.section-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-d); margin: 0 0 14px; }
.section-eyebrow.light { color: var(--accent); }
.section h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-intro { font-size: 18px; color: var(--ink-soft); margin: 6px 0 0; }

/* ── Enjeu ───────────────────────────────────────────────────────────── */
.section-enjeu { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.enjeu-text p { font-size: 18.5px; color: var(--ink); margin: 0 0 18px; }
.enjeu-text strong { color: var(--navy); }
.pullquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.4; color: var(--navy); margin: 40px 0; padding: 8px 0 8px 28px;
  border-left: 4px solid var(--accent);
}
.traps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.trap { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.trap h3 { font-size: 18px; margin-bottom: 8px; }
.trap p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ── Expertises / Tabs ───────────────────────────────────────────────── */
.tablist { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.tab {
  font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--ink-soft);
  background: none; border: 0; border-bottom: 3px solid transparent; padding: 12px 6px 16px;
  margin-bottom: -1px; cursor: pointer; transition: color .2s, border-color .2s;
}
.tab:hover { color: var(--navy); }
.tab.is-active { color: var(--navy); border-bottom-color: var(--accent); }
.tabpanel { animation: fade .3s ease; }
.tabpanel[hidden] { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.xcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.xcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(56,182,255,.5); }
.xcard-num { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--accent); display: block; margin-bottom: 12px; }
.xcard h3 { font-size: 20px; margin-bottom: 6px; }
.xcard-sub { font-size: 13.5px; color: var(--ink-soft); font-style: italic; margin: 0 0 16px; }
.xcard ul { margin: 0; padding: 0; list-style: none; }
.xcard li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink); margin-bottom: 10px; line-height: 1.5; }
.xcard li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.xcard li em { color: var(--navy); font-style: italic; }
.tab-foot { margin-top: 28px; font-size: 16px; color: var(--ink-soft); border-top: 1px dashed var(--line); padding-top: 22px; }

/* ── Profil ──────────────────────────────────────────────────────────── */
.section-profil { background: var(--white); border-top: 1px solid var(--line); }
.profil-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.profil-copy p { color: var(--ink); margin: 0 0 16px; }
.profil-quote { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--navy); border-left: 4px solid var(--accent); padding-left: 18px; margin: 22px 0 24px !important; }
.profil-points { list-style: none; padding: 0; margin: 0; }
.profil-points li { position: relative; padding-left: 24px; margin-bottom: 14px; font-size: 16px; color: var(--ink-soft); }
.profil-points li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.profil-points strong { color: var(--navy); }
.profil-stats { display: flex; flex-direction: column; gap: 18px; }
.stat { background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 12px; padding: 22px 24px; }
.stat-num { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--accent); display: block; }
.stat-label { font-weight: 700; color: var(--navy); display: block; margin: 2px 0 6px; font-size: 15px; }
.stat p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ── Méthode ─────────────────────────────────────────────────────────── */
.methode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.mcard-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(56,182,255,.45); background: rgba(56,182,255,.07); margin-bottom: 16px; }
.mcard h3 { font-size: 20px; margin-bottom: 8px; }
.mcard p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.methode-formats { margin-top: 40px; background: var(--navy); color: #fff; border-radius: 18px; padding: 38px 40px; }
.methode-formats h3 { color: #fff; font-size: 25px; margin-bottom: 10px; }
.methode-formats h3 em { color: var(--accent); }
.methode-formats p { margin: 0; color: #cdd6e3; font-size: 17px; max-width: 56em; }
.methode-formats strong { color: #fff; }

/* ── Booking ─────────────────────────────────────────────────────────── */
.section-booking { background:
  radial-gradient(900px 420px at 50% 0%, rgba(56,182,255,.16), transparent 60%),
  var(--navy); }
.on-dark, .section-booking h2 { color: #fff; }
.section-booking h2 { font-size: clamp(28px, 3.8vw, 44px); }
.section-booking h2 em { color: var(--accent); }
.booking-lead { color: #c7d2e1; font-size: 18px; max-width: 40em; margin: 8px auto 30px; }
.booking-badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 0; margin: 0 0 38px; }
.booking-badges li { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 16px 26px; min-width: 150px; }
.booking-badges strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--accent); }
.booking-badges span { font-size: 13px; color: #aab8cc; letter-spacing: .02em; }
.booking-embed { background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; min-height: 120px; }
.booking-embed iframe { width: 100%; min-height: 760px; border: 0; display: block; }
/* fallback */
.booking-fallback { padding: 44px 32px; text-align: center; }
.booking-fallback h3 { font-size: 22px; margin-bottom: 8px; }
.booking-fallback p { color: var(--ink-soft); margin: 0 auto 22px; max-width: 30em; }
.booking-fallback .btn + .btn { margin-left: 10px; }
.booking-fallback .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 18px; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #c7d2e1; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-name { font-family: var(--serif); font-weight: 700; font-size: 22px; color: #fff; letter-spacing: .04em; margin: 16px 0 4px; }
.footer-role { font-size: 14px; color: #97a6bd; margin: 0; max-width: 22em; }
.footer-contact h4, .footer-cta h4 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; }
.footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; flex-direction: column; margin-bottom: 14px; }
.footer-contact li span:first-child { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #7c8ba3; margin-bottom: 2px; }
.footer-contact a, .footer-loc { color: #e6edf6; font-size: 15.5px; }
.footer-contact a:hover { color: var(--accent); }
.footer-cta p { font-size: 15px; color: #97a6bd; margin: 0 0 18px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 24px; font-size: 13px; color: #7c8ba3; }

/* ── Floating CTA (mobile) ───────────────────────────────────────────── */
.floating-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40; display: none;
  text-align: center; background: var(--accent); color: #04243b; font-weight: 700;
  padding: 15px; border-radius: 14px; box-shadow: 0 10px 30px rgba(56,182,255,.45);
}

/* ── Reveal on scroll ────────────────────────────────────────────────── */
/* Reveal n'est gated que si JS est actif (.js) — sans JS, tout reste visible. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { order: -1; }
  .portrait-frame { margin: 0 auto; max-width: 340px; }
  .portrait-badge { left: 50%; transform: translateX(-50%); bottom: -18px; }
  .profil-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 56px; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px 0 16px; transform: translateY(-130%); transition: transform .3s ease; max-height: calc(100vh - var(--header-h)); overflow: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 14px 28px; font-size: 17px; }
  .site-nav a:not(.btn).active::after { display: none; }
  .nav-cta { margin: 12px 28px 0; text-align: center; }
  .nav-toggle { display: flex; }
  .traps, .cards-3, .cards-4, .methode-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .methode-formats { padding: 28px 24px; }
  .floating-cta { display: block; }
  .pullquote { font-size: 21px; }
}

/* ════════════════════════════════════════════════════════════════════
   Ajouts : chiffres, témoignages, offre + formulaire, agenda rogné.
   ════════════════════════════════════════════════════════════════════ */

/* ── Chiffres / social proof ─────────────────────────────────────────── */
.section-stats { padding: 52px 0; }
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.statc { padding: 34px 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.09); }
.statc:last-child { border-right: 0; }
.statc-num { display: block; font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); color: var(--accent); line-height: 1; font-weight: 600; }
.statc-label { display: block; margin-top: 10px; font-size: 14px; color: #c7d2e1; }

/* ── Témoignages ─────────────────────────────────────────────────────── */
.section-temoignages { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.tcard { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px 22px; box-shadow: var(--shadow-sm); }
.tcard blockquote { margin: 0 0 18px; font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--navy); }
.tcard blockquote::before { content: "\201C"; color: var(--accent); font-weight: 700; margin-right: 2px; }
.tcard figcaption { display: flex; align-items: center; gap: 12px; }
.tavatar { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--c, #38b6ff); color: #fff; font-weight: 700; font-family: var(--serif); flex-shrink: 0; }
.tmeta { display: flex; flex-direction: column; line-height: 1.3; }
.tmeta strong { color: var(--navy); font-size: 15px; }
.tmeta span { color: var(--ink-soft); font-size: 13px; }

/* ── Offre + formulaire ──────────────────────────────────────────────── */
.section-offre { background: radial-gradient(900px 420px at 12% -5%, rgba(56,182,255,.12), transparent 60%), var(--cream); }
.offre-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.offre-lead { font-size: 18px; color: var(--ink); margin: 4px 0 20px; }
.offre-points { list-style: none; padding: 0; margin: 0 0 22px; }
.offre-points li { margin-bottom: 12px; color: var(--ink); font-size: 16px; }
.offre-points li span[aria-hidden] { color: var(--accent); font-weight: 800; margin-right: 8px; }
.offre-points strong { color: var(--navy); }
.offre-trust { font-size: 14.5px; color: var(--ink-soft); border-left: 3px solid var(--accent); padding-left: 14px; margin: 0; }
.offre-form { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; box-shadow: var(--shadow-lg); }
.offre-form h3 { font-size: 22px; margin-bottom: 18px; }
.ff { margin-bottom: 14px; display: flex; flex-direction: column; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ff label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.ff input, .ff textarea { font-family: var(--sans); font-size: 15px; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink); width: 100%; transition: border-color .15s, box-shadow .15s, background .15s; }
.ff input:focus, .ff textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(56,182,255,.18); background: #fff; }
.ff textarea { resize: vertical; }
.ff input.invalid, .ff textarea.invalid { border-color: #d23b3b; box-shadow: 0 0 0 3px rgba(210,59,59,.14); }
.ff-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 4px 0 18px; cursor: pointer; }
.ff-check input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.ff-status { margin: 14px 0 0; font-size: 14px; min-height: 1.2em; text-align: center; }
.ff-status.ok { color: #1a8f4a; }
.ff-status.err { color: #d23b3b; }
.offre-success { text-align: center; padding: 22px 6px; }
.offre-success .ok-ring { width: 56px; height: 56px; border-radius: 50%; background: rgba(26,143,74,.12); color: #1a8f4a; display: inline-flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 14px; }
.offre-success h3 { color: var(--navy); margin-bottom: 8px; }
.offre-success p { color: var(--ink-soft); margin: 0; }

/* ── Agenda Bookings rogné ───────────────────────────────────────────── */
.booking-embed { position: relative; }
.booking-crop { overflow: hidden; border-radius: 16px; background: #fff; }
.booking-crop iframe { display: block; width: 100%; border: 0; }
/* Masque bas : cache la mention/footer externe sous le bouton Réserver. */
.booking-mask { position: absolute; left: 0; right: 0; bottom: 0; background: #fff; pointer-events: none; border-radius: 0 0 16px 16px; }

/* ── Ressources / Articles (cards sur la home) ───────────────────────── */
.section-ressources { background: var(--cream); }
.res-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.res-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(56,182,255,.5); }
.res-cat { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-d); font-weight: 600; margin-bottom: 10px; }
.res-card h3 { font-size: 20px; margin-bottom: 10px; }
.res-card h3 a { color: var(--navy); }
.res-card h3 a:hover { color: var(--accent-d); }
.res-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; flex: 1; margin: 0 0 16px; }
.res-link { color: var(--accent-d); font-weight: 600; font-size: 15px; }
.res-all { text-align: center; margin-top: 32px; }

/* ── Pages articles (blog) ───────────────────────────────────────────── */
.article-topbar { position: sticky; top: 0; z-index: 50; background: rgba(250,247,242,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.article-topbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.article-wrap { padding: 36px 0 72px; }
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 26px; }
.breadcrumb a { color: var(--accent-d); }
.breadcrumb span { color: var(--ink-soft); }
.prose { max-width: 740px; margin: 0 auto; }
.article-kicker { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-d); margin: 0 0 12px; }
.prose h1 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 14px; }
.prose h1 em { font-style: italic; color: var(--accent); }
.article-meta { color: var(--ink-soft); font-size: 14px; margin: 0 0 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.prose h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 38px 0 12px; }
.prose p { font-size: 17px; line-height: 1.72; color: var(--ink); margin: 0 0 18px; }
.prose ul { margin: 0 0 18px; padding-left: 6px; list-style: none; }
.prose ul li { position: relative; padding-left: 22px; font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 9px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.prose a { color: var(--accent-d); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--navy); }
.article-cta { background: var(--navy); color: #fff; border-radius: 16px; padding: 34px 32px; margin-top: 44px; text-align: center; }
.article-cta h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.article-cta h3 em { color: var(--accent); font-style: italic; }
.article-cta p { color: #c7d2e1; margin: 0 auto 20px; max-width: 42em; }
@media (max-width: 760px) { .res-cards { grid-template-columns: 1fr; } }

/* ── FAQ (accordéon natif <details>) ─────────────────────────────────── */
.section-faq { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: block; cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--navy); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 28px; font-family: var(--sans); color: var(--accent); line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--accent-d); }
.faq-item p { margin: 0 0 20px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 68ch; }

/* ── Footer avatar (photo neutre, miniature ronde) ───────────────────── */
.footer-identity { display: flex; align-items: center; gap: 12px; margin: 16px 0 4px; }
.footer-identity .footer-name { margin: 0; }
.footer-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.28); flex-shrink: 0; }

/* ── Bouton WhatsApp flottant (toujours visible) ─────────────────────── */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .15s ease, box-shadow .2s ease;
  animation: waPulse 2.8s infinite;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.05); color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.55); }
.wa-fab-label {
  position: absolute; right: 70px; background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; transform: translateX(8px);
  pointer-events: none; transition: opacity .2s ease, transform .2s ease; box-shadow: var(--shadow);
}
.wa-fab:hover .wa-fab-label { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }
@media (hover: none) { .wa-fab-label { display: none; } }
@media (max-width: 760px) { .wa-fab { bottom: 84px; right: 16px; } }  /* au-dessus du CTA mobile */

@media (max-width: 980px) {
  .offre-grid { grid-template-columns: 1fr; gap: 32px; }
  .tcards { gap: 18px; }
}
@media (max-width: 760px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }
  .statc:nth-child(2) { border-right: 0; }
  .statc:nth-child(1), .statc:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.09); }
  .tcards { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .offre-form { padding: 24px 20px; }
}
