/* ============================================================
   SST Académie — Refonte landing
   Design system: warm cream base + coral "secours" accent
   Type: Bricolage Grotesque (display) / Hanken Grotesk (text)
   ============================================================ */

:root {
  /* Surfaces (warm neutrals) */
  --cream:    oklch(0.973 0.013 84);
  --cream-2:  oklch(0.949 0.018 80);
  --paper:    oklch(0.995 0.006 84);
  --ink:      oklch(0.255 0.022 56);
  --ink-soft: oklch(0.46 0.022 56);
  --ink-faint:oklch(0.62 0.018 60);
  --line:     oklch(0.885 0.012 80);
  --line-2:   oklch(0.82 0.014 78);

  /* Accents — jaune pastel SST (primary) + vert santé (secondary) */
  --accent:      oklch(0.875 0.125 96);   /* pastel yellow */
  --accent-deep: oklch(0.555 0.105 82);   /* ochre for text on cream */
  --accent-soft: oklch(0.955 0.055 96);   /* pale yellow block */
  --accent-ink:  oklch(0.255 0.022 56);   /* text color on accent fills */
  --accent-glow:        oklch(0.875 0.125 96 / 0.45);
  --accent-glow-strong: oklch(0.875 0.125 96 / 0.6);
  --accent-focus:       oklch(0.875 0.125 96 / 0.4);
  --green:       oklch(0.56 0.085 158);
  --green-soft:  oklch(0.91 0.038 152);

  /* Pastel section blocks */
  --butter:   oklch(0.927 0.055 92);
  --sky:      oklch(0.915 0.04 235);
  --sage:     oklch(0.91 0.036 150);

  /* Tokens swappable by Tweaks */
  --r-xl: 34px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-text: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 56px);

  --shadow-sm: 0 1px 2px oklch(0.4 0.02 60 / 0.06), 0 4px 14px oklch(0.4 0.02 60 / 0.05);
  --shadow-md: 0 2px 6px oklch(0.4 0.02 60 / 0.07), 0 18px 40px oklch(0.4 0.02 60 / 0.09);
  --shadow-lg: 0 30px 70px oklch(0.35 0.03 50 / 0.16);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.eyebrow {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-block;
}

.lead { color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 20px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-text); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 22px var(--accent-glow); }
.btn-primary:hover { filter: brightness(0.95); box-shadow: 0 12px 30px var(--accent-glow-strong); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: oklch(0.18 0.02 56); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }

.link-arrow { font-weight: 700; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 7px; }
.link-arrow .arr { transition: transform .2s; }
.link-arrow:hover .arr { transform: translateX(4px); }

/* ---- Chips / badges ---- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chip.live .dot { background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 6px oklch(0.585 0.205 27 / 0); } }

/* ---- Image placeholder ---- */
.ph {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, oklch(0.9 0.02 70) 0 14px, oklch(0.86 0.02 70) 14px 28px);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 0.04em; color: oklch(0.42 0.02 60);
  background: oklch(0.97 0.01 80 / 0.85); padding: 6px 12px; border-radius: 100px;
  border: 1px dashed oklch(0.6 0.02 60); text-align: center; max-width: 80%;
}
.ph.tone-coral { background: repeating-linear-gradient(135deg, oklch(0.9 0.045 38) 0 14px, oklch(0.86 0.05 38) 14px 28px); }
.ph.tone-green { background: repeating-linear-gradient(135deg, oklch(0.9 0.035 150) 0 14px, oklch(0.86 0.04 150) 14px 28px); }
.ph.tone-butter { background: repeating-linear-gradient(135deg, oklch(0.93 0.05 92) 0 14px, oklch(0.89 0.055 92) 14px 28px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.973 0.013 84 / 0.72);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.site-head.scrolled { border-color: var(--line); box-shadow: 0 4px 20px oklch(0.4 0.02 60 / 0.05); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); box-shadow: 0 4px 12px var(--accent-glow);
}
.brand .mark svg { width: 21px; height: 21px; }
.brand b { color: var(--accent-deep); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { padding: 9px 14px; border-radius: 100px; font-weight: 600; font-size: 15.5px; color: var(--ink-soft); transition: background .15s, color .15s; }
.nav-links a:hover { background: var(--paper); color: var(--ink); }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .ghost-link { font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 9px 6px; }
.nav-cta .ghost-link:hover { color: var(--ink); }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 80px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(42px, 6.4vw, 80px); }
.hero h1 .hl { color: var(--accent-deep); position: relative; white-space: nowrap; }
.hero h1 .hl svg { position: absolute; left: 0; right: 0; bottom: -0.12em; width: 100%; height: 0.28em; }
.hero .lead { margin-top: 24px; max-width: 30ch; font-size: clamp(18px, 1.5vw, 21px); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; }
.hero-meta .m { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.hero-meta .m svg { width: 18px; height: 18px; color: var(--green); flex: none; }

.hero-visual { position: relative; }
.hero-visual .ph { aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.float-card {
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 14px 16px;
}
.float-card.cert { top: 22px; left: -22px; display: flex; align-items: center; gap: 12px; }
.float-card.cert .seal { width: 42px; height: 42px; border-radius: 10px; background: var(--green-soft); display: grid; place-items: center; color: var(--green); }
.float-card.cert .seal svg { width: 22px; height: 22px; }
.float-card.cert b { display: block; font-family: var(--font-display); font-size: 15px; white-space: nowrap; }
.float-card.cert span { font-size: 12.5px; color: var(--ink-faint); white-space: nowrap; }
.float-card.stat { bottom: 26px; right: -20px; text-align: left; }
.float-card.stat .big { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--accent-deep); line-height: 1; }
.float-card.stat span { font-size: 12.5px; color: var(--ink-faint); display: block; margin-top: 5px; max-width: 16ch; }

/* trust strip */
.trust { border-block: 1px solid var(--line); background: var(--cream-2); }
.trust .container { display: flex; align-items: center; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; padding-block: 22px; }
.trust .t-label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.trust .t-items { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap; }
.trust .t-items .t { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-family: var(--font-display); font-size: 17px; color: var(--ink); }
.trust .t-items .t svg { width: 19px; height: 19px; color: var(--accent); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2, h2.sec-head { font-size: clamp(30px, 4.4vw, 52px); margin-top: 16px; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--font-display); font-weight: 800; color: var(--ink); }
/* Eyebrows de section masqués (h2 et leads conservés) */
section.section .eyebrow { display: none !important; }
section.section .sec-head h2, section.section h2.sec-head { margin-top: 0; }
.sec-head p { margin-top: 18px; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   DUAL PATH
   ============================================================ */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.path-card {
  position: relative; border-radius: var(--r-xl); padding: clamp(30px, 3.4vw, 46px);
  overflow: hidden; min-height: 320px; display: flex; flex-direction: column;
  border: 1px solid transparent; transition: transform .25s, box-shadow .25s;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.path-card.me { background: var(--accent-soft); }
.path-card.team { background: var(--ink); color: var(--cream); }
.path-card.team h3, .path-card.team .pc-num { color: var(--cream); }
.pc-num { font-family: var(--font-display); font-size: 15px; font-weight: 700; opacity: .55; }
.path-card h3 { font-size: clamp(26px, 2.6vw, 34px); margin-top: 14px; max-width: 14ch; }
.path-card .pc-text { margin-top: 14px; color: var(--ink-soft); max-width: 32ch; }
.path-card.team .pc-text { color: oklch(0.84 0.015 80); }
.path-card .pc-foot { margin-top: auto; padding-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.path-card .pc-icon { position: absolute; top: clamp(30px,3.4vw,46px); right: clamp(30px,3.4vw,46px); width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; }
.path-card.me .pc-icon { background: var(--accent-focus); color: var(--accent-deep); }
.path-card.team .pc-icon { background: oklch(1 0 0 / 0.1); color: var(--cream); }
.path-card .pc-icon svg { width: 27px; height: 27px; }

/* ============================================================
   FORMATIONS
   ============================================================ */
.formations { background: var(--cream-2); }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.fcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.fcard.feat { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.fcard .fc-media { position: relative; aspect-ratio: 16/10; }
.fcard .fc-media .ph { border-radius: 0; height: 100%; }
.fcard .fc-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: var(--accent-ink); font-size: 12.5px; font-weight: 700;
  padding: 6px 12px; border-radius: 100px; letter-spacing: 0.02em;
}
.fcard .fc-tag.legal { background: var(--ink); color: var(--accent); }
.fcard .fc-tag.alt { background: var(--green); color: #fff; }
.fcard .fc-body { padding: clamp(22px, 2.2vw, 30px); display: flex; flex-direction: column; flex: 1; }
.fc-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.fc-meta span { font-size: 12.5px; font-weight: 700; color: var(--ink-faint); background: var(--cream-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px; }
.fcard h3 { font-size: clamp(21px, 2vw, 26px); }
.fcard .fc-desc { margin-top: 12px; color: var(--ink-soft); font-size: 16px; }
.fc-price { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.fc-price .from { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.fc-price .num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--ink); }
.fc-price .unit { font-size: 13.5px; color: var(--ink-faint); }
.fc-price .alt2 { width: 100%; font-size: 13.5px; color: var(--ink-faint); margin-top: 2px; }
.fc-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.fc-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-soft); }
.fc-list li svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; color: var(--green); }
.fc-actions { margin-top: 24px; padding-top: 4px; display: flex; flex-direction: column; gap: 12px; }
.fc-actions .link-arrow { font-size: 15px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: var(--ink); color: var(--cream); }
.stats .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat-item { text-align: left; }
.stat-item .sn { font-family: var(--font-display); font-size: clamp(40px, 5vw, 62px); font-weight: 800; line-height: 1; color: var(--cream); }
.stat-item .sn em { color: var(--accent); font-style: normal; }
.stat-item .sl { margin-top: 12px; color: oklch(0.8 0.015 80); font-size: 15px; max-width: 22ch; }
.stat-item .sb { width: 38px; height: 3px; background: var(--accent); border-radius: 3px; margin-bottom: 18px; }

/* ============================================================
   POUR QUI
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.aud-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.4vw, 34px); transition: transform .25s, box-shadow .25s; }
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aud-card .a-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 20px; }
.aud-card:nth-child(2) .a-icon { background: var(--sage); color: var(--green); }
.aud-card:nth-child(3) .a-icon { background: var(--butter); color: oklch(0.5 0.1 80); }
.aud-card .a-icon svg { width: 25px; height: 25px; }
.aud-card h3 { font-size: 21px; }
.aud-card .a-sub { color: var(--ink-faint); font-size: 14.5px; margin-top: 4px; }
.aud-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.aud-list li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--ink-soft); }
.aud-list li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   FINANCEMENT
   ============================================================ */
.finance { background: var(--green-soft); }
.fin-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.fin-steps { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 4px; }
.fin-steps li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid oklch(0.56 0.085 158 / 0.22); }
.fin-steps li:last-child { border-bottom: none; }
.fin-steps .sn { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--green); width: 34px; height: 34px; border-radius: 50%; border: 2px solid oklch(0.56 0.085 158 / 0.4); display: grid; place-items: center; flex: none; }
.fin-steps b { font-family: var(--font-display); font-size: 17px; display: block; }
.fin-steps span { font-size: 15px; color: var(--ink-soft); }
.fin-visual { display: grid; gap: 18px; }
.fin-badge { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; text-align: center; box-shadow: var(--shadow-sm); }
.fin-badge .ph { aspect-ratio: 16/9; margin-bottom: 16px; }
.fin-badge b { font-family: var(--font-display); font-size: 19px; }
.fin-badge p { font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rating-badge { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 20px; box-shadow: var(--shadow-sm); }
.rating-badge .stars { color: oklch(0.72 0.15 75); font-size: 18px; letter-spacing: 2px; }
.rating-badge .rn { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.rating-badge span { font-size: 13px; color: var(--ink-faint); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.rcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rcard .stars { color: oklch(0.72 0.15 75); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.rcard .quote { font-size: 16px; color: var(--ink); line-height: 1.55; flex: 1; }
.rcard .author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.rcard .ava { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 15px; }
.rcard .author b { font-size: 15px; display: block; }
.rcard .author span { font-size: 13px; color: var(--ink-faint); }

/* ============================================================
   FORMATEURS (recruiting band)
   ============================================================ */
.recruit { background: var(--butter); }
.recruit .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.recruit h2 { font-size: clamp(28px, 4vw, 46px); }
.recruit .lead { margin-top: 18px; max-width: 38ch; }
.recruit-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.recruit .r-visual .ph { aspect-ratio: 5/4; box-shadow: var(--shadow-md); }

/* ============================================================
   DEVIS CTA
   ============================================================ */
.devis { position: relative; }
.devis-card {
  background: var(--ink); color: var(--cream); border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 70px); display: grid; grid-template-columns: 1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px); align-items: center; box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.devis-card::before { content: ""; position: absolute; top: -40%; right: -10%; width: 380px; height: 380px; border-radius: 50%; background: var(--accent-glow); filter: blur(20px); }
.devis-card .d-left { position: relative; z-index: 1; }
.devis-card h2 { color: var(--cream); font-size: clamp(28px, 3.6vw, 46px); }
.devis-card .lead { color: oklch(0.84 0.015 80); margin-top: 16px; max-width: 34ch; }
.devis-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.devis-meta .dm { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: oklch(0.86 0.015 80); }
.devis-meta .dm svg { width: 17px; height: 17px; color: var(--accent); }
.devis-form { position: relative; z-index: 1; background: var(--paper); border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 34px); color: var(--ink); }
.devis-form .fld { margin-bottom: 14px; }
.devis-form label { font-size: 13px; font-weight: 700; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.devis-form input, .devis-form select {
  width: 100%; font-family: inherit; font-size: 15.5px; padding: 12px 14px;
  border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: var(--cream); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.devis-form input:focus, .devis-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-focus); }
.devis-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.devis-form .note { font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; display: flex; align-items: center; gap: 7px; }
.devis-ok { display: none; text-align: center; padding: 30px 10px; }
.devis-ok.show { display: block; }
.devis-ok .ok-seal { width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 18px; }
.devis-ok .ok-seal svg { width: 32px; height: 32px; }
.devis-ok h3 { font-size: 24px; }
.devis-ok p { color: var(--ink-soft); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--cream-2); border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 78px) 30px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { color: var(--ink-soft); font-size: 15px; max-width: 32ch; }
.foot-phone { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-top: 20px; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
.foot-phone svg { width: 20px; height: 20px; color: var(--accent); }
.foot-hours { font-size: 13.5px; color: var(--ink-faint); margin-top: 4px; }
.foot-col h4 { font-family: var(--font-text); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.foot-col a:hover { color: var(--accent-deep); }
.foot-cert .ph { aspect-ratio: 16/9; margin-bottom: 12px; }
.foot-cities { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.foot-cities h4 { font-family: var(--font-text); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tags a { font-size: 13px; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; transition: .15s; }
.city-tags a:hover { border-color: var(--accent); color: var(--accent-deep); }
.foot-legal { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.foot-legal .legal-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.foot-legal a, .foot-legal p { font-size: 13px; color: var(--ink-faint); }
.foot-legal a:hover { color: var(--ink); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .fcard:last-child { grid-column: 1 / -1; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .ghost-link { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .paths, .audience-grid, .fin-grid, .recruit .container, .devis-card, .stats .stat-grid { grid-template-columns: 1fr; }
  /* Section Financement : sur mobile, place le bouton 'Commencer' SOUS l'image OPCO */
  .fin-grid > .reveal:first-child { display: contents; }
  .fin-grid > .fin-visual { order: 1; }
  .fin-grid .fin-cta { order: 2; margin-top: 22px !important; }
  .fin-grid .fin-cta .btn { width: 100%; justify-content: center; }
  .stats .stat-grid { gap: 32px; }
  .recruit .r-visual { order: -1; }
  .devis-card { gap: 32px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .form-grid, .reviews-grid, .foot-top, .stats .stat-grid { grid-template-columns: 1fr; }
  .form-grid .fcard:last-child { grid-column: auto; }
  .float-card.cert { left: 8px; }
  .float-card.stat { right: 8px; }
  .devis-form .row2 { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  padding: 24px var(--gut); flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s;
}
.mobile-menu.open { display: flex; transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-menu .mm-close { width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper); font-size: 22px; }
.mobile-menu a.mm-link, .mobile-menu .mm-link-toggle { font-family: var(--font-display); font-size: 26px; font-weight: 700; padding: 12px 0; border-bottom: 1px solid var(--line); display: block; color: var(--ink); text-decoration: none; cursor: pointer; }
.mobile-menu .mm-group { padding: 0; margin: 0; }
.mobile-menu .mm-group summary.mm-link-toggle { list-style: none; display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .mm-group summary.mm-link-toggle::-webkit-details-marker { display: none; }
.mobile-menu .mm-group summary.mm-link-toggle::marker { content: ''; }
.mobile-menu .mm-chev { font-size: 18px; transition: transform .25s cubic-bezier(.2,.7,.2,1); color: var(--ink-soft); }
.mobile-menu .mm-group[open] .mm-chev { transform: rotate(180deg); color: var(--ink); }
.mobile-menu .mm-sub { display: flex; flex-direction: column; gap: 2px; padding: 6px 0 12px 18px; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-sublink { font-family: var(--font-text); font-size: 17px; font-weight: 600; color: var(--ink-soft); padding: 9px 0; text-decoration: none; transition: color .15s; }
.mobile-menu .mm-sublink:hover { color: var(--accent-deep); }
.mobile-menu .mm-cta { margin-top: 24px; display: grid; gap: 12px; }

/* ============================================================
   TWEAKS PANEL (vanilla)
   ============================================================ */

/* ═════════════════ NOS DERNIÈRES ACTUALITÉS ═════════════════ */
.actu-section { background: var(--paper); padding-block: clamp(48px, 6vw, 88px); }
/* Reduce vertical breathing between KPI and ACTU when they sit together */
.kpi-section + .actu-section, .actu-section + .kpi-section { padding-top: clamp(36px, 4vw, 64px); }
.kpi-section:has(+ .actu-section) { padding-bottom: clamp(40px, 4.5vw, 72px); }
.actu-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin: 0 0 clamp(40px, 5vw, 64px); flex-wrap: wrap; }
.actu-head .sec-head-text { max-width: 760px; }
.actu-head h2 { font-size: clamp(34px, 4.2vw, 54px); margin: 12px 0 0; max-width: none !important; }
.actu-head .actu-cta-top { white-space: nowrap; padding: 14px 24px; font-size: 14.5px; }

/* Cartes verticales côte-à-côte — même effet visuel que .path-card / .proteger-card */
.actu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 32px); align-items: stretch; }
.actu-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(16px, 1.6vw, 20px); box-shadow: 0 22px 50px -18px rgba(20,16,8,0.20); transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, border-color .15s; }
.actu-grid > .actu-card:nth-child(3n+1) { transform: rotate(-1.2deg); }
.actu-grid > .actu-card:nth-child(3n+2) { transform: rotate(0deg); }
.actu-grid > .actu-card:nth-child(3n+3) { transform: rotate(1.2deg); }
.actu-grid > .actu-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 32px 70px -16px rgba(20,16,8,0.30); border-color: var(--accent); }

.actu-media { display: block; aspect-ratio: 4/3; border-radius: var(--r-md); background: var(--cream-2); position: relative; overflow: visible; isolation: isolate; margin: 0 0 28px; min-height: 0; width: 100%; flex-shrink: 0; }
.actu-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.actu-card:hover .actu-media img { transform: scale(1.04); }
.actu-decor { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); width: 52px; height: 66px; z-index: 2; filter: drop-shadow(0 6px 14px rgba(20,16,8,0.20)); }

.actu-body { display: flex; flex-direction: column; gap: 14px; flex: 1; padding: 0 4px 4px; }
.actu-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.actu-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.actu-tag { font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; color: var(--ink); letter-spacing: 0.02em; }
.actu-grid .actu-card:nth-child(3n+1) .actu-tag { background: #D9F0DC; }
.actu-grid .actu-card:nth-child(3n+2) .actu-tag { background: #FCDCD5; }
.actu-grid .actu-card:nth-child(3n+3) .actu-tag { background: #E2DCF4; }
.actu-date { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; white-space: nowrap; }
.actu-title { font-family: var(--font-display); font-size: clamp(19px, 1.7vw, 22px); font-weight: 800; line-height: 1.22; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
.actu-title a { color: inherit; text-decoration: none; transition: color .15s; }
.actu-title a:hover { color: var(--accent-deep); }
.actu-excerpt { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.actu-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 6px; }
.actu-read { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-text); font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 3px; transition: gap .15s, border-color .15s, color .15s; }
.actu-read:hover { gap: 12px; border-bottom-color: var(--accent-deep); color: var(--accent-deep); }
.actu-arrow { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; min-width: 52px; border-radius: 14px; background: var(--ink); color: var(--accent); text-decoration: none; font-size: 22px; font-weight: 700; line-height: 1; transition: transform .2s cubic-bezier(.2,.7,.2,1), background .15s, color .15s; flex-shrink: 0; }
.actu-arrow:hover { transform: translate(3px, -3px); background: var(--accent); color: var(--ink); }

.actu-bottom-cta { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px); }
.actu-bottom-cta .btn { padding: 14px 28px; font-size: 15px; }

@media (max-width: 980px) { .actu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .actu-grid { grid-template-columns: 1fr; }
  .actu-grid > .actu-card:nth-child(3n+1), .actu-grid > .actu-card:nth-child(3n+2), .actu-grid > .actu-card:nth-child(3n+3) { transform: rotate(0); }
  .actu-grid > .actu-card:hover { transform: translateY(-3px); }
  .actu-head { flex-direction: column; align-items: flex-start; }
}

/* ═════════════════ ARTICLES LISTING PAGE ═════════════════ */
.articles-page { background: var(--cream); }
.articles-hero { background: var(--accent) url("/wp-content/uploads/2026/01/hero-bg.png") center/cover no-repeat; padding: clamp(150px, 17vw, 210px) clamp(20px, 5vw, 56px) clamp(56px, 7vw, 90px); position: relative; overflow: hidden; }
.articles-hero .container { max-width: 1180px; position: relative; z-index: 1; }
.articles-hero .eyebrow { color: var(--ink); }
.articles-hero h1 { font-family: var(--font-display); font-size: clamp(42px, 5.6vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin: 16px 0 18px; color: var(--ink); max-width: 1000px; }
.articles-hero p.lead { color: var(--ink); opacity: .85; font-size: clamp(16px, 1.3vw, 19px); max-width: 720px; margin: 0; }
.articles-list-wrap { padding: clamp(48px, 6vw, 80px) 0 clamp(70px, 8vw, 110px); }
.articles-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 clamp(32px, 4vw, 48px); }
.articles-filter { padding: 9px 18px; border-radius: 100px; background: var(--paper); border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .15s, background .15s, color .15s; font-family: var(--font-text); }
.articles-filter:hover, .articles-filter.is-active { border-color: var(--ink); background: var(--ink); color: var(--accent); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 32px); align-items: stretch; }
.articles-grid > .actu-card:nth-child(3n+1) { transform: rotate(-1.2deg); }
.articles-grid > .actu-card:nth-child(3n+2) { transform: rotate(0deg); }
.articles-grid > .actu-card:nth-child(3n+3) { transform: rotate(1.2deg); }
.articles-grid > .actu-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 32px 70px -16px rgba(20,16,8,0.30); border-color: var(--accent); }
.articles-grid .actu-card:nth-child(3n+1) .actu-tag { background: #D9F0DC; }
.articles-grid .actu-card:nth-child(3n+2) .actu-tag { background: #FCDCD5; }
.articles-grid .actu-card:nth-child(3n+3) .actu-tag { background: #E2DCF4; }
@media (max-width: 980px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid > .actu-card { transform: rotate(0) !important; }
  .articles-grid > .actu-card:hover { transform: translateY(-3px) !important; }
}

/* ═════════════════ ARTICLE DETAIL PAGE ═════════════════ */
.article-page { background: var(--cream); }
.article-hero { background: var(--accent) url("/wp-content/uploads/2026/01/hero-bg.png") center/cover no-repeat; padding: clamp(150px, 17vw, 210px) clamp(20px, 5vw, 56px) clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.article-hero .container { max-width: 880px; position: relative; z-index: 1; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--ink); text-decoration: none; opacity: .8; transition: opacity .15s; margin-bottom: 18px; }
.article-back:hover { opacity: 1; }
.article-hero .actu-tag { background: var(--paper); display: inline-block; margin-bottom: 18px; }
.article-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 24px; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--ink); opacity: .8; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-image-band { background: var(--cream); padding: 0 clamp(20px, 5vw, 56px); }
.article-image-band .container { max-width: 1080px; }
.article-image-band img { width: 100%; aspect-ratio: 21/10; object-fit: cover; border-radius: var(--r-lg); margin: clamp(-40px, -4vw, -56px) auto 0; display: block; position: relative; z-index: 2; box-shadow: 0 30px 70px -20px rgba(20,16,8,0.25); }
.article-body { padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 56px) clamp(56px, 6vw, 80px); }
.article-body .container { max-width: 760px; }
.article-body p, .article-body li { font-size: 17px; line-height: 1.72; color: var(--ink); font-family: var(--font-text); }
.article-body p { margin: 0 0 20px; }
.article-body h2 { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 32px); font-weight: 800; line-height: 1.2; letter-spacing: -0.015em; margin: clamp(40px, 4vw, 56px) 0 18px; color: var(--ink); }
.article-body h3 { font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 23px); font-weight: 800; line-height: 1.25; margin: 32px 0 14px; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 22px; }
.article-body ul li, .article-body ol li { margin-bottom: 8px; }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.article-body a:hover { color: var(--ink); }
.article-body blockquote { border-left: 4px solid var(--accent); background: var(--accent-soft); padding: 20px 26px; margin: 28px 0; font-style: italic; font-size: 17.5px; line-height: 1.6; color: var(--ink); border-radius: 0 var(--r-md) var(--r-md) 0; }
.article-body blockquote p { margin: 0; }
.article-body dl { margin: 18px 0 30px; }
.article-body dt { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); margin: 22px 0 6px; }
.article-body dd { font-size: 16px; line-height: 1.66; color: var(--ink-soft); margin: 0; }
.article-cta { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(28px, 3.2vw, 40px); margin: clamp(36px, 4vw, 56px) 0; }
.article-cta h3 { font-family: var(--font-display); font-size: clamp(22px, 2vw, 28px); font-weight: 800; line-height: 1.2; margin: 0 0 12px; color: var(--accent); }
.article-cta p { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,0.85); margin: 0 0 22px; }
.article-cta-form { display: flex; flex-direction: column; gap: 14px; }
.article-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.article-cta-form input[type="text"], .article-cta-form input[type="email"] { padding: 13px 16px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-family: var(--font-text); font-size: 14.5px; outline: none; transition: border-color .15s, background .15s; }
.article-cta-form input[type="text"]::placeholder, .article-cta-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.article-cta-form input[type="text"]:focus, .article-cta-form input[type="email"]:focus { border-color: var(--accent); background: rgba(255,255,255,0.10); }
.article-cta-rgpd { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,0.75); cursor: pointer; padding-top: 2px; }
.article-cta-rgpd input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.article-cta-rgpd a { color: var(--accent); text-decoration: underline; }
.article-cta .btn { background: var(--accent); color: var(--ink); border: none; align-self: flex-start; padding: 14px 28px; font-size: 15px; margin-top: 6px; }
.article-cta .btn:hover { filter: brightness(0.93); }
.article-cta .btn:disabled { opacity: 0.6; cursor: wait; }
.article-cta-status { font-size: 13.5px; margin: 8px 0 0; font-weight: 600; min-height: 18px; }
@media (max-width: 600px) { .article-cta-row { grid-template-columns: 1fr; } }
.article-related-wrap { background: var(--cream-2); padding: clamp(56px, 6vw, 80px) 0; }
.article-related-wrap .container { max-width: 1180px; }
.article-related-wrap h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 800; margin: 0 0 28px; color: var(--ink); }
.article-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 28px); align-items: stretch; }
.article-related-grid > .actu-card:nth-child(3n+1) { transform: rotate(-1.2deg); }
.article-related-grid > .actu-card:nth-child(3n+2) { transform: rotate(0deg); }
.article-related-grid > .actu-card:nth-child(3n+3) { transform: rotate(1.2deg); }
.article-related-grid > .actu-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 32px 70px -16px rgba(20,16,8,0.30); border-color: var(--accent); }
.article-related-grid .actu-card:nth-child(3n+1) .actu-tag { background: #D9F0DC; }
.article-related-grid .actu-card:nth-child(3n+2) .actu-tag { background: #FCDCD5; }
.article-related-grid .actu-card:nth-child(3n+3) .actu-tag { background: #E2DCF4; }
@media (max-width: 980px) { .article-related-grid { grid-template-columns: 1fr 1fr; } .article-meta { font-size: 13px; } }
@media (max-width: 640px) {
  .article-related-grid { grid-template-columns: 1fr; }
  .article-related-grid > .actu-card { transform: rotate(0) !important; }
}

/* ═════════════════ TARIFS INTRA (landing page) ═════════════════ */
.intra-tarifs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 32px); margin: clamp(28px, 3.2vw, 44px) 0 16px; }
.intra-tarif { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.4vw, 32px); position: relative; box-shadow: 0 22px 50px -18px rgba(20,16,8,0.18); transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, border-color .15s; display: flex; flex-direction: column; }
.intra-tarif:nth-child(1) { transform: rotate(-0.8deg); }
.intra-tarif:nth-child(2) { transform: rotate(0.8deg); }
.intra-tarif:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 30px 70px -16px rgba(20,16,8,0.28); border-color: var(--accent); }
.intra-tarif-badge { display: inline-block; font-family: var(--font-text); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 14px; border-radius: 100px; background: #D9F0DC; color: #0e3a1f; align-self: flex-start; margin-bottom: 18px; }
.intra-tarif--mac .intra-tarif-badge { background: #FCDCD5; color: #6b1d1d; }
.intra-tarif-price { font-family: var(--font-display); display: flex; align-items: baseline; gap: 6px; line-height: 1; margin-bottom: 4px; }
.intra-tarif-price strong { font-size: clamp(40px, 4.4vw, 56px); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.intra-tarif-price span { font-size: 15px; font-weight: 700; color: var(--ink-soft); }
.intra-tarif-meta { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; margin-bottom: 18px; }
.intra-tarif-includes { list-style: none; padding: 0; margin: 0 0 18px; border-top: 1px solid var(--line); padding-top: 18px; }
.intra-tarif-includes li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.intra-tarif-includes li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-deep); font-weight: 800; }
.intra-tarif-includes li strong { font-weight: 700; }
.intra-tarif-perstag { font-size: 13px; line-height: 1.5; color: var(--ink-soft); background: var(--cream-2); padding: 10px 12px; border-radius: var(--r-md); margin: 0 0 18px; }
.intra-tarif-perstag strong { color: var(--ink); font-weight: 700; }
.intra-tarif-cta { width: 100%; justify-content: center; margin-top: auto; }
.intra-bonus { background: var(--accent-soft); border-left: 4px solid var(--accent); padding: 14px 18px; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 14.5px; color: var(--ink); margin: 8px 0 28px; }
.intra-bonus strong { color: var(--ink); font-weight: 700; }
@media (max-width: 760px) {
  .intra-tarifs { grid-template-columns: 1fr; gap: 18px; }
  .intra-tarif:nth-child(1), .intra-tarif:nth-child(2) { transform: rotate(0); }
}

/* ═════════════════ FAQ — FOIRE AUX QUESTIONS ═════════════════ */
.faq-section { background: var(--cream-2); padding-block: clamp(64px, 7.5vw, 110px); }
.faq-container { display: grid; grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.faq-intro { position: sticky; top: 110px; align-self: start; }
.faq-intro .eyebrow { color: var(--accent-deep); }
.faq-intro h2 { font-family: var(--font-display); font-size: clamp(34px, 4.2vw, 54px); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin: 18px 0 18px; color: var(--ink); max-width: none !important; }
.faq-intro p.lead { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55; color: var(--ink-soft); margin: 0 0 24px; }
.faq-intro .btn { padding: 13px 22px; font-size: 14.5px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line-2); padding: 0; transition: background .15s; }
.faq-item[open] { background: transparent; }
.faq-item:first-of-type { border-top: 1px solid var(--line-2); }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: clamp(22px, 2.4vw, 32px) 4px; font-family: var(--font-display); font-size: clamp(20px, 2.1vw, 28px); font-weight: 800; line-height: 1.22; letter-spacing: -0.015em; color: var(--ink); transition: color .15s; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q-text { flex: 1; }
.faq-q-arrow { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; min-width: 46px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--line-2); color: var(--ink); font-size: 22px; font-weight: 700; line-height: 1; transform-origin: center; transition: transform .3s cubic-bezier(.2,.7,.2,1), background .2s, border-color .2s, color .2s; }
.faq-item:hover .faq-q { color: var(--accent-deep); }
.faq-item:hover .faq-q-arrow { background: var(--accent); border-color: var(--accent); }
.faq-item[open] .faq-q { color: var(--ink); }
.faq-item[open] .faq-q-arrow { transform: rotate(90deg); background: var(--accent); border-color: var(--accent); color: var(--ink); box-shadow: 0 4px 12px -2px rgba(255,222,33,0.5); }
.faq-a { padding: 0 4px clamp(20px, 2.4vw, 30px); max-width: 780px; }
.faq-a p { font-family: var(--font-text); font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 14px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--ink); font-weight: 700; }
.faq-a a { color: var(--accent-deep); text-decoration: underline; font-weight: 600; }
@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
}

