/* WPMalter — "Le Déclic" coaching landing page.
   New section styles, built strictly on the design tokens in
   ../../colors_and_type.css. Shares the homepage vocabulary in styles.css
   (.btn, .pill, .nav, .hero, .pilier, .faq, .cta-final, …) and only adds
   what the sales page needs that the homepage didn't have. */

/* ============================================================
   PAGE RHYTHM / SHARED
   ============================================================ */
.declic main { overflow-x: clip; }

/* tighter section default on a long-form sales page */
.section-sm { padding-block: clamp(48px, 6vw, 96px); position: relative; }

.kicker-mono {
  font-family: var(--wpm-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--wpm-brand-text);
  text-transform: none;
}

/* a centered section heading block used across the page */
.lead-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.lead-head .eyebrow { display: block; margin-bottom: 14px; }
.lead-head h2 {
  font-family: var(--wpm-font-display);
  font-size: clamp(26px, 3.7vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--wpm-text-primary);
  margin: 0;
  text-wrap: balance;
}
.lead-head .sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--wpm-text-secondary);
  margin: 18px auto 0;
  max-width: 640px;
}

/* ============================================================
   HERO — badge + proof line under the CTA
   ============================================================ */
.declic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: var(--wpm-brand-surface);
  color: var(--wpm-brand-text);
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 32%, transparent);
  border-radius: var(--wpm-radius-pill);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}
.declic-badge span { padding: 7px 14px; }
.declic-badge span + span { border-left: 1px solid color-mix(in srgb, var(--wpm-brand) 26%, transparent); }
.declic-badge .hot { background: var(--wpm-accent-bg); color: var(--wpm-accent-text); }

.hero h1 .grad { /* inherits from styles.css */ }

.proofline {
  display: flex;
  gap: 10px 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.proofline .pl {
  font-family: var(--wpm-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--wpm-text-secondary);
}
.proofline .sep { color: var(--wpm-border-strong); }

/* ============================================================
   VISUAL PROOF — framed inbox screenshot (app window chrome)
   ============================================================ */
.shot-wrap { max-width: 960px; margin: 0 auto; }
.shot-frame {
  position: relative;
  border-radius: var(--wpm-radius-lg);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-1);
  box-shadow: var(--wpm-shadow-xl);
  overflow: hidden;
}
.shot-frame::after { /* brand halo behind the frame */ }
.shot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--wpm-border-subtle);
  background: var(--wpm-surface-2);
}
.shot-dots { display: flex; gap: 7px; }
.shot-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--wpm-border-strong); }
.shot-url {
  margin-left: 10px;
  font-family: var(--wpm-font-mono);
  font-size: 12px;
  color: var(--wpm-text-muted);
  padding: 5px 12px;
  background: var(--wpm-bg);
  border: 1px solid var(--wpm-border-subtle);
  border-radius: var(--wpm-radius-pill);
}
.shot-img {
  --shot-h: 600px;
  position: relative;
  height: var(--shot-h);
  overflow: hidden;
  background: #fff;
}
.shot-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1s var(--wpm-ease); /* quick glide back on leave */
  will-change: transform;
}
/* slow auto-scroll while hovering; min() clamps so a short image never pushes down */
.shot-frame:hover .shot-img img {
  transform: translateY(min(0px, calc(var(--shot-h) - 100%)));
  transition: transform 7s linear;
}
.shot-img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px; z-index: 1;
  background: linear-gradient(rgba(255,255,255,0), #fff);
  pointer-events: none;
  transition: opacity var(--wpm-dur-base) var(--wpm-ease);
}
.shot-frame:hover .shot-img::after { opacity: 0; }
.shot-hint {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--wpm-font-mono); font-size: 12px; color: #fff;
  background: rgba(11, 10, 24, .80);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--wpm-radius-pill);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  transition: opacity var(--wpm-dur-base) var(--wpm-ease);
}
.shot-hint svg { width: 14px; height: 14px; }
.shot-frame:hover .shot-hint { opacity: 0; }
@media (max-width: 880px) { .shot-img { --shot-h: 460px; } }
@media (max-width: 520px) { .shot-img { --shot-h: 360px; } }
.shot-caption {
  max-width: 720px;
  margin: 26px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--wpm-text-secondary);
  text-align: center;
}

/* ============================================================
   CONSTAT — long-form prose (extends .prose)
   ============================================================ */
.constat { max-width: 680px; margin: 0 auto; }
.constat p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--wpm-text-secondary);
  margin: 0 0 20px;
}
.constat p strong { color: var(--wpm-text-primary); font-weight: 600; }
.constat .punch {
  font-family: var(--wpm-font-display);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--wpm-text-primary);
  font-weight: 600;
  padding: 22px 26px;
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 38%, var(--wpm-border));
  background: var(--wpm-surface-1);
  border-radius: var(--wpm-radius-md);
  margin: 0 0 24px;
}

/* ============================================================
   PILIERS — reuse .piliers/.pilier from styles.css; add result row
   ============================================================ */
.pilier-meta {
  font-family: var(--wpm-font-mono);
  font-size: 11px;
  color: var(--wpm-text-muted);
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--wpm-border);
  display: flex; gap: 8px; align-items: flex-start;
}
.pilier-meta .arrow { color: var(--wpm-success-text); flex-shrink: 0; }

/* ============================================================
   TIMELINE — 8 weeks, vertical rail
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 8px; bottom: 40px;
  width: 2px;
  background: linear-gradient(var(--wpm-brand), color-mix(in srgb, var(--wpm-brand) 20%, transparent));
}
.tl-item { position: relative; padding: 0 0 28px 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute;
  left: 0; top: 2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--wpm-bg);
  border: 2px solid var(--wpm-brand);
  color: var(--wpm-brand-text);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wpm-font-display);
  font-weight: 700; font-size: 14px;
  z-index: 1;
}
.tl-item.always .tl-node { border-color: var(--wpm-accent-warm); color: var(--wpm-accent-text); background: var(--wpm-bg); }
.tl-card {
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  border-radius: var(--wpm-radius-lg);
  padding: 22px 24px;
  transition: var(--wpm-transition);
}
.tl-card:hover { border-color: var(--wpm-border-strong); box-shadow: var(--wpm-shadow-md); }
.tl-item.always .tl-card { border-color: color-mix(in srgb, var(--wpm-accent-warm) 40%, var(--wpm-border)); background: linear-gradient(var(--wpm-surface-1), var(--wpm-surface-1)) padding-box; }
.tl-week {
  font-family: var(--wpm-font-mono);
  font-size: 12px;
  color: var(--wpm-brand-text);
  letter-spacing: 0.02em;
}
.tl-item.always .tl-week { color: var(--wpm-accent-text); }
.tl-card h4 {
  font-family: var(--wpm-font-display);
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--wpm-text-primary);
  margin: 6px 0 9px;
}
.tl-card p { font-size: 14.5px; line-height: 1.65; color: var(--wpm-text-secondary); margin: 0; }

/* ============================================================
   WHATSAPP 24/7 — native animated phone
   ============================================================ */
.wa-section { position: relative; overflow: hidden; }
.wa-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: center;
}
.wa-copy .eyebrow { display: block; margin-bottom: 16px; }
.wa-copy h2 {
  font-family: var(--wpm-font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--wpm-text-primary);
  margin: 0 0 18px;
}
.wa-copy p { font-size: 17px; line-height: 1.7; color: var(--wpm-text-secondary); margin: 0 0 14px; }
.wa-copy p strong { color: var(--wpm-text-primary); font-weight: 600; }

/* WhatsApp palette scoped to the phone */
.phone {
  --wa-bg: #0b141a;
  --wa-header: #1f2c33;
  --wa-incoming: #1f2c33;
  --wa-outgoing: #005c4b;
  --wa-text: #e9edef;
  --wa-text-muted: #8696a0;
  --wa-tick: #53bdeb;
  position: relative;
  width: 340px;
  height: 690px;
  background: #000;
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 50px 100px rgba(0,0,0,.5), 0 0 60px rgba(83,58,253,.25), inset 0 0 0 2px rgba(255,255,255,.05);
  flex-shrink: 0;
}
.phone::before {
  content: ""; position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 26px; background: #000; border-radius: 20px; z-index: 10;
}
.screen {
  width: 100%; height: 100%; background: var(--wa-bg);
  border-radius: 34px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.wa-header {
  background: var(--wa-header); padding: 48px 14px 12px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.wa-back { color: var(--wa-text); font-size: 22px; width: 18px; text-align: center; opacity: .8; }
.wa-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wpm-brand-500), #281796);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wpm-font-display); font-weight: 700; color: #fff; font-size: 15px; flex-shrink: 0;
}
.wa-info { flex: 1; min-width: 0; }
.wa-name { font-family: var(--wpm-font-display); font-weight: 600; font-size: 15px; color: var(--wa-text); line-height: 1.2; }
.wa-status { font-size: 12px; color: var(--wa-text-muted); line-height: 1.2; margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.wa-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #00d26a; }
.wa-actions { display: flex; gap: 18px; align-items: center; color: var(--wa-text); opacity: .85; }
.wa-actions svg { width: 21px; height: 21px; display: block; }
.wa-chat {
  flex: 1; background-color: var(--wa-bg);
  background-image:
    radial-gradient(circle at 25% 35%, rgba(83,58,253,.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(0,210,106,.04) 0%, transparent 50%);
  padding: 16px 12px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px; scrollbar-width: none;
}
.wa-chat::-webkit-scrollbar { display: none; }
.wa-date {
  align-self: center; background: rgba(31,44,51,.85); color: var(--wa-text-muted);
  font-size: 12px; padding: 4px 12px; border-radius: 8px; margin: 8px 0;
}
.bubble {
  max-width: 80%; padding: 7px 10px 5px; border-radius: 8px;
  font-size: 14px; line-height: 1.42; color: var(--wa-text); position: relative;
  font-family: var(--wpm-font-body);
  opacity: 0; transform: translateY(8px);
  animation: waBubbleIn .34s var(--wpm-ease) forwards;
}
.bubble.incoming { background: var(--wa-incoming); border-top-left-radius: 2px; align-self: flex-start; }
.bubble.outgoing { background: var(--wa-outgoing); border-top-right-radius: 2px; align-self: flex-end; }
.bubble .time { font-size: 10.5px; color: rgba(233,237,239,.55); margin-left: 8px; float: right; margin-top: 4px; }
.bubble.outgoing .ticks { display: inline-flex; align-items: center; margin-left: 4px; position: relative; width: 18px; height: 12px; vertical-align: -2px; }
.bubble.outgoing .ticks svg { width: 12px; height: 12px; fill: var(--wa-tick); position: absolute; top: 0; }
.bubble.outgoing .ticks svg:first-child { left: 0; }
.bubble.outgoing .ticks svg:last-child { left: 6px; }
.typing {
  align-self: flex-start; background: var(--wa-incoming);
  padding: 12px 15px; border-radius: 8px; border-top-left-radius: 2px;
  display: flex; gap: 4px; opacity: 0; animation: waBubbleIn .2s forwards;
}
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--wa-text-muted); animation: waBounce 1.2s infinite ease-in-out; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes waBounce { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-6px); opacity: 1; } }
@keyframes waBubbleIn { to { opacity: 1; transform: translateY(0); } }
.wa-input {
  background: var(--wa-header); padding: 8px 10px 22px;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.wa-input-field { flex: 1; background: var(--wa-incoming); border-radius: 24px; padding: 10px 14px; color: var(--wa-text-muted); font-size: 14px; }
.wa-input-mic { width: 40px; height: 40px; border-radius: 50%; background: #00a884; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.wa-replay {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 20px auto 0; background: transparent;
  border: 1px solid var(--wpm-border); color: var(--wpm-text-secondary);
  padding: 9px 16px; border-radius: var(--wpm-radius-sm);
  font-family: var(--wpm-font-body); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: var(--wpm-transition);
}
.wa-replay:hover { background: var(--wpm-surface-2); border-color: var(--wpm-border-strong); color: var(--wpm-text-primary); }
.phone-col { display: flex; flex-direction: column; align-items: center; }
.wa-caption {
  max-width: 720px; margin: 40px auto 0; text-align: center;
  font-size: 15px; line-height: 1.7; color: var(--wpm-text-secondary);
}

/* ============================================================
   INCLUDED — what's in the box
   ============================================================ */
.included {
  max-width: 820px; margin: 0 auto;
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  border-radius: var(--wpm-radius-lg);
  overflow: hidden;
  box-shadow: var(--wpm-shadow-md);
}
.inc-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 20px 28px;
  align-items: baseline;
}
.inc-row + .inc-row { border-top: 1px solid var(--wpm-border-subtle); }
.inc-row:hover { background: var(--wpm-surface-2); }
.inc-label {
  display: flex; gap: 11px; align-items: baseline;
  font-family: var(--wpm-font-display);
  font-weight: 600; font-size: 16px;
  color: var(--wpm-text-primary);
  letter-spacing: -0.01em;
}
.inc-label .chk { color: var(--wpm-success-text); flex-shrink: 0; font-size: 15px; transform: translateY(2px); }
.inc-detail { font-size: 14.5px; line-height: 1.6; color: var(--wpm-text-secondary); }

/* ============================================================
   MIRROR — for whom / not for whom
   ============================================================ */
.mirror { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin: 0 auto; }
.mirror-col {
  padding: 30px;
  border-radius: var(--wpm-radius-lg);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-1);
}
.mirror-col.yes { border-color: color-mix(in srgb, var(--wpm-success-500) 40%, var(--wpm-border)); }
.mirror-col.no { background: var(--wpm-surface-2); }
.mirror-col h3 {
  font-family: var(--wpm-font-display);
  font-size: 19px; letter-spacing: -0.015em;
  color: var(--wpm-text-primary); margin: 0 0 20px;
  display: flex; align-items: center; gap: 10px;
}
.mirror-col h3 .tag {
  width: 30px; height: 30px; border-radius: var(--wpm-radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.mirror-col.yes h3 .tag { background: var(--wpm-success-bg); color: var(--wpm-success-text); }
.mirror-col.no h3 .tag { background: var(--wpm-error-bg); color: var(--wpm-error-text); }
.mirror-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.mirror-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.6; color: var(--wpm-text-secondary); }
.mirror-list li strong { color: var(--wpm-text-primary); font-weight: 600; }
.mirror-list .mk { flex-shrink: 0; margin-top: 2px; }
.mirror-col.yes .mk { color: var(--wpm-success-text); }
.mirror-col.no .mk { color: var(--wpm-error-text); }

/* ============================================================
   ONE PLACE — prose with side rule
   ============================================================ */
.oneplace { max-width: 680px; margin: 0 auto; }
.oneplace p { font-size: 18px; line-height: 1.78; color: var(--wpm-text-secondary); margin: 0 0 20px; }
.oneplace p strong { color: var(--wpm-text-primary); font-weight: 600; }

/* ============================================================
   INVESTISSEMENT — pricing block + encarts
   ============================================================ */
.invest-wrap { max-width: 720px; margin: 0 auto; }
.invest-card {
  position: relative;
  border-radius: var(--wpm-radius-lg);
  border: 1px solid var(--wpm-brand);
  background: var(--wpm-surface-1);
  box-shadow: var(--wpm-glow-brand);
  padding: 44px 40px 38px;
  text-align: center;
  overflow: hidden;
}
.invest-card::before {
  content: ""; position: absolute; width: 520px; height: 420px;
  left: 50%; top: -260px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(83,58,253,.4), transparent 60%);
  filter: blur(90px); pointer-events: none;
}
.invest-inner { position: relative; z-index: 1; }
.invest-name { font-family: var(--wpm-font-display); font-size: 19px; letter-spacing: -0.015em; color: var(--wpm-text-primary); margin: 0 0 18px; }
.invest-price { font-family: var(--wpm-font-display); font-weight: 700; font-size: clamp(48px, 7vw, 64px); letter-spacing: -0.04em; line-height: 1; color: var(--wpm-text-primary); }
.invest-alt { font-size: 16px; color: var(--wpm-text-secondary); margin-top: 12px; }
.invest-alt b { color: var(--wpm-text-primary); font-weight: 600; }
.invest-note { font-size: 14px; color: var(--wpm-text-muted); margin-top: 8px; }
.invest-card .btn { margin-top: 26px; }
.invest-card .micro { font-size: 13px; color: var(--wpm-text-muted); margin-top: 14px; }

.encart {
  border-radius: var(--wpm-radius-lg);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-1);
  padding: 26px 30px;
  margin-top: 22px;
  font-size: 15px; line-height: 1.72; color: var(--wpm-text-secondary);
}
.encart.roi { border: 1px solid color-mix(in srgb, var(--wpm-accent-warm) 38%, var(--wpm-border)); }
.encart.roi strong { color: var(--wpm-text-primary); font-weight: 600; }
.encart.firm { border: 1px solid var(--wpm-border-strong); background: var(--wpm-surface-2); }
.encart .head {
  font-family: var(--wpm-font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: var(--wpm-text-primary); margin: 0 0 8px;
  display: block;
}
.invest-reassure { max-width: 640px; margin: 26px auto 0; text-align: center; font-size: 14.5px; line-height: 1.7; color: var(--wpm-text-muted); }

/* ============================================================
   RESULTS list (under testimonials)
   ============================================================ */
.results {
  max-width: 720px; margin: 36px auto 0;
  background: var(--wpm-surface-1); border: 1px solid var(--wpm-border);
  border-radius: var(--wpm-radius-lg); padding: 28px 32px;
}
.results h4 { font-family: var(--wpm-font-display); font-size: 16px; letter-spacing: -0.01em; color: var(--wpm-text-primary); margin: 0 0 18px; }
.results ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; }
.results li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--wpm-text-secondary); }
.results li .b { font-family: var(--wpm-font-display); font-weight: 700; color: var(--wpm-brand-text); font-size: 15px; }
.testi-note { max-width: 720px; margin: 0 auto 28px; text-align: center; font-size: 14px; line-height: 1.65; color: var(--wpm-text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .wa-grid { grid-template-columns: 1fr; gap: 36px; }
  .wa-copy { text-align: center; }
  .wa-copy .eyebrow { display: block; }
  .mirror { grid-template-columns: 1fr; }
  .inc-row { grid-template-columns: 1fr; gap: 6px; }
  .results ul { grid-template-columns: 1fr; }
}


/* ============================================================
   REFONTE 2026-06 — page deux offres (Fondations / Le Déclic)
   Nouveaux blocs : portes d'offres, déclics, handover, inclus 2 col,
   prix 2 cartes. S'appuie sur les memes tokens --wpm-*.
   ============================================================ */

/* --- Section offres : les deux portes --- */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin: 0 auto; }
.offer-card {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 30px 30px;
  border-radius: var(--wpm-radius-lg);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-1);
  transition: var(--wpm-transition);
}
.offer-card:hover { border-color: var(--wpm-border-strong); box-shadow: var(--wpm-shadow-md); }
.offer-card.featured { border-color: var(--wpm-brand); box-shadow: var(--wpm-glow-brand); }
.offer-badge {
  position: absolute; top: 16px; right: 18px; left: auto;
  background: var(--wpm-brand); color: #fff;
  font-family: var(--wpm-font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.03em; padding: 5px 12px; border-radius: var(--wpm-radius-pill);
  white-space: nowrap;
}
.offer-tag { font-family: var(--wpm-font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--wpm-brand-text); text-transform: uppercase; }
.offer-name { font-family: var(--wpm-font-display); font-size: 24px; letter-spacing: -0.02em; color: var(--wpm-text-primary); margin: 8px 0 14px; }
.offer-desc { font-size: 15px; line-height: 1.62; color: var(--wpm-text-secondary); margin: 0 0 14px; }
.offer-out { font-size: 15px; line-height: 1.6; color: var(--wpm-text-primary); font-weight: 500; margin: 0 0 18px; }
.offer-meta { font-family: var(--wpm-font-mono); font-size: 12.5px; line-height: 1.5; color: var(--wpm-text-muted); padding-top: 16px; margin-top: auto; margin-bottom: 18px; border-top: 1px dashed var(--wpm-border); }
.offer-card .btn { width: 100%; justify-content: center; text-align: center; }
.offers-note { text-align: center; max-width: 600px; margin: 26px auto 0; font-size: 15px; color: var(--wpm-text-secondary); }

/* --- Section methode : les declics --- */
.declics { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.declic {
  position: relative; padding: 30px 32px;
  border-radius: var(--wpm-radius-lg);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-1);
}
.declic-n {
  position: absolute; top: -16px; left: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--wpm-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wpm-font-display); font-weight: 700; font-size: 16px;
  box-shadow: var(--wpm-glow-brand);
}
.declic h3 { font-family: var(--wpm-font-display); font-size: 21px; letter-spacing: -0.02em; color: var(--wpm-text-primary); margin: 10px 0 14px; }
.declic > p { font-size: 16.5px; line-height: 1.72; color: var(--wpm-text-secondary); margin: 0; }
.declic-do {
  margin-top: 18px !important;
  padding: 15px 18px;
  border-left: 3px solid var(--wpm-brand);
  background: var(--wpm-brand-surface);
  border-radius: 0 var(--wpm-radius-sm) var(--wpm-radius-sm) 0;
  font-size: 15px !important; line-height: 1.6 !important;
}
.declic-do strong { color: var(--wpm-brand-text); font-weight: 600; }
.declic-do em { color: var(--wpm-text-muted); }
.declic-ai {
  display: inline-block; margin: 8px 0 4px;
  font-family: var(--wpm-font-mono); font-size: 11px; font-weight: 600;
  color: var(--wpm-accent-text); background: var(--wpm-accent-bg);
  padding: 4px 10px; border-radius: var(--wpm-radius-pill);
}
.declic-fin {
  padding: 32px; border-radius: var(--wpm-radius-lg);
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 42%, var(--wpm-border));
  background: var(--wpm-surface-2); text-align: center;
}
.declic-fin h3 { font-family: var(--wpm-font-display); font-size: 22px; letter-spacing: -0.02em; color: var(--wpm-text-primary); margin: 0 0 12px; }
.declic-fin p { font-size: 16px; line-height: 1.7; color: var(--wpm-text-secondary); margin: 0; }

/* --- Section deroule : titres de groupe timeline --- */
.tl-group-title {
  font-family: var(--wpm-font-display); font-size: 18px; letter-spacing: -0.01em;
  color: var(--wpm-brand-text); max-width: 820px; margin: 0 auto 22px;
  padding-bottom: 10px; border-bottom: 1px solid var(--wpm-border);
}
.tl-group-title ~ .tl-group-title { margin-top: 48px; }

/* --- Section handover (debordements) --- */
.handover {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 42px 38px; border-radius: var(--wpm-radius-lg);
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 34%, var(--wpm-border));
  background: var(--wpm-surface-1); box-shadow: var(--wpm-shadow-md);
}
.handover .eyebrow { display: block; margin-bottom: 14px; }
.handover h2 { font-family: var(--wpm-font-display); font-size: clamp(24px,3vw,32px); letter-spacing: -0.02em; color: var(--wpm-text-primary); margin: 0 0 18px; }
.handover p { font-size: 16.5px; line-height: 1.72; color: var(--wpm-text-secondary); margin: 0 0 14px; }
.handover p:last-child { margin-bottom: 0; }
.handover p strong { color: var(--wpm-text-primary); font-weight: 600; }

/* --- Section inclus : deux colonnes --- */
.inc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin: 0 auto; align-items: start; }
.inc-card { padding: 30px; border-radius: var(--wpm-radius-lg); border: 1px solid var(--wpm-border); background: var(--wpm-surface-1); }
.inc-card.add { border-color: var(--wpm-brand); box-shadow: var(--wpm-glow-brand); }
.inc-card h3 { font-family: var(--wpm-font-display); font-size: 18px; letter-spacing: -0.01em; color: var(--wpm-text-primary); margin: 0 0 18px; }
.inc-card-note { font-size: 12px; color: var(--wpm-text-muted); margin: -12px 0 16px; font-family: var(--wpm-font-mono); }
.inc-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.inc-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: var(--wpm-text-secondary); }
.inc-card li .chk { color: var(--wpm-success-text); flex-shrink: 0; margin-top: 2px; }

/* --- Section investissement : deux cartes de prix --- */
.invest-wrap.wide { max-width: 920px; }
.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.invest-card.sm { padding: 36px 30px 30px; text-align: left; border-color: var(--wpm-border); box-shadow: var(--wpm-shadow-md); display: flex; }
.invest-card.sm:not(.featured)::before { display: none; }
.invest-card.sm.featured { border-color: var(--wpm-brand); box-shadow: var(--wpm-glow-brand); }
.invest-card.sm .invest-inner { display: flex; flex-direction: column; width: 100%; }
.invest-card .offer-badge { top: 14px; right: 16px; left: auto; }
.invest-candi { font-family: var(--wpm-font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; color: var(--wpm-text-primary); margin: 4px 0 16px; }
.invest-guarantee { font-size: 14.5px; line-height: 1.6; color: var(--wpm-text-secondary); padding-top: 18px; border-top: 1px solid var(--wpm-border-subtle); }
.invest-guarantee strong { color: var(--wpm-success-text); font-weight: 600; }
.invest-card.sm .btn { width: 100%; margin-top: 24px; justify-content: center; text-align: center; }
.invest-card.sm .micro { text-align: center; }

/* --- responsive --- */
@media (max-width: 880px) {
  .offers, .inc-cols, .invest-grid { grid-template-columns: 1fr; }
  .declic, .declic-fin { padding: 26px 22px; }
  .handover { padding: 32px 24px; }
}
