/* input(3614,1): run-time error CSS1019: Unexpected token, found '}' */
/* Flame XR — déclarations @font-face locales */

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Regular.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Medium.woff2?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Design tokens — colors, fonts */
:root {
  --navy: #0B1A2E;
  --navy-2: #0F2235;
  --navy-3: #14304a;
  --espresso: #15110D;
  --yellow: #F5C400;
  --yellow-2: #ffd633;
  --yellow-dark: #d49b00;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-2: #6f7d8c;
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.18);
  --red: #E5524A;

  /* RGB channels — allow rgba(var(--yellow-rgb), 0.2) syntax */
  --yellow-rgb: 245, 196, 0;
  --navy-rgb: 11, 26, 46;
  --red-rgb: 229, 82, 74;
  --gray-rgb: 107, 114, 128;
  --white-rgb: 255, 255, 255;

  /* Light-section palette (ROI table) */
  --sand: #F4F2EA;
  --sand-hover: #ECEAE0;
  --sand-white-hover: #FAF9F4;
  --sand-border: #ECE8DA;
  --sand-text: #5A6878;
  --sand-muted: #6B7A8A;

  --display: 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* ── Spacing scale (base 4 px) ── */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ── Border radius ── */
  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* ── Font sizes ── */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;
}

/* Base — reset, global elements, containers, typography, section layout */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body);
    background: var(--navy);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    font-size: 17px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

section {
    position: relative;
}

.eyebrow {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 500;
    display: inline-block;
}

.h-display {
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
}

h1.h-display {
    font-size: clamp(36px, 4.5vw, 65px);
    line-height: 1.0;
}

h2.h-display {
    font-size: clamp(32px, 4.4vw, 64px);
}

h3.h-display {
    font-size: clamp(22px, 2vw, 28px);
    letter-spacing: 1px;
}

.lede {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--white);
    line-height: 1.55;
    max-width: 640px;
}

.text-yellow {
    color: var(--yellow);
}

.text-gray {
    color: var(--white);
}

.muted {
    color: var(--white-2);
}

.section {
    padding: 110px 0;
}

.section-alt {
    background: var(--navy-2);
}

.section-light {
    background: #F4F2EA;
    color: var(--navy);
}

    .section-light .lede {
        color: #4a5664;
    }

    .section-light .h-display {
        color: var(--navy);
    }

    .section-light .eyebrow {
        color: var(--navy);
        opacity: 0.7;
    }

.section-head {
    max-width: 760px;
    margin-bottom: var(--space-14);
}

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        .section-head.center .lede {
            margin-left: auto;
            margin-right: auto;
        }

    .section-head h2 {
        margin: 14px 0 18px;
    }

    /* Variante "wide" — eyebrow 20px, 28px d'écart avant le h2 et avant le h3, largeur 980px.
   Réutilisable par toute nouvelle section : ajouter la classe .wide à .section-head. */
    .section-head.wide {
        max-width: 980px;
    }

        .section-head.wide .eyebrow {
            margin-bottom: 28px;
        }

        .section-head.wide h2 {
            margin-top: 0;
            margin-bottom: 28px;
        }

        .section-head.wide h3 {
            margin-top: 0;
            margin-bottom: 0;
        }

/* Components — buttons, nav base, scroll reveal, scroll dots */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: var(--space-4) 26px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}

    .btn-primary:hover {
        background: var(--yellow-2);
        border-color: var(--yellow-2);
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

    .btn-outline:hover {
        color: var(--yellow);
        border-color: var(--yellow);
        background: rgba(255,255,255,0.04);
    }

.btn-link {
    background: transparent;
    color: var(--white);
    padding: var(--space-4) 0;
}

    .btn-link:hover {
        color: var(--yellow);
    }

.btn-sm {
    padding: 10px 18px;
    font-size: var(--text-sm);
}

/* --- Nav base --- */
section[id] {
    scroll-margin-top: 72px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-4) 0;
    background: rgba(11,26,46,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.2s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: var(--text-2xl);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: var(--text-sm);
    font-weight: 500;
}

    .nav-links a {
        white-space: nowrap;
    }

        .nav-links a:hover {
            color: var(--yellow);
        }

.nav-cta-mobile {
    display: none;
}

.nav-cta-burger {
    display: none;
}

.nav-burger {
    display: none;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

.hero .reveal {
    opacity: 1;
    transform: none;
}

/* --- Scroll dots (horizontal carousels) --- */
.scroll-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-5);
}


.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
}

    .scroll-dot.active {
        width: 18px;
        background: var(--yellow);
    }

.section-light .scroll-dot {
    background: rgba(var(--navy-rgb), 0.25);
}

    .section-light .scroll-dot.active {
        background: var(--yellow-dark);
    }

@media (max-width: 860px) {
    .scroll-dots {
        display: flex;
    }
}

/* Skip-to-content (WCAG 2.4.1) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}

    .skip-to-content:focus {
        top: 0;
        outline: 3px solid var(--navy);
        outline-offset: 2px;
    }

/* Focus-visible conforme (WCAG 2.4.7) */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 3px;
}
/* Supprimer outline sur clic souris, conserver au clavier */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
[role="tab"]:focus:not(:focus-visible) {
    outline: none;
}

/* --- HERO (S1) --- */
.hero {
  min-height: auto;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
/*.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 40%, rgba(var(--yellow-rgb),0.20), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(var(--red-rgb),0.14), transparent 60%),
    linear-gradient(90deg, var(--navy) 0%, rgba(var(--navy-rgb),0.88) 32%, rgba(var(--navy-rgb),0.45) 58%, rgba(var(--navy-rgb),0.15) 78%, transparent 100%),
    url("/assets/images/hero/hero-main-v2.jpg");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, 75% 45%;
  background-repeat: no-repeat;
}*/

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 20% 80%, rgba(var(--red-rgb),0.14), transparent 60%), linear-gradient(90deg, var(--navy) 0%, rgba(var(--navy-rgb),0.88) 32%, rgba(var(--navy-rgb),0.45) 58%, rgba(var(--navy-rgb),0.15) 78%, transparent 100%), url("/assets/images/hero/hero-main-v2.webp?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0");
    background-size: auto, auto, cover;
    background-position: center, center, 75% 45%;
    background-repeat: no-repeat;
}
/*.hero-bg::after {
  content: "";
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(var(--white-rgb),0.03) 22px 23px),
    linear-gradient(180deg, transparent 0%, rgba(var(--navy-rgb),0.6) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}*/
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(var(--white-rgb),0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--white-rgb),0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.7;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--space-2) 14px;
  border: 1px solid rgba(var(--yellow-rgb),0.4);
  background: rgba(var(--yellow-rgb),0.06);
  border-radius: var(--radius-full);
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow);
}
.hero-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
}
.hero h1 { margin: 22px 0 24px; }
.hero h1 .accent { color: var(--yellow); position: relative; }

.hero-rotating-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
  min-height: 1.05em;
}
.hero-rotating-track {
  display: inline-block;
  color: var(--yellow);
  will-change: transform, opacity;
  transition: transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.35s ease;
}
.hero-actions { display: flex; gap: var(--space-4); align-items: center; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  margin-top: var(--space-10);
  display: flex; gap: 36px;
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
  flex-wrap: wrap;
}
.stat { cursor: default; text-align: center; transition: opacity 0.2s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1); }
.stat:hover { transform: translateY(-3px); }
.hero-stats:has(.stat:hover) .stat:not(:hover) { opacity: 0.45; }
.stat .num { font-family: var(--display); font-size: clamp(40px, 4.5vw, 60px); font-weight: 600; color: var(--yellow); line-height: 1; transition: text-shadow 0.3s ease; }
.stat:hover .num { text-shadow: 0 0 28px oklch(82% 0.17 80 / 0.5); }
.stat .lbl { font-size: var(--text-xs); color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-top: var(--space-1); }
@media (prefers-reduced-motion: reduce) {
  .stat { transition: opacity 0.2s ease; }
  .stat:hover { transform: none; }
  .stat .num { transition: none; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  display: grid; place-items: center;
}
.hero-visual-label {
  position: relative;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--gray); text-transform: uppercase;
  text-align: center;
  background: rgba(var(--navy-rgb),0.7);
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  max-width: 80%;
}
.hero-visual-label strong { display: block; color: var(--yellow); font-family: var(--display); font-size: var(--text-lg); letter-spacing: 1px; margin-bottom: var(--space-1); font-weight: 400; }

.float-tag {
  position: absolute;
  background: rgba(var(--navy-rgb),0.92);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  font-family: var(--mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(6px);
}
.float-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.float-tag.t1 { top: 8%; left: 0%; }
.float-tag.t2 { bottom: 10%; right: -0%; }
.float-tag.t3 { top: 90%; left: 5%; }

/* --- PROBLEM (S2) --- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.prob-card {
  padding: 36px 30px;
  background: rgba(var(--white-rgb),0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  transition: all 0.2s ease;
}
.prob-card:hover { background: rgba(var(--white-rgb),0.04); border-color: var(--line-2); }
.prob-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: rgba(var(--yellow-rgb),0.08);
  border: 1px solid rgba(var(--yellow-rgb),0.25);
  display: grid; place-items: center;
  margin-bottom: var(--space-6);
  color: var(--yellow);
}
.prob-card h3 { font-size: var(--text-lg); font-weight: 600; margin: 0 0 10px; font-family: var(--body); letter-spacing: 0; text-transform: none; line-height: 1.3; }
.prob-card p { color: var(--white); margin: 0; font-size: 15px; }
.problem-cta {
  margin-top: 72px; text-align: center;
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 50px);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.problem-cta .arrow { display: block; margin-top: 12px; color: var(--yellow); font-size: 28px; }

/* --- SOLUTION (S3) --- */
.solution-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.sol-benefits {
    margin-top: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sol-benefit {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.sol-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: var(--text-sm);
    margin-top: 2px;
}

.sol-benefit p {
    margin: 0;
    font-size: var(--text-base);
    color: rgba(var(--white-rgb),0.9);
    line-height: 1.5;
}

    .sol-benefit p strong {
        color: var(--white);
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

.sol-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
    border: 1px solid var(--line-2);
    display: grid;
    place-items: center;
}

    .sol-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(0deg, transparent 0 24px, rgba(var(--yellow-rgb),0.05) 24px 25px), radial-gradient(circle at 60% 40%, rgba(var(--yellow-rgb),0.20), transparent 55%);
    }

.sol-visual-content {
    position: relative;
    text-align: center;
    font-family: var(--mono);
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: var(--space-6);
}

    .sol-visual-content strong {
        display: block;
        font-family: var(--display);
        font-size: var(--text-3xl);
        color: var(--yellow);
        letter-spacing: 1px;
        margin-bottom: 6px;
        font-weight: 400;
    }

/* --- VIDEO (S4) --- */
.video-wrap { max-width: 960px; margin: 0 auto; }
.video-player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
  transition: transform 0.2s ease;
  background: var(--navy);
}
.video-player:hover { transform: scale(1.005); }
.video-player > iframe,
.video-player > video,
.video-player > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-player > img { object-fit: cover; }
.video-player[data-video-id] { cursor: pointer; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 12px 40px rgba(var(--yellow-rgb),0.4);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.play-btn::before {
  content: "";
  width: 0; height: 0;
  border-left: 26px solid var(--navy);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}
.video-meta {
  text-align: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: var(--text-xs);
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}
.video-meta::before { content: "● "; color: var(--yellow); }
.video-thumbnail-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between; padding: var(--space-6);
  pointer-events: none;
}
.video-thumb-tag {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(var(--navy-rgb),0.8);
  border: 1px solid var(--line-2);
  padding: 6px var(--space-3);
  border-radius: 4px;
  color: var(--gray);
}
.video-thumb-bottom {
  display: flex; gap: 10px; align-self: flex-end;
}
.video-thumb-pill {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(var(--yellow-rgb),0.15);
  border: 1px solid rgba(var(--yellow-rgb),0.4);
  padding: 6px var(--space-3);
  border-radius: 4px;
  color: var(--yellow);
}

/* --- KIT (S5) --- */
.kit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.kit-card {
    background: rgba(var(--white-rgb),0.025);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}
/*.kit-card:hover { transform: translateY(-4px); border-color: rgba(var(--yellow-rgb),0.3); background: rgba(var(--white-rgb),0.04); }*/
.kit-photo {
    aspect-ratio: 1/1;
    background: radial-gradient(circle at 50% 50%, rgba(var(--yellow-rgb),0.10), transparent 60%), repeating-linear-gradient(45deg, var(--navy-3) 0 12px, var(--navy-2) 12px 13px);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--yellow);
    position: relative;
}

.kit-photo-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-2);
    text-align: center;
    padding: 10px 14px;
    background: rgba(var(--navy-rgb),0.5);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.kit-num {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--yellow);
    background: rgba(var(--navy-rgb),0.85);
    padding: var(--space-1) var(--space-2);
    border-radius: 3px;
    border: 1px solid rgba(var(--yellow-rgb),0.3);
}

.kit-body {
    padding: var(--space-3) var(--space-6) var(--space-4);
}

.kit-title {
    padding: var(--space-3) var(--space-6) var(--space-4);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(var(--yellow-rgb));
    border-radius: 4px;
    min-height: 90px;
    display: flex;
    align-items: center;
}

    .kit-title h3 {
        font-size: 17px;
        font-weight: 600;
        margin: 0;
        font-family: var(--body);
        letter-spacing: 0;
        text-transform: none;
        line-height: 1.3;
        color: var(--white);
    }

.kit-text {
    padding: var(--space-3) var(--space-6) var(--space-4);
}

    .kit-text p {
        color: var(--white);
        margin: 0;
        font-size: var(--text-base);
        line-height: 1.5;
    }

.sol-benefit p {
    color: var(--white);
    margin: 0;
    font-size: var(--text-base);
    line-height: 1.5;
}

.kit-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: var(--body);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
    color: var(--white);
}

.kit-body p {
    color: var(--white);
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
}

.kit-cta {
    text-align: center;
    margin-top: var(--space-14);
}

/* Grille "Des services" : reste en grille classique en mobile (pas de carrousel) */
@media (max-width: 860px) {
    .kit-grid.kit-grid-services {
        display: flex;
        flex-direction: column;
        overflow-x: visible;
        scroll-snap-type: none;
    }

        .kit-grid.kit-grid-services .kit-card {
            width: 100%;
            max-width: none;
            flex-shrink: 1;
            scroll-snap-align: none;
        }
}

/* --- ROI (S6) --- */
.roi-intro {
    max-width: 700px;
    margin: 0 auto var(--space-12);
    text-align: center;
}

    .roi-intro p {
        font-size: var(--text-lg);
        margin-top: var(--space-4);
        color: var(--sand-muted);
    }

/* Stat strip */
.roi-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy);
    border: 1px solid rgba(var(--white-rgb),0.08);
    border-radius: var(--radius-md);
    margin: 0 auto 52px;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(var(--navy-rgb),0.18);
    overflow: hidden;
}

.roi-stat {
    padding: 22px var(--space-4);
    text-align: center;
    border-right: 1px solid var(--line);
    cursor: default;
    transition: background 0.18s ease;
}

    .roi-stat:last-child {
        border-right: 0;
    }
/*.roi-stat:hover { background: rgba(var(--white-rgb),0.04); }*/
.roi-stat-num {
    font-family: var(--display);
    font-size: clamp(24px, 2.6vw, 38px);
    color: var(--yellow);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.roi-stat-lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 7px;
}

/* Comparison table */
.roi-table-wrap {
    max-width: 900px;
    margin: 0 auto 52px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    border: 1px solid var(--sand-border);
    box-shadow: 0 12px 48px rgba(var(--navy-rgb),0.10);
}

.roi-compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

    .roi-compare thead th {
        padding: var(--space-5) 22px;
        font-family: var(--display);
        font-size: var(--text-xl);
        letter-spacing: 1px;
        font-weight: 400;
        text-align: left;
        position: relative;
    }

.roi-th-crit {
    background: var(--sand);
    width: 34%;
}

.roi-th-bad {
    background: #fff;
    color: var(--sand-muted);
    border-left: 1px solid var(--sand-border);
    width: 28%;
    font-size: 17px;
}

.roi-th-good {
    background: var(--navy);
    color: var(--yellow);
    border-left: 1px solid rgba(var(--white-rgb),0.08);
    border-top: 3px solid var(--yellow);
    width: 38%;
    background-image: radial-gradient(ellipse at 60% 0%, rgba(var(--yellow-rgb),0.12), transparent 65%);
}

.roi-compare tbody tr {
    border-top: 1px solid var(--sand-border);
    transition: background 0.12s ease;
}
/*.roi-compare tbody tr:hover .roi-crit { background: var(--sand-hover); }
.roi-compare tbody tr:hover .roi-bad { background: var(--sand-white-hover); }
.roi-compare tbody tr:hover .roi-good { background: var(--navy-3); }*/
.roi-crit {
    padding: 14px 22px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sand-text);
    background: var(--sand);
    border-right: 1px solid var(--sand-border);
    vertical-align: middle;
}

.roi-bad {
    padding: 14px 22px 14px 48px;
    font-size: var(--text-sm);
    color: var(--sand-muted);
    background: #fff;
    border-right: 1px solid rgba(var(--navy-rgb),0.06);
    vertical-align: middle;
    position: relative;
}

    .roi-bad::before {
        content: "✕";
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(var(--red-rgb),0.08);
        border: 1px solid rgba(var(--red-rgb),0.22);
        color: var(--red);
        font-size: 9px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.roi-good {
    padding: 14px 22px 14px 48px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(var(--white-rgb),0.92);
    background: var(--navy);
    transition: background 0.15s ease;
    vertical-align: middle;
    position: relative;
}

    .roi-good::before {
        content: "✓";
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(var(--yellow-rgb),0.15);
        border: 1px solid rgba(var(--yellow-rgb),0.35);
        color: var(--yellow);
        font-size: 10px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Sous-titres h3 : même style que h2.h-display mais moitié moins gros */
#roi .roi-intro h3.h-display {
    font-size: clamp(16px, 2.2vw, 32px);
}

/* Problem-grid dans la section ROI (fond clair) */
#roi .prob-card {
    background: rgba(0, 66, 135, 0.04);
    border-color: rgba(0, 66, 135, 0.14);
}
/*#roi .prob-card:hover {
  background: rgba(0, 66, 135, 0.08);
  border-color: rgba(0, 66, 135, 0.28);
}*/
#roi .prob-icon {
    background: var(--yellow);
    border-color: var(--yellow);
    color: rgba(8, 18, 32, 0.92);
}

#roi .prob-card h3 {
    color: rgba(8, 18, 32, 0.92);
}

#roi .prob-card p {
    color: #011936;
}

/* --- TESTIMONIALS (S7) --- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.testi-card {
  position: relative;
  background: rgba(var(--white-rgb),0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-8) 28px;
  display: flex; flex-direction: column;
  transition: all 0.2s ease;
}
.testi-card-clickable:hover { border-color: rgba(var(--yellow-rgb),0.3); }
.testi-card-link { position: absolute; inset: 0; border-radius: inherit; }
.testi-quote-mark { font-family: var(--display); font-size: 56px; color: var(--yellow); line-height: 0.5; margin-bottom: 18px; }
.testi-stars { color: var(--yellow); }
#blog .testi-stars { display: flex; align-items: center; gap: 3px; margin-bottom: var(--space-3); }
.testi-star-icon { display: block; }
.testi-text { font-size: var(--text-base); line-height: 1.55; flex: 1; color: rgba(var(--white-rgb),0.92); }
.testi-author { display: flex; gap: var(--space-3); align-items: center; margin-top: var(--space-6); padding-top: var(--space-5); border-top: 1px solid var(--line); }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: grid; place-items: center;
  font-family: var(--display); color: var(--navy); font-size: var(--text-lg);
  overflow: hidden; flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name { font-weight: 600; font-size: var(--text-sm); }
.testi-role {
    font-size: var(--text-xs);
    color: var(--white);
    margin-top: 2px;
}

.logos-row {
  margin-top: 70px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-12);
  align-items: center;
  opacity: 0.55;
}
.logos-label {
  width: 100%; text-align: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--space-6);
}
.logo-placeholder {
  font-family: var(--display); font-size: 22px; letter-spacing: 2px;
  color: var(--gray);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* --- CASE STUDY PREVIEWS (in S7) --- */
.cc-previews {
  margin-top: var(--space-16);
  padding-top: 52px;
  border-top: 1px solid rgba(var(--white-rgb),0.07);
}
.cc-preview-head {
  text-align: center;
  margin-bottom: 36px;
}
.cc-preview-head h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  margin-top: var(--space-2);
}
.cc-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.cc-preview-card {
  background: rgba(var(--white-rgb),0.03);
  border: 1px solid rgba(var(--white-rgb),0.08);
  border-radius: 16px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.25s;
}
.cc-preview-card:hover {
  border-color: rgba(var(--yellow-rgb),0.35);
  transform: translateY(-4px);
}
.cc-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(var(--yellow-rgb),0.08);
  border: 1px solid rgba(var(--yellow-rgb),0.2);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}
.cc-preview-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.cc-preview-sub {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.55;
  margin-top: 6px;
}
.cc-preview-metrics {
  display: flex;
  gap: var(--space-3);
}
.cc-preview-metric {
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--white-rgb),0.07);
  border-radius: 8px;
  padding: var(--space-3) 14px;
  flex: 1;
  min-width: 0;
}
.cc-preview-metric-num {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
  line-height: 1;
}
.cc-preview-metric-lbl {
  font-size: 10.5px;
  color: var(--gray);
  font-family: var(--mono);
  margin-top: var(--space-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cc-preview-cta {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.cc-preview-card:hover .cc-preview-cta { gap: 10px; }

@media (max-width: 860px) {
  /* Métriques en layout horizontal : [NUM] Label sur chaque ligne */
  .cc-preview-metrics {
    flex-direction: column;
    gap: var(--space-2);
  }
  .cc-preview-metric {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
  }
  .cc-preview-metric-num {
    font-size: 1.35rem;
  }
  .cc-preview-metric-lbl {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    margin-top: 0;
    font-size: 11px;
  }
}

/* --- PRICING (S8) --- */
.pricing-tabs {
    display: none;
}

.tab-popular {
    display: none;
}

.pricing-intro {
    max-width: 720px;
    margin: 0 auto 36px;
    background: rgba(var(--yellow-rgb),0.06);
    border: 1px solid rgba(var(--yellow-rgb),0.25);
    border-radius: 10px;
    padding: 22px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.pricing-intro-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-size: var(--text-lg);
}

.pricing-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(var(--white-rgb),0.9);
}

    .pricing-intro p strong {
        color: var(--yellow);
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: rgba(var(--white-rgb),0.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 36px var(--space-8);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}

    .price-card:hover {
        border-color: var(--line-2);
    }

    .price-card.featured {
        background: linear-gradient(180deg, rgba(var(--yellow-rgb),0.10) 0%, rgba(var(--yellow-rgb),0.02) 100%);
        border-color: var(--yellow);
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(var(--yellow-rgb),0.10);
    }

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--navy);
    padding: 6px 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
}

.price-duration {
    font-family: var(--mono);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.price-amount {
    font-family: var(--display);
    font-size: 64px;
    line-height: 1;
    margin-top: 14px;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 400;
}

    .price-amount .currency {
        font-size: var(--text-3xl);
        vertical-align: top;
        margin-right: var(--space-1);
    }

    .price-amount .period {
        font-family: var(--body);
        font-size: var(--text-base);
        color: var(--gray);
        margin-left: 6px;
        font-weight: 400;
    }

.price-card.featured .price-amount {
    color: var(--yellow);
}

.price-desc {
    color: var(--gray);
    font-size: var(--text-sm);
    margin-top: var(--space-3);
    min-height: 44px;
}

.price-divider {
    height: 1px;
    background: var(--line);
    margin: 26px 0 22px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

    .price-features li {
        font-size: var(--text-sm);
        color: rgba(var(--white-rgb),0.85);
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .price-features li::before {
            content: "✓";
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            background: rgba(var(--yellow-rgb),0.18);
            color: var(--yellow);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 11px;
            font-weight: 700;
        }

.price-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.price-card:not(.featured) .price-cta {
    background: transparent;
    color: var(--white);
    border-color: rgba(var(--white-rgb),0.25);
}

    .price-card:not(.featured) .price-cta:hover {
        border-color: var(--yellow);
        color: var(--yellow);
    }

.pricing-foot {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
}

.price-features li.feature-network {
    color: var(--yellow);
}

    .price-features li.feature-network::before {
        content: "★";
        background: rgba(var(--yellow-rgb),0.25);
        color: var(--yellow);
    }

.pricing-network-banner {
    margin-top: var(--space-10);
    background: rgba(var(--yellow-rgb),0.07);
    border: 1px solid rgba(var(--yellow-rgb),0.25);
    border-radius: var(--radius-md);
    padding: var(--space-5) 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.pricing-network-icon {
    font-size: 28px;
    color: var(--yellow);
    flex-shrink: 0;
    line-height: 1;
}

.pricing-network-text {
    font-size: var(--text-sm);
    color: rgba(var(--white-rgb),0.85);
    line-height: 1.6;
}

    .pricing-network-text strong {
        color: var(--white);
    }

    .pricing-network-text a {
        color: var(--yellow);
        text-decoration: none;
        font-weight: 600;
        margin-left: var(--space-2);
        white-space: nowrap;
    }

        .pricing-network-text a:hover {
            text-decoration: underline;
        }

/* --- PRICING2 (nouvelle section séparée) --- */

.prc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
    margin-top: var(--space-14);
}

.prc-col-title {
    font-family: var(--body);
    font-size: var(--text-3xl);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 500;
    margin: 0 0 var(--space-5);
}

.prc-col-sub {
    font-family: var(--body);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: 0;
    color: var(--red);
    margin: 0 0 var(--space-8);
    line-height: 1.6;
}

/* --- Features list --- */
.prc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

    .prc-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: var(--text-sm);
        color: var(--white);
    }

        .prc-features li::before {
            content: "✓";
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            background: rgba(var(--yellow-rgb), 0.15);
            border: 1px solid rgba(var(--yellow-rgb), 0.3);
            color: var(--yellow);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 11px;
            font-weight: 700;
        }

.prc-feature-star {
    color: var(--yellow) !important;
}

    .prc-feature-star::before {
        content: "⬡" !important;
        background: rgba(var(--yellow-rgb), 0.2) !important;
    }

/* --- Separator --- */
.prc-sep {
    border: none;
    border-top: 1px solid var(--line);
    margin: var(--space-6) 0;
}

/* --- Notes --- */
.prc-note-primary {
    font-size: var(--text-sm);
    color: var(--yellow);
    line-height: 1.6;
    margin: 0 0 var(--space-3);
}

    .prc-note-primary strong {
        font-weight: 700;
    }

.prc-note {
    font-size: 13px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* --- Price cards --- */
.prc-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.prc-card {
    background: rgba(var(--white-rgb), 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-6);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .prc-card:hover {
        border-color: var(--line-2);
        background: rgba(var(--white-rgb), 0.05);
    }

/* Ruban diagonal de coin (style ruban cadeau), du bord haut au bord droit */
.prc-badge {
    position: absolute;
    top: 26px;
    right: -58px;
    width: 200px;
    transform: rotate(45deg);
    transform-origin: center;
    background: var(--red);
    color: #fff;
    font-family: var(--body);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 3px 0;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.prc-card-pricing {
    flex-shrink: 0;
    min-width: 120px;
}

.prc-duration {
    font-family: var(--body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 4px;
}

.prc-amount {
    font-family: var(--display);
    font-size: 52px;
    line-height: 1;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: -1px;
}

.prc-currency {
    font-size: 28px;
    vertical-align: top;
    margin-left: 3px;
}

.prc-period {
    font-size: var(--text-xs);
    color: var(--white);
    margin-top: 4px;
}

.prc-desc {
    font-size: var(--text-sm);
    color: var(--white);
    line-height: 1.55;
    margin: 0;
}

/* Réserve un espace dans le coin haut-droit pour que le texte se replie
   avant le ruban, quelle que soit sa longueur, sans toucher au ruban. */
.prc-card:has(.prc-badge) .prc-desc::before {
    content: "";
    float: right;
    width: 84px;
    height: 40px;
}

/* --- CTA --- */
.prc-cta {
    text-align: center;
    margin-top: var(--space-14);
}

/* --- Mobile --- */
@media (max-width: 860px) {
    .prc-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        margin-top: var(--space-10);
    }

    .prc-card {
        gap: var(--space-4);
    }

    .prc-amount {
        font-size: 42px;
    }

    .prc-card-pricing {
        min-width: 100px;
    }
}

/* --- FAQ (S9) --- */
.section#faq {
    background: var(--navy-2);
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  padding-left: var(--space-5);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item[open] {
  border-left-color: var(--yellow);
  background: rgba(var(--yellow-rgb), 0.03);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-6);
  padding: 18px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0;
  transition: color 0.15s ease;
}
.faq-q:hover { color: var(--yellow); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  position: relative;
  transition: all 0.2s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--white);
  transition: transform 0.2s ease;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item[open] .faq-icon { background: var(--yellow); border-color: var(--yellow); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--navy); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-a {
  padding: 0 4px 20px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}
.faq-a em { color: var(--yellow); font-style: normal; font-family: var(--mono); font-size: var(--text-xs); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: var(--space-2); }

/* --- FORM (S10) --- */
.form-section { background: var(--navy-2); }
.form-grid { display: grid; grid-template-columns: 0.8fr 1.1fr; gap: 60px; align-items: start; }
.form-section .form-card { max-width: 680px; margin: 0 auto; }
.form-left h2 { margin: 14px 0 18px; }
.form-bullets { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.form-bullet { display: flex; gap: 14px; align-items: flex-start; }
.form-bullet-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(var(--yellow-rgb),0.10);
  border: 1px solid rgba(var(--yellow-rgb),0.25);
  display: grid; place-items: center;
  color: var(--yellow);
}
.form-bullet p { margin: 0; font-size: 15px; color: rgba(var(--white-rgb),0.9); padding-top: 8px; }

.form-card {
  background: var(--navy);
  border: 1.5px solid rgba(var(--yellow-rgb), 0.55);
  border-radius: 14px;
  padding: var(--space-10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
  font-weight: 500;
}
.form-row label .opt { text-transform: none; letter-spacing: 0; color: var(--white-2); margin-left: 6px; font-family: var(--body); font-size: var(--text-xs); }
.form-row input, .form-row textarea {
  width: 100%;
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid var(--line-2);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  padding: 14px var(--space-4);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--yellow);
  background: rgba(var(--yellow-rgb),0.04);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(var(--gray-rgb),0.6); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; padding: 18px; font-size: var(--text-base); }
.form-foot { text-align: center; margin-top: var(--space-4); font-size: var(--text-xs); color: var(-white); }
.form-feedback { min-height: 1.4em; margin-top: var(--space-3); font-size: var(--text-sm); font-weight: 500; text-align: center; }
.form-feedback:empty { display: none; }
#contactSuccess { color: #4ade80; }
#contactError { color: #f87171; }

/* --- Boutons de méthode de contact, au-dessus de la form-card --- */
.form-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.form-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: rgba(var(--white-rgb), 0.04);
  border: 1px solid var(--line-2);
  border-radius: 16px;
}
.form-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: none;
  border: none;
  border-radius: 11px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.form-tab:hover { background: rgba(var(--white-rgb), 0.05); }
.form-tab.is-active {
  color: var(--white);
  background: var(--navy);
}
.form-tab.is-active:hover { background: var(--navy); }
.form-tab-panel { display: none; }
.form-tab-panel:not([hidden]) { display: block; }
.form-card.is-collapsed { display: none; }

#tab-calendly {
  border-radius: var(--radius-sm);
  overflow: visible;
}
#tab-calendly .calendly-inline-widget {
  min-width: unset !important;
  width: 100% !important;
}

.calendly-facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 340px;
  padding: var(--space-8);
  text-align: center;
  color: var(--white);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: rgba(var(--white-rgb), 0.02);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.calendly-facade:hover,
.calendly-facade:focus-visible {
  background: rgba(var(--white-rgb), 0.05);
  border-color: var(--yellow);
}
.calendly-facade-note {
  font-size: var(--text-xs);
  color: var(--gray-2);
}

/* --- FOOTER --- */
.footer {
    padding: var(--space-14) 0 30px;
    background: rgba(8, 18, 32, 0.92);
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

    .footer-brand p {
        color: var(--white);
        font-size: var(--text-sm);
        margin-top: var(--space-4);
        line-height: 1.55;
    }

.footer-cols {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h2 {
    font-family: var(--body);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 500;
    margin: 0 0 var(--space-4);
}

.footer-col a {
    display: block;
    font-size: var(--text-sm);
    color: rgba(var(--white-rgb),0.85);
    margin-bottom: 10px;
}

    .footer-col a:hover {
        color: var(--yellow);
    }

.footer-social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-bottom {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: var(--space-5);
    flex-wrap: wrap;
    font-size: var(--text-xs);
    color: var(--white);
}

/* --- BLOG (S9.5) --- */
.blog-section { background: var(--espresso); padding: 110px 0; }
.blog-head { text-align: center; margin-bottom: var(--space-12); }
.blog-head h2 { margin: 14px 0 12px; }
.blog-subtitle { font-size: var(--text-base); color: var(--white); margin: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  position: relative;
  background: rgba(var(--white-rgb),0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card-clickable:hover { transform: translateY(-4px); border-color: rgba(var(--yellow-rgb),0.3); background: rgba(var(--white-rgb),0.04); }
.blog-card-link { position: absolute; inset: 0; border-radius: inherit; }

.blog-thumb {
  aspect-ratio: 16/9;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--yellow-rgb),0.10), transparent 60%),
    repeating-linear-gradient(45deg, var(--navy-3) 0 12px, var(--navy-2) 12px 13px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: var(--space-3) 14px;
}
.blog-cat {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(var(--yellow-rgb),0.15);
  border: 1px solid rgba(var(--yellow-rgb),0.4);
  color: var(--yellow);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.blog-body { padding: 22px var(--space-6) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.blog-title {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 10px;
}
.blog-excerpt {
  font-size: var(--text-sm);
  color: rgba(var(--white-rgb), 0.65);
  line-height: 1.55;
  margin: 0 0 var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--yellow);
  margin-top: auto;
  transition: gap 0.15s ease;
}
.blog-card-clickable:hover .blog-link { gap: 10px; }

.blog-footer {
  text-align: center;
  margin-top: var(--space-12);
}

/* --- BLOG LISTING (/blog) --- */
.blog-listing-section {
    background: var(--black);
    padding: 110px 0 130px;
}

.blog-listing-section .section-head {
    margin-bottom: var(--space-12);
}

.blog-empty {
    text-align: center;
    color: var(--gray);
    font-size: var(--text-lg);
    padding: var(--space-16) 0;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

/* --- BLOG CARD FULL --- */
.blog-card-full {
    background: rgba(var(--white-rgb), 0.025);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-full:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--yellow-rgb), 0.35);
    background: rgba(var(--white-rgb), 0.045);
}

.blog-card-full-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.blog-card-full-thumb {
    aspect-ratio: 1.91 / 1;
    position: relative;
    background: var(--navy-2);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.blog-card-full-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card-full:hover .blog-card-full-thumb img {
    transform: scale(1.03);
}

.blog-card-full-cat {
    position: absolute;
    left: var(--space-4);
    bottom: var(--space-4);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(var(--yellow-rgb), 0.18);
    border: 1px solid rgba(var(--yellow-rgb), 0.4);
    color: var(--yellow);
    padding: 5px 10px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.blog-card-full-body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--space-3);
}

.blog-card-full-meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.blog-card-full-title {
    font-family: var(--body);
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    margin: 0;
}

.blog-card-full-excerpt {
    font-size: var(--text-base);
    line-height: 1.55;
    color: var(--white);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-full-footer {
    margin-top: auto;
    padding-top: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
}

.blog-card-full-date {
    font-size: var(--text-sm);
    color: var(--white);
}

.blog-card-full-cta {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s ease;
}

.blog-card-full:hover .blog-card-full-cta {
    gap: 10px;
}

/* --- PAGINATION --- */
.blog-pagination {
    margin-top: var(--space-16);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.blog-pagination-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--yellow);
    padding: 8px 14px;
    border: 1px solid rgba(var(--yellow-rgb), 0.3);
    border-radius: var(--radius-sm);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.blog-pagination-link:hover {
    background: rgba(var(--yellow-rgb), 0.08);
    border-color: rgba(var(--yellow-rgb), 0.5);
}

.blog-pagination-pages {
    display: inline-flex;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination-page {
    display: inline-flex;
    min-width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-family: var(--mono);
    font-size: var(--text-sm);
    color: var(--gray);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color 0.15s ease, color 0.15s ease;
}

.blog-pagination-page:hover {
    color: var(--white);
    border-color: var(--line-2);
}

.blog-pagination-page.is-current {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 860px) {
    .blog-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 540px) {
    .blog-listing-section {
        padding: 80px 0 90px;
    }
    .blog-listing-grid {
        grid-template-columns: 1fr;
    }
    .blog-card-full-title {
        font-size: var(--text-lg);
    }
    .blog-pagination {
        gap: var(--space-2);
    }
    .blog-pagination-link {
        padding: 6px 10px;
        font-size: var(--text-xs);
    }
}

/* --- BLOG ARTICLE (/blog/{slug}) --- */
.blog-article-shell {
    max-width: 1440px;
}

/* Hero — dark band: back link + cover thumbnail + title/meta */
.blog-article-hero {
    background: var(--black);
    padding: 110px 0 var(--space-14);
}

.blog-article-back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: var(--space-8);
    transition: gap 0.15s ease;
}

    .blog-article-back:hover {
        gap: var(--space-3);
    }

.blog-article-hero-row {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.blog-article-cover {
    flex: 0 0 320px;
    width: 320px;
    margin: 0;
}

    .blog-article-cover img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

.blog-article-headline {
    flex: 1;
    min-width: 0;
}

h1.h-display.blog-article-title {
    margin: 0 0 var(--space-4);
    line-height: 1.1;
    font-size: clamp(28px, 3.6vw, 44px);
}


.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 0.4px;
    color: var(--white);
}

.blog-article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-article-cat {
    display: inline-block;
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(var(--yellow-rgb), 0.15);
    border: 1px solid rgba(var(--yellow-rgb), 0.4);
    color: var(--yellow);
    padding: 5px 12px;
    border-radius: 3px;
}
/* Body section — light band: share bar + article copy */
.blog-article-body-section {
    background: var(--sand);
    color: var(--navy);
    padding: var(--space-10) 0 var(--space-20);
}
/* Share bar */
.blog-article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.blog-article-share-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--black);
}

.blog-article-share-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
}

.blog-article-share-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--black);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.15s ease;
}

    .blog-article-share-link:hover {
        color: var(--yellow-dark);
    }

.blog-article-copy-link.is-copied .blog-article-copy-label::after {
    content: " ✓";
}

.blog-article-divider {
    border: 0;
    border-top: 1px solid var(--sand-border);
    margin: 0 0 var(--space-8);
}

.blog-article-excerpt {
    margin: 0 0 var(--space-6);
    color: var(--black);
    max-width: auto;
}

.blog-article-author {
    font-size: var(--text-sm);
    color: var(--sand-muted);
    margin: var(--space-8) 0 0;
}

    .blog-article-author strong {
        color: var(--navy);
        font-weight: 600;
    }
/* Article body — typographie soignée, sur fond clair */
.article-body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.75;
    color: #33404d;
}

    .article-body > * + * {
        margin-top: var(--space-5);
    }

    .article-body h2 {
        font-family: var(--body);
        font-size: var(--text-2xl);
        font-weight: 700;
        color: var(--navy);
        margin-top: var(--space-12);
        margin-bottom: var(--space-3);
        padding-bottom: var(--space-3);
        line-height: 1.3;
        border-bottom: 3px solid var(--yellow);
    }

    .article-body h3 {
        font-family: var(--body);
        font-size: var(--text-xl);
        font-weight: 600;
        color: var(--navy);
        margin-top: var(--space-10);
        margin-bottom: var(--space-2);
        line-height: 1.35;
    }

    .article-body p {
        margin: 0;
    }

    .article-body strong {
        color: var(--navy);
    }

    .article-body em {
        color: #1c2733;
    }

    .article-body a {
        color: var(--yellow-dark);
        border-bottom: 1px solid rgba(var(--yellow-rgb), 0.5);
        transition: border-color 0.15s ease;
    }

        .article-body a:hover {
            border-color: var(--yellow-dark);
        }

    .article-body ol {
        padding-left: var(--space-6);
    }

    .article-body ul {
        list-style: none;
        padding-left: 0;
    }

    .article-body li + li {
        margin-top: var(--space-2);
    }

    .article-body ul > li {
        position: relative;
        padding-left: var(--space-6);
    }

        .article-body ul > li::before {
            content: "";
            position: absolute;
            left: 2px;
            top: 0.3em;
            width: 16px;
            height: 19px;
            background-color: var(--red);
            -webkit-mask: url("/assets/icons/stroke.svg?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0") no-repeat center / contain;
            mask: url("/assets/icons/stroke.svg?v=tHcJ4ZOZGFxNfFDhdY_2MV-evH0") no-repeat center / contain;
        }

    .article-body code {
        font-family: var(--mono);
        font-size: 0.92em;
        background: rgba(var(--navy-rgb), 0.06);
        padding: 2px 6px;
        border-radius: 4px;
    }

    .article-body blockquote {
        border-left: 3px solid var(--yellow);
        padding: var(--space-2) var(--space-6);
        margin: var(--space-6) 0;
        color: #1c2733;
        font-style: italic;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: var(--radius-md);
        margin: var(--space-6) 0;
    }
/* Tags */
.blog-article-tags {
    list-style: none;
    padding: 0;
    margin: var(--space-12) 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

    .blog-article-tags li {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: lowercase;
        color: var(--sand-muted);
        background: rgba(var(--navy-rgb), 0.04);
        border: 1px solid var(--sand-border);
        padding: 4px 10px;
        border-radius: var(--radius-full);
    }
/* CTA */
.blog-article-cta {
    margin-top: var(--space-16);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.14), rgba(var(--yellow-rgb), 0.05));
    border: 1px solid rgba(var(--yellow-rgb), 0.3);
    border-radius: var(--radius-lg);
}

    .blog-article-cta .h-display {
        margin: 0 0 var(--space-3);
        color: var(--navy);
    }

    .blog-article-cta .lede {
        margin: 0 0 var(--space-6);
        color: var(--sand-text);
    }

    .blog-article-cta .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: var(--space-2);
        background: var(--yellow);
        color: var(--navy);
        font-weight: 700;
        padding: 12px 24px;
        border-radius: var(--radius-sm);
        transition: background 0.15s ease;
    }

        .blog-article-cta .btn-primary:hover {
            background: var(--yellow-2);
        }
/* Related — retombe sur le fond sombre par défaut (body) */
.blog-article-related {
    padding: var(--space-16) 0 var(--space-20);
}

    .blog-article-related .section-head {
        margin-bottom: var(--space-10);
    }
/* Responsive */
@media (max-width: 760px) {
    .blog-article-hero-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-article-cover {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 860px) {
    .blog-article-shell {
        max-width: 100%;
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

@media (max-width: 540px) {
    .blog-article-hero {
        padding: 80px 0 var(--space-10);
    }

    .blog-article-shell {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }

    .blog-article-share {
        gap: var(--space-3);
    }

    .blog-article-share-links {
        gap: var(--space-4);
    }

    .article-body {
        font-size: 16px;
        line-height: 1.7;
    }

        .article-body h2 {
            font-size: var(--text-xl);
            margin-top: var(--space-10);
        }

        .article-body h3 {
            font-size: var(--text-lg);
            margin-top: var(--space-8);
        }

    .blog-article-cta {
        padding: var(--space-8) var(--space-5);
    }
}

/* --- POLICIES (/legal-notices, /privacy-policy, /terms-*) --- */
.policies-container {
    padding: 120px 0 var(--space-20);
    max-width: 800px;
    margin: 0 auto;
}

.policies-container h1 {
    font-family: var(--body);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 var(--space-6);
}

.policies-container h2 {
    font-family: var(--body);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin: var(--space-12) 0 var(--space-3);
    line-height: 1.35;
}

.policies-container h3 {
    font-family: var(--body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin: var(--space-8) 0 var(--space-2);
    line-height: 1.4;
}

.policies-container p {
    color: rgba(var(--white-rgb), 0.82);
    line-height: 1.75;
    margin: 0 0 var(--space-4);
}

.policies-container ul,
.policies-container ol {
    color: rgba(var(--white-rgb), 0.82);
    line-height: 1.75;
    padding-left: var(--space-6);
    margin: 0 0 var(--space-4);
}

.policies-container li + li {
    margin-top: var(--space-2);
}

.policies-container a {
    color: var(--yellow);
    border-bottom: 1px solid rgba(var(--yellow-rgb), 0.35);
    transition: border-color 0.15s ease;
}

.policies-container a:hover {
    border-color: var(--yellow);
}

.policies-container hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: var(--space-10) 0;
}

.policies-container strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 540px) {
    .policies-container {
        padding-top: 100px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   CAS CLIENTS — hero, kpi strip, profil, timeline, setup, action-blocks,
   résultats, témoignage agrandi, réassurances CTA, encart solo
   ────────────────────────────────────────────────────────────────────────── */

.cc-hero {
  min-height: auto;
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(var(--yellow-rgb),0.22), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(var(--red-rgb),0.14), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
}
.cc-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(var(--white-rgb),0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--white-rgb),0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.6;
}
.cc-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.cc-hero h1 { margin: 22px 0 var(--space-6); }
.cc-hero h1 .accent { color: var(--yellow); }
.cc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* KPI strip */
.hero-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-12);
  max-width: 860px;
}
.hero-kpi {
  background: rgba(var(--white-rgb),0.025);
  padding: 22px var(--space-4);
  text-align: center;
  transition: background 0.18s ease;
  cursor: default;
}
.hero-kpi:hover { background: rgba(var(--white-rgb),0.05); }
.hero-kpi-num {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--yellow);
  line-height: 1;
  font-weight: 400;
}
.hero-kpi-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: var(--space-2);
}

/* Badge bicolore — variante formateur indépendant */
.hero-badge-solo {
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--space-2) 14px;
  border: 1px solid rgba(var(--yellow-rgb),0.4);
  background: rgba(var(--yellow-rgb),0.06);
  border-radius: var(--radius-full);
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow);
}
.hero-badge-solo::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); box-shadow: 0 0 10px var(--yellow);
}
.hero-badge-solo .badge-sep { width: 1px; height: 14px; background: rgba(var(--yellow-rgb),0.3); display: inline-block; }
.hero-badge-solo .badge-sub { color: rgba(var(--yellow-rgb),0.7); }

/* Profil client */
.client-profile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.client-desc { font-size: 17px; line-height: 1.65; color: var(--navy); max-width: 600px; }
.client-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-5); }
.client-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(var(--yellow-rgb),0.12);
  border: 1px solid rgba(var(--yellow-rgb),0.35);
  color: var(--navy);
  padding: 6px var(--space-3);
  border-radius: 4px;
}
.client-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  min-width: 240px;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
}
.client-card-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.client-card-row { display: flex; gap: 10px; align-items: baseline; margin-bottom: var(--space-3); font-size: var(--text-sm); }
.client-card-row:last-child { margin-bottom: 0; }
    .client-card-row .lbl {
        color: var(--white);
        min-width: 80px;
        font-size: var(--text-xs);
        font-family: var(--mono);
        letter-spacing: 0.5px;
    }
.client-card-row .val { color: var(--white); font-weight: 500; }

/* Problème 2 colonnes */
.problem-2col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); margin-top: 50px; }
.problem-col-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.problem-items { display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  background: rgba(var(--white-rgb),0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.problem-item:hover { background: rgba(var(--white-rgb),0.04); border-color: rgba(var(--yellow-rgb),0.2); }
.problem-item-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(var(--yellow-rgb),0.08);
  border: 1px solid rgba(var(--yellow-rgb),0.2);
  display: grid; place-items: center;
  color: var(--yellow);
}
.problem-item h3 { font-size: var(--text-sm); font-weight: 600; margin: 0 0 4px; font-family: var(--body); letter-spacing: 0; text-transform: none; line-height: 1.3; }
.problem-item p { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.5; }

/* Timeline — base + variantes 3 ou 4 colonnes */
.cc-timeline { display: grid; gap: 0; margin-top: 50px; position: relative; }
.cc-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(var(--yellow-rgb),0.3) 100%);
}
.cc-timeline--3col { grid-template-columns: repeat(3, 1fr); }
.cc-timeline--3col::before { left: 16.67%; right: 16.67%; }
.cc-timeline--4col { grid-template-columns: repeat(4, 1fr); }
.cc-timeline--4col::before { left: 12.5%; right: 12.5%; }
.cc-step { text-align: center; padding: 0 var(--space-4); position: relative; }
.cc-step-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--yellow);
  display: grid; place-items: center;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 22px;
  color: var(--yellow);
}
.cc-step-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-2);
}
.cc-step h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; font-family: var(--body); text-transform: none; letter-spacing: 0; color: var(--navy); }
.cc-step p { font-size: 13px; color: rgba(var(--navy-rgb), 0.55); margin: 0; line-height: 1.5; }

/* Setup cards */
.setup-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); margin-top: var(--space-12); }
.setup-card {
  padding: 30px 28px;
  background: rgba(var(--white-rgb),0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
.setup-card:hover { background: rgba(var(--white-rgb),0.04); border-color: rgba(var(--yellow-rgb),0.3); transform: translateY(-3px); }
.setup-card-num { font-family: var(--display); font-size: 48px; color: var(--yellow); line-height: 1; margin-bottom: var(--space-3); }
.setup-card h3 { font-size: 17px; font-weight: 600; margin: 0 0 10px; font-family: var(--body); text-transform: none; letter-spacing: 0; }
.setup-card p { font-size: var(--text-sm); color: var(--gray); margin: 0; line-height: 1.6; }

/* Blocs alternés texte / visuel */
.action-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--line);
}
.action-block:last-child { border-bottom: 0; padding-bottom: 0; }
.action-block.reverse { direction: rtl; }
.action-block.reverse > * { direction: ltr; }
.action-text .eyebrow { margin-bottom: 14px; display: block; }
.action-text h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0 0 18px;
}
.action-text p { font-size: var(--text-base); color: var(--gray); line-height: 1.65; margin: 0 0 var(--space-5); }
.action-text p:last-child { margin-bottom: 0; }
.action-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--yellow-rgb),0.12), transparent 55%),
    repeating-linear-gradient(45deg, var(--navy-3) 0 14px, var(--navy-2) 14px 15px);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
}
.action-visual-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  background: rgba(var(--navy-rgb),0.7);
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  max-width: 75%;
}
.action-visual-label strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: var(--text-lg);
  letter-spacing: 1px;
  margin-bottom: var(--space-1);
  font-weight: 400;
}

/* Résultats */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); margin-top: var(--space-10); align-items: start; }
.results-list-title {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin: 0 0 var(--space-5);
  line-height: 1.05;
}
.results-items { display: flex; flex-direction: column; gap: var(--space-3); }
.result-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: 14px var(--space-4);
  background: rgba(var(--navy-rgb),0.06);
  border-radius: 8px;
  border: 1px solid rgba(var(--navy-rgb),0.1);
}
.result-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.result-item p { margin: 0; font-size: 15px; color: var(--navy); line-height: 1.5; }
.result-item p strong { color: var(--navy); font-weight: 600; }

/* Témoignage agrandi */
.testi-featured {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(var(--white-rgb),0.04);
  border: 1px solid rgba(var(--yellow-rgb),0.25);
  border-radius: 16px;
  padding: var(--space-12) 52px;
  text-align: center;
}
.testi-featured .testi-quote-mark {
  font-family: var(--display);
  font-size: 80px;
  color: var(--yellow);
  line-height: 0.4;
  margin-bottom: 30px;
  display: block;
  opacity: 0.6;
}
.testi-featured blockquote {
  margin: 0 0 var(--space-8);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: rgba(var(--white-rgb),0.95);
  font-style: italic;
}
.testi-featured .testi-author {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
  margin-top: 0;
}
.testi-featured .testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: grid; place-items: center;
  font-family: var(--display); color: var(--navy); font-size: 22px;
  flex-shrink: 0;
}

/* CTA réassurances */
.cta-reassurances { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-reassurance { display: flex; align-items: center; gap: 10px; font-size: var(--text-sm); color: var(--gray); }
.cta-reassurance-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(var(--yellow-rgb),0.10);
  border: 1px solid rgba(var(--yellow-rgb),0.25);
  display: grid; place-items: center;
  color: var(--yellow);
  flex-shrink: 0;
}

/* Encart chiffre fort — formateur indépendant */
.solo-highlight {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  padding: 28px var(--space-8);
  background: rgba(var(--yellow-rgb),0.10);
  border: 1px solid rgba(var(--yellow-rgb),0.35);
  border-radius: var(--radius-md);
  margin-top: 28px;
}
.solo-highlight-num { font-family: var(--display); font-size: clamp(40px, 4vw, 60px); color: var(--navy); line-height: 1; flex-shrink: 0; }
.solo-highlight-text { font-size: 15px; color: var(--navy); line-height: 1.6; }
.solo-highlight-text strong { color: var(--navy); }

/* ──────────────────────────────────────────────────────────────────────────
   roi-stats-cc — surcharge pour contexte section-light
   Évite de toucher _roi.css (conçu pour fond sombre).
   ────────────────────────────────────────────────────────────────────────── */
.roi-stats-cc {
  background: var(--navy);               /* conserver le fond sombre du bloc */
}
/* Séparateur visible sur fond navy — remplace sand-border qui ne passe pas */
.roi-stats-cc .roi-stat:nth-child(2),
.roi-stats-cc .roi-stat:nth-child(3),
.roi-stats-cc .roi-stat:nth-child(4) {
  border-left: 1px solid rgba(var(--white-rgb), 0.08);
  border-right: 0;
}
.roi-stats-cc .roi-stat {
  min-width: 0;          /* empêche min-width:auto de faire déborder les chiffres */
  border-right: 0;
}
/* Retrait du border-right hérité (roi-stat:last-child l'annule déjà,
   mais on s'assure que tous les séparateurs viennent du border-left) */
.roi-stats-cc .roi-stat:first-child {
  border-left: 0;
}
/* Textes longs ("< 4 mois", "+125 %") — saut de ligne gracieux */
.roi-stats-cc .roi-stat-num {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 860px) {
  .cc-hero { padding: 110px 0 60px; }
  .hero-kpi-strip { grid-template-columns: 1fr 1fr; }
  .client-profile { grid-template-columns: 1fr; }
  .client-card { min-width: unset; }
  .problem-2col { grid-template-columns: 1fr; }
  .cc-timeline::before { display: none; }
  .cc-timeline--4col { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .cc-timeline--3col { grid-template-columns: 1fr; gap: var(--space-6); }
  .setup-grid { grid-template-columns: 1fr; }
  .action-block { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .action-block.reverse { direction: ltr; }
  .results-grid { grid-template-columns: 1fr; }
  .testi-featured { padding: var(--space-8) 28px; }
  .cta-reassurances { flex-direction: column; align-items: center; }
  .solo-highlight { flex-direction: column; gap: var(--space-3); text-align: center; }

  /* Containment des enfants de grids — empêche min-width:auto de déborder */
  .problem-2col > *,
  .results-grid > *,
  .cc-timeline > *,
  .setup-grid > * { min-width: 0; }

  /* Word-wrap pour les titres longs en mobile */
  .section-head h2,
  .problem-item h3,
  .cc-step h3,
  .results-list-title,
  .action-text h3 { overflow-wrap: break-word; word-break: break-word; }

  /* roi-stats-cc : grille 2×2 sur fond sombre
     — spécificité renforcée (.roi-stats.roi-stats-cc) pour battre _shared.css
       qui charge après ce fichier et réapplique grid-template-columns sur .roi-stats */
  .roi-stats.roi-stats-cc {
    grid-template-columns: 1fr 1fr;
  }
  /* Séparateurs internes : 3e et 4e cellule passent en dessous
     — .roi-stats-cc .roi-stat:nth-child() = spécificité (0,2,1) > (0,1,1) de _shared.css */
  .roi-stats-cc .roi-stat:nth-child(3),
  .roi-stats-cc .roi-stat:nth-child(4) {
    border-top: 1px solid rgba(var(--white-rgb), 0.08);  /* remplace sand-border de _shared */
  }
  /* Colonne droite de chaque rangée : séparateur vertical */
  .roi-stats-cc .roi-stat:nth-child(2) { border-left: 1px solid rgba(var(--white-rgb), 0.08); }
  .roi-stats-cc .roi-stat:nth-child(4) { border-left: 1px solid rgba(var(--white-rgb), 0.08); }
  /* Taille de fonte plus petite pour que "+125 %" et "< 4 mois" tiennent en 2 colonnes */
  .roi-stats-cc .roi-stat-num {
    font-size: clamp(22px, 5.5vw, 32px);
  }
}

@media (max-width: 540px) {
  .hero-kpi-strip { grid-template-columns: 1fr 1fr; }
  .cc-timeline--4col { grid-template-columns: 1fr; }
  .testi-featured { padding: var(--space-6) var(--space-5); }
  .testi-featured .testi-quote-mark { font-size: 56px; }
  .cc-hero-actions { flex-direction: column; }
  .cc-hero-actions .btn { width: 100%; justify-content: center; }

  /* roi-stats-cc : empilage 1 colonne à 540px
     Chaque stat pleine largeur, séparateurs horizontaux uniquement */
  .roi-stats.roi-stats-cc {
    grid-template-columns: 1fr;
  }
  .roi-stats-cc .roi-stat {
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 1px solid rgba(var(--white-rgb), 0.08);
    padding: var(--space-4) var(--space-5);
  }
  .roi-stats-cc .roi-stat:first-child {
    border-top: 0;
  }
  /* Taille confortable en colonne unique */
  .roi-stats-cc .roi-stat-num {
    font-size: clamp(26px, 7vw, 38px);
  }
}

/* Shared responsive rules — breakpoints touching multiple sections */

/* --- RESPONSIVE --- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { aspect-ratio: 16/10; max-width: 640px; margin: 0 auto; }
  .float-tag.t1 { top: 8%; left: 14%; }
  .float-tag.t2 { bottom: 12%; right: 4%; }
  .float-tag.t3 { display: none; }
  h1.h-display { font-size: clamp(30px, 4.5vw, 65px); }
  .hero-stats { margin-top: var(--space-8); }
}

@media (max-width: 860px) {
  section[id] { scroll-margin-top: 88px; }
  .nav-links { display: none; }
  .nav-cta-mobile { display: none; }
  .nav-burger { display: block; }
  .nav-cta-desktop {
    padding: 6px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-visual { display: none; }
  .hero-inner > * { min-width: 0; }
  .hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); }

  .section { padding: var(--space-20) 0; }
  .section-head { margin-bottom: var(--space-10); }
  .pricing-grid { grid-template-columns: 1fr; gap: var(--space-4); }

  /* Horizontal scroll carousels */
  .problem-grid, .kit-grid, .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-4);
    padding-bottom: var(--space-1);
    scrollbar-width: none;
  }
  .problem-grid::-webkit-scrollbar,
  .kit-grid::-webkit-scrollbar,
  .testi-grid::-webkit-scrollbar { display: none; }

  .prob-card {
    flex-shrink: 0;
    width: 82vw;
    max-width: 340px;
    scroll-snap-align: start;
  }
  .kit-card {
    flex-shrink: 0;
    width: 72vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .testi-card {
    flex-shrink: 0;
    width: 82vw;
    max-width: 340px;
    scroll-snap-align: start;
  }
  .solution-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .sol-visual { aspect-ratio: 4/3; max-width: 520px; }
  .roi-intro { margin-bottom: var(--space-8); }
  .roi-intro p { font-size: var(--text-base); }
  .roi-stats { grid-template-columns: 1fr 1fr; }
  .roi-stat:nth-child(2) { border-right: 0; }
  .roi-stat:nth-child(3) { border-top: 1px solid var(--sand-border); }
  .form-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 28px var(--space-6); }
  .form-tabs { width: 100%; }
  .form-tab { flex: 1; padding: 12px 10px; font-size: 10px; gap: 6px; }
  .price-card.featured { transform: none; order: -1; }
  .pricing-grid { gap: 0; }

  .pricing-tabs {
    display: flex;
    background: rgba(var(--white-rgb),0.04);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: var(--space-1);
    gap: var(--space-1);
    margin-bottom: var(--space-5);
  }
  .pricing-tab {
    flex: 1;
    padding: 11px 8px;
    background: transparent;
    border: none;
    border-radius: 7px;
    color: var(--gray);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
  }
  .pricing-tab.active {
    background: var(--yellow);
    color: var(--navy);
  }
  .price-card { display: none; }
  .price-card.tab-active {
    display: flex;
    animation: priceIn 0.22s ease;
  }
  .price-duration { display: none; }
  .price-card.featured.tab-active { padding-top: 36px; }
  .price-badge { display: none; }
  .pricing-tab { flex-direction: column; gap: 2px; }
  .tab-popular {
    display: block;
    font-size: 9px;
    letter-spacing: 1px;
    opacity: 0.8;
  }
  .pricing-tab.active .tab-popular { opacity: 1; }
  @keyframes priceIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: rgba(var(--white-rgb), 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 0;
    margin-top: var(--space-8);
  }
  .stat {
    padding: var(--space-4) var(--space-3);
    text-align: center;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: 0; }
  .stat .num { font-size: clamp(20px, 5vw, 32px); }
  .stat .lbl { font-size: 9px; letter-spacing: 1px; margin-top: var(--space-1); }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(var(--navy-rgb),0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: var(--space-5) var(--space-8) 26px;
    gap: 18px;
  }
  .nav-links.open .nav-cta-burger {
    display: block;
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--yellow);
    font-weight: 600;
  }

  .footer-inner { flex-direction: column; }
  .footer-cols { gap: 36px; }

  .roi-table-wrap { -webkit-overflow-scrolling: touch; }

  .blog-section { padding: var(--space-20) 0; }
  .blog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-4);
    padding-bottom: var(--space-3);
    scrollbar-width: none;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card {
    flex-shrink: 0;
    width: 80vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .blog-card:first-child { margin-left: 0; }
  .cc-preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--space-4);
    padding-bottom: var(--space-3);
    scrollbar-width: none;
  }
  .cc-preview-grid::-webkit-scrollbar { display: none; }
  .cc-preview-grid > * {
    flex-shrink: 0;
    width: 82vw;
    max-width: 360px;
    scroll-snap-align: start;
  }
}

/* ROI table → blocs comparatifs empilés */
@media (max-width: 640px) {
  .roi-table-wrap {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: var(--space-8);
  }
  .roi-compare { min-width: 0; }
  .roi-compare thead { display: none; }
  .roi-compare tbody tr {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--sand-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--space-2);
    border-top: 1px solid var(--sand-border);
  }
  /* Critère : pleine largeur en en-tête de bloc */
  .roi-crit {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid var(--sand-border);
    padding: 10px 14px;
  }
  /* Bac à feu + Flame XR côte à côte */
  .roi-bad, .roi-good {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: 10px 12px;
  }
  .roi-bad { border-right: 1px solid var(--sand-border); }
  /* ::before repurposé en libellé de colonne (remplace l'icône absolute) */
  .roi-bad::before {
    content: "Bac à feu";
    position: static;
    transform: none;
    width: auto; height: auto;
    border-radius: 0;
    background: none;
    border: none;
    color: var(--red);
    font-size: 9px;
    font-family: var(--mono);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
  }
  .roi-good::before {
    content: "Flame XR";
    position: static;
    transform: none;
    width: auto; height: auto;
    border-radius: 0;
    background: none;
    border: none;
    color: var(--yellow);
    font-size: 9px;
    font-family: var(--mono);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
  }
}

@media (max-width: 540px) {
  .container, .container-narrow { padding: 0 var(--space-5); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .play-btn { width: 72px; height: 72px; }
  .play-btn::before { border-left-width: 20px; border-top-width: 12px; border-bottom-width: 12px; }
  .price-card { padding: 28px var(--space-6); }
  .price-amount { font-size: 52px; }
}

/* Flame XR — Nav personality
   Replaces the basic chrome with: refined flame logo mark, animated section dot,
   per-link expanding underline + active state, scroll-aware compact nav,
   CTA with arrow that animates, sharper burger.
*/

/* ── Base nav refinement ─────────────────────────────────────────────── */
/* nav-style.css loads after components.css in main.css, so same-specificity
   rules here win via cascade order. No !important needed. */

/* Logo separator — replaces the inline styles removed during ASP.NET migration */
.nav-logo-img { display: block; }
.nav-logo-text {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 12px;
  margin-left: 2px;
  letter-spacing: 1.5px;
}

.nav {
    padding: 18px 0;
    background: rgba(8, 18, 32, 0.92);
    /*linear-gradient(180deg, rgba(11,26,46,0.78) 0%, rgba(11,26,46,0.55) 100%);*/
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: padding 0.35s cubic-bezier(0.22,1,0.36,1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Compact mode (added by JS once user scrolls) */
/* Specificity (0,2,0) > .nav (0,1,0) — no !important needed */
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(8, 18, 32, 0.92);
  border-bottom-color: rgba(245, 196, 0, 0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Subtle bottom hairline that glows in yellow as you scroll */
.nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: translateX(-50%);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.nav.is-scrolled::after { width: 60%; }

/* ── Nav links: animated underline + active state + section dot ──────── */
.nav-links {
  display: flex;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--body, 'Poppins', sans-serif);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  align-items: center;
  position: relative;
}
    .nav-links a {
        position: relative;
        padding: 10px 14px;
        color: var(--white);/*rgba(255,255,255,0.72);*/
        white-space: nowrap;
        transition: color 0.25s ease;
    }
.nav-links a::before {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover {
  color: #ffffff;
}
.nav-links a:hover::before {
  transform: scaleX(1);
}
.nav-links a.is-active {
  color: var(--yellow);
}
.nav-links a.is-active::before {
  transform: scaleX(1);
  background: var(--yellow);
}

/* Tiny dot before the active link's label, animated in */
/*.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%) scale(1);
  box-shadow: 0 0 8px var(--yellow);
  animation: navDotPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}*/
@keyframes navDotPop {
  from { transform: translateY(-50%) scale(0); opacity: 0; }
  to   { transform: translateY(-50%) scale(1); opacity: 1; }
}

/* Subtle separator before CTA */
.nav-actions > .btn-primary {
  position: relative;
}
/*.nav-inner > .btn-primary::before {
  content: "";
  position: absolute;
  left: -14px; top: 50%;
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.12);
  transform: translateY(-50%);
}*/


/* ── Burger refined ──────────────────────────────────────────────────── */
.nav-burger {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px; height: 1.5px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), top 0.3s ease, bottom 0.3s ease;
}
.nav-burger::before { top: 10px; }
.nav-burger::after  { bottom: 10px; }
.nav-burger-bar {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 1.5px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.nav-burger:hover {
  background: rgba(245,196,0,0.1);
  border-color: rgba(245,196,0,0.3);
}
.nav-burger.is-open::before {
  top: 50%; transform: translate(-50%, -50%) rotate(45deg);
}
.nav-burger.is-open::after {
  bottom: 50%; transform: translate(-50%, 50%) rotate(-45deg);
}
.nav-burger.is-open .nav-burger-bar {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

/* ── Mobile menu refinement ──────────────────────────────────────────── */
@media (max-width: 860px) {
  /* Specificity (0,2,0) of :not(.open) beats .nav-links (0,1,0) in components.css;
     cascade order also favors this file — no !important needed. */
  .nav-links:not(.open) { display: none; }
  .nav-links.open {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-6) var(--space-8) var(--space-8);
    background: linear-gradient(180deg, rgba(8,18,32,0.98), rgba(11,26,46,0.98));
  }
  .nav-links.open a {
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: var(--text-sm);
  }
  .nav-links.open a::before {
    left: 0; right: auto; bottom: 50%;
    width: 0; height: 1.5px;
    transform: translateY(50%);
    transition: width 0.3s ease;
  }
  .nav-links.open a:hover::before { display: none; }
  .nav-links.open a.is-active::before { display: none; }
  .nav-links.open a.is-active::after { display: none; }
}

/* Reduce motion */
/* transition: none !important is kept intentionally — it must override all
   other transition declarations regardless of specificity, which is the
   standard pattern for prefers-reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  .nav, .nav-links a, .nav-actions > .btn.btn-primary.btn-sm,
  .nav-actions > .btn.btn-primary.btn-sm::after {
    transition: none !important;
  }
}

/* Flame XR — Scroll choreography
   - Enriched reveals (stagger + ease-out-quart)
   - Directional reveals (left/right/up)
   - Progressive background transitions between sections
*/

:root {
  --ease-out-quart: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-dur: 1.5s;
  --stagger-dur: 1.15s;
}

/* Override base reveal with richer easing + slightly longer */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--reveal-dur) var(--ease-out-quart),
    transform var(--reveal-dur) var(--ease-out-quart),
    filter var(--reveal-dur) var(--ease-out-quart);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: opacity, transform;
}
.reveal.done { will-change: auto; }

/* Directional variants */
.reveal-left  { transform: translate(-24px, 16px); }
.reveal-right { transform: translate(24px, 16px); }
.reveal-blur  { filter: blur(8px); transform: translateY(20px); }

.reveal-left.in, .reveal-right.in, .reveal-blur.in { transform: none; filter: none; }

/* Stagger children — 80ms cascade */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity var(--stagger-dur) var(--ease-out-quart), transform var(--stagger-dur) var(--ease-out-quart); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.stagger.in > *:nth-child(4) { transition-delay: 270ms; }
.stagger.in > *:nth-child(5) { transition-delay: 360ms; }
.stagger.in > *:nth-child(6) { transition-delay: 450ms; }
.stagger.in > * { opacity: 1; transform: none; }

/* ROI list stagger — items fill in one by one */
.roi-list { display: flex; flex-direction: column; gap: var(--space-4); }
.roi-list .roi-item {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s var(--ease-out-quart), transform 0.55s var(--ease-out-quart);
}
.roi-table.in .roi-list .roi-item { opacity: 1; transform: none; }
.roi-table.in .roi-list .roi-item:nth-child(1) { transition-delay: 60ms; }
.roi-table.in .roi-list .roi-item:nth-child(2) { transition-delay: 140ms; }
.roi-table.in .roi-list .roi-item:nth-child(3) { transition-delay: 220ms; }
.roi-table.in .roi-list .roi-item:nth-child(4) { transition-delay: 300ms; }

/* Featured pricing card — extra lift when entering view */
.price-card.featured {
  transition: transform 0.7s var(--ease-out-quart), box-shadow 0.7s var(--ease-out-quart), border-color 0.3s ease, background 0.3s ease;
}
.price-card.featured.in.boost { transform: translateY(-18px); }

/* S2 problem arrow pulse (already a hint, just refine) */
.problem-cta .arrow {
  animation: arrowPulse 2.4s var(--ease-out-quart) infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Scroll snap */
html.snap-proximity { scroll-snap-type: y proximity; }
html.snap-mandatory { scroll-snap-type: y mandatory; }
html.snap-proximity section[id],
html.snap-mandatory section[id] { scroll-snap-align: start; }
html.snap-mandatory footer { scroll-snap-align: start; }

@media (max-width: 860px) {
  html.snap-mandatory { scroll-snap-type: y proximity; }
  /* Supprime la composante X — évite le débordement horizontal sur mobile */
  .reveal-left  { transform: translateY(16px); }
  .reveal-right { transform: translateY(16px); }
  /* Annule le lift de la carte featured — pas de décalage vertical sur mobile */
  .price-card.featured.in.boost { transform: none; }
}

/* Reduced motion — disable all this */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .roi-list .roi-item { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .problem-cta .arrow { animation: none; }
}

/* Progressive background tone — body slowly warms as user scrolls.
   Section bgs sit on top, but a subtle wash bleeds through transparent edges.
   Drives a CSS variable updated by JS on scroll. */
body {
  --scroll-t: 0;
  background-color: #0b0d10; /* fallback iOS < 16.2, Samsung Internet */
  background-color: color-mix(
    in oklab,
    #0b0d10 calc((1 - var(--scroll-t)) * 100%),
    #15110d calc(var(--scroll-t) * 100%)
  );
  transition: background-color 0.6s linear;
}

/* Subtle global warm wash that fades in with scroll — adds atmospheric depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60vw 50vh at 80% calc(20% + var(--scroll-t) * 60%),
      rgba(244, 124, 32, calc(var(--scroll-t) * 0.07)),
      transparent 70%),
    radial-gradient(50vw 40vh at 15% calc(80% - var(--scroll-t) * 40%),
      rgba(255, 200, 64, calc(var(--scroll-t) * 0.05)),
      transparent 70%);
  opacity: var(--scroll-t);
  transition: opacity 0.5s linear;
}

/* Flame XR — mood themes + ember particles
   Extrait de tweaks.css du site statique : on garde uniquement
   les classes appliquées sur <body> (mood-*, embers-*, anim-*)
   et les styles des particules. Le tweaks panel UI n'est pas porté. */

/* ===== MOOD THEMES =====
   Par défaut = "industriel" (navy + jaune, défini dans tokens.css).
   Les autres moods overrident les CSS vars. */

body.mood-premium {
  --navy: #06121f;
  --navy-2: #0c1c2f;
  --navy-3: #163152;
  --yellow: #C9A227;
  --yellow-2: #d6b13e;
  --gray: #9CA8B6;
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.14);
}
body.mood-premium .hero-bg {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(201,162,39,0.20), transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(60,90,140,0.18), transparent 60%),
    linear-gradient(135deg, #06121f 0%, #163152 100%) !important;
}
body.mood-premium .testi-avatar { background: linear-gradient(135deg, var(--yellow) 0%, #8a6d18 100%); }

body.mood-pedago {
  --navy: #1a3942;
  --navy-2: #224652;
  --navy-3: #2d5a68;
  --yellow: #FF8A3D;
  --yellow-2: #ff9d5a;
  --gray: #B5C5CB;
  --red: #E5524A;
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.18);
}
body.mood-pedago .hero-bg {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(255,138,61,0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(229,82,74,0.14), transparent 60%),
    linear-gradient(135deg, #1a3942 0%, #2d5a68 100%) !important;
}
body.mood-pedago .testi-avatar { background: linear-gradient(135deg, var(--yellow) 0%, #c9612a 100%); }

/* ===== HERO PULSE — ember particles ===== */
/*
.embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ember {
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow), 0 0 16px rgba(245,196,0,0.4);
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes emberRise {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: var(--peak, 0.9); }
  50%  { transform: translate(var(--drift, 20px), -50vh) scale(1); opacity: var(--peak, 0.9); }
  100% { transform: translate(calc(var(--drift, 20px) * 1.6), -100vh) scale(0.4); opacity: 0; }
}

body.embers-subtle .ember { animation: emberRise var(--dur, 9s) linear infinite; animation-delay: var(--delay, 0s); --peak: 0.5; }
body.embers-cinematic .ember { animation: emberRise var(--dur, 6s) linear infinite; animation-delay: var(--delay, 0s); --peak: 1; }
body.embers-cinematic .ember { width: 5px; height: 5px; box-shadow: 0 0 12px var(--yellow), 0 0 28px rgba(245,196,0,0.6); }
body.embers-off .ember { display: none; }

body.embers-cinematic .hero-visual::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 70%, rgba(245,196,0,0.22), transparent 60%);
  filter: blur(20px);
  animation: hazePulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hazePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .ember { display: none !important; }
  body.embers-cinematic .hero-visual::after { animation: none; opacity: 0.6; }
}
*/

/* ===== ANIMATION INTENSITY ===== */
body.anim-sobre .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
body.anim-sobre .ember { display: none !important; }
body.anim-expressif .reveal {
  transition: opacity 1s ease, transform 1s ease;
}

/* Micro-interactions — additive layer (loaded last) */

/* 2. Scroll progress bar — mobile only */
.scroll-progress {
  display: none;
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--yellow);
  z-index: 101;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}
@media (max-width: 860px) {
  .scroll-progress { display: block; }
}

/* 3. CTA active feedback (press) */
.btn-primary:active { transform: translateY(1px); transition-duration: 0.08s; }

/* 4. Form label focus feedback */
.form-row { transition: none; }
.form-row label { transition: color 0.15s ease; }
.form-row:focus-within label { color: var(--yellow); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .btn-primary:active { transform: none; }
}

/* Flame XR — extras
   Classes utilitaires reprenant les styles inline présents dans l'index.html
   du site statique. Conservé tel quel pour rester pixel-perfect. */

/* Logo nav + footer */
.nav-logo-img { display: block; }
.nav-logo-text {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
  margin-left: 2px;
  font-size: 24px;
  letter-spacing: 1.5px;
}

/* Hero badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Hero & solution visual — image positionnée absolue dans le cadre */
.fit-cover-abs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.fit-cover-abs-center {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Image standalone — full width/height in container */
.kit-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Yellow accent inline (titre solution) */
.txt-yellow { color: var(--yellow); }

/* Solution float tags repositionnés */
.sol-tag-tr { top: 10%; right: 10%; left: auto; }
.sol-tag-bl { bottom: 12%; left: 8%; right: auto; }

/* Margin override pour le h2 solution */
.mt-14-22 { margin: 14px 0 22px; }

/* ROI titre — navy + margin spécifique */
.roi-h2 { color: var(--navy); margin: 14px 0 16px; }

/* Bouton inline "Lire le cas complet →" sur testi cards */
.cc-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  margin-top: 12px;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.cc-link-inline:hover { opacity: 1; }

/* Blog card image — couvre le thumb */
.blog-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form simple caché */
.hidden { display: none; }

/* ─── Cas client — classes utilitaires reprises des styles inline ─── */
.mt-14 { margin-top: 14px; }
.mt-48 { margin-top: 48px; }
.lede-center { margin: 0 auto; }
.roi-stats-cc { max-width: 100%; margin-bottom: 52px; }
.text-center { text-align: center; }
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-foot {
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray);
}
/* Image .action-visual — couvre le cadre sans préciser object-position */
.action-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

