/* ============================================================
   ialacarte-pages.css — Charte partagée des pages annexes SEO
   Reprend les tokens et composants de /static/landing.html
   pour assurer une cohérence visuelle parfaite.
   ============================================================ */

:root {
    --bg-main: #0a2540;
    --bg-dark: #0b0f19;
    --text-main: #ffffff;
    --text-muted: #8892b0;
    --accent-gold: #d4af37;
    --accent-gold-soft: #f6dc7e;

    --border-soft: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --nav-height: 96px;
    --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --bs-secondary-color: #c8d0e0;
    --bs-secondary-color-rgb: 200, 208, 224;
    --bs-tertiary-color: #b0bccd;
    --bs-body-color: #ffffff;
    --bs-emphasis-color: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-feature-settings: "ss01", "cv11";
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(10, 37, 64, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 55%);
    background-attachment: fixed;
}

a { color: inherit; }

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--text-main);
}

/* ---------- Navigation ---------- */
.ial-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1050;
    background: rgba(11, 15, 25, 0.55);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.56s var(--ease-soft), border-color 0.56s var(--ease-soft);
}

.ial-nav.is-scrolled {
    background: rgba(11, 15, 25, 0.85);
    border-bottom-color: var(--border-strong);
}

.ial-nav__inner {
    max-width: 1320px;
    height: 100%;
    margin: 0 auto;
    padding-inline: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.ial-brand {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--text-main);
    flex-shrink: 0;
    line-height: 0;
}

.ial-brand__logo {
    display: block;
    height: 84px;
    width: auto;
    object-fit: contain;
    vertical-align: bottom;
}

.ial-brand__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8c0d0;
    white-space: nowrap;
    line-height: 1;
    padding: 0;
    border: 0;
    background: none;
    margin-bottom: 4px;
}

.ial-nav__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2.25rem;
}

.ial-nav__links a {
    position: relative;
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.4s var(--ease-soft);
}

.ial-nav__links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 22px;
    height: 1px;
    background: var(--accent-gold);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.48s var(--ease-soft);
}

.ial-nav__links a:hover,
.ial-nav__links a:focus-visible {
    color: var(--text-main);
    outline: none;
}

.ial-nav__links a:hover::after,
.ial-nav__links a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
}

/* ---------- Bouton "Retour à l'accueil" satellite (Option B nav, 2026-05-26) ---------- */
.ial-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    margin-inline-start: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s var(--ease-soft),
                background 0.25s var(--ease-soft),
                border-color 0.25s var(--ease-soft),
                transform 0.2s var(--ease-soft);
}
.ial-nav__back:hover,
.ial-nav__back:focus-visible {
    color: var(--text-main);
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(-2px);
}
.ial-nav__back-arrow {
    font-size: 0.95rem;
    line-height: 1;
    color: var(--accent-gold);
}
/* RTL : on inverse le sens du nudge sur hover */
[dir="rtl"] .ial-nav__back:hover,
[dir="rtl"] .ial-nav__back:focus-visible {
    transform: translateX(2px);
}
/* Mobile : on cache le label texte pour ne garder que la flèche, pour ne pas
   saturer le header. Le label complet reste dans aria-label (a11y). */
@media (max-width: 575.98px) {
    .ial-nav__back-label { display: none; }
    .ial-nav__back { padding: 0.5rem 0.7rem; }
}
.ial-mobile-menu__back {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

.ial-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.48s var(--ease-soft),
        border-color 0.48s var(--ease-soft),
        box-shadow 0.48s var(--ease-soft),
        transform 0.32s var(--ease-soft);
}

.ial-cta:hover,
.ial-cta:focus-visible {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.32) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 10px 30px -12px rgba(212, 175, 55, 0.45);
    color: var(--text-main);
    outline: none;
}

.ial-cta__arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-soft);
}

.ial-cta:hover .ial-cta__arrow {
    transform: translateX(3px);
}

.ial-nav-spacer {
    height: var(--nav-height);
}

/* ---------- Burger (mobile only) ---------- */
.ial-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.32s var(--ease-soft), background 0.32s var(--ease-soft);
}
.ial-burger:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.03);
}
.ial-burger svg { width: 18px; height: 18px; }
.ial-burger[aria-expanded="true"] {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--accent-gold);
}

/* ---------- Mobile drawer ---------- */
.ial-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.97);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--border-strong);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    z-index: 1040;
    padding: 1.25rem 1.5rem 2rem;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.ial-mobile-menu.is-open {
    display: block;
    animation: ial-mobile-slide 0.45s var(--ease-out);
}
@keyframes ial-mobile-slide {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
.ial-mobile-menu__links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    border-bottom: 1px solid var(--border-soft);
}
.ial-mobile-menu__links li { border-top: 1px solid var(--border-soft); }
.ial-mobile-menu__links li:first-child { border-top: 0; }
.ial-mobile-menu__links a {
    display: block;
    padding: 0.95rem 0.25rem;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.32s var(--ease-soft);
}
.ial-mobile-menu__links a:hover,
.ial-mobile-menu__links a:focus-visible {
    color: var(--accent-gold);
    outline: none;
}
.ial-mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.95rem 1.4rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: #0b0f19;
    background: linear-gradient(180deg, var(--accent-gold-soft) 0%, var(--accent-gold) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 14px 40px -14px rgba(212, 175, 55, 0.55);
}
body.ial-no-scroll { overflow: hidden; }

@media (max-width: 991.98px) {
    .ial-nav__links { display: none; }
    .ial-brand__badge { display: none; }
    .ial-burger { display: inline-flex; }
}

@media (max-width: 575.98px) {
    :root { --nav-height: 72px; }
    .ial-nav__inner { padding-inline: 1rem; }
    .ial-brand__logo { height: 56px; }
    .ial-cta__label-long { display: none; }
    .ial-cta::before { content: "Activer"; font-weight: 600; }
}

/* ---------- Hero ---------- */
.page-hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3.5rem;
    /* pas d'overflow: hidden — la signature gold doit pouvoir déborder le bord */
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---------- GEO — bloc "Definition courte" / "Short definition" ----------
   Encadre discret juste apres le hero, avant les sections longues.
   Conçu pour etre cite verbatim par ChatGPT Search, Perplexity, Gemini,
   Claude. Reste lisible mobile, ne perturbe pas le rythme visuel.
*/
.geo-definition-section {
    padding-block: 2rem 1rem;
}
.geo-definition {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.1rem 1.35rem;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-left: 3px solid var(--accent-gold);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.01));
}
.geo-definition__title {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 0.5rem;
}
.geo-definition__text {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-readable, #c8d0e0);
}
.geo-definition__text strong { color: #ffffff; font-weight: 600; }

@media (max-width: 575.98px) {
    .geo-definition { padding: 0.95rem 1.05rem; border-radius: 12px; }
    .geo-definition__text { font-size: 0.92rem; line-height: 1.6; }
}
[dir="rtl"] .geo-definition {
    border-left: 1px solid rgba(212, 175, 55, 0.22);
    border-right: 3px solid var(--accent-gold);
}

/* ---------- GEO — bloc "En resume" / "In summary" ----------
   3-5 bullet points courts, place en fin de page avant le CTA.
   Citable comme recap des points cles par les LLMs.
*/
.geo-summary-section {
    padding-block: 1.5rem 2rem;
}
.geo-summary {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.15rem 1.4rem;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}
.geo-summary__title {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 0.65rem;
}
.geo-summary__list {
    margin: 0;
    padding-left: 1.25rem;
    list-style: none;
}
.geo-summary__item {
    position: relative;
    padding-left: 0.5rem;
    margin: 0.55rem 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-readable, #c8d0e0);
}
.geo-summary__item::before {
    content: "";
    position: absolute;
    left: -0.65rem;
    top: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.7;
}
.geo-summary__item strong { color: #ffffff; font-weight: 600; }

@media (max-width: 575.98px) {
    .geo-summary { padding: 1rem 1.1rem; border-radius: 12px; }
    .geo-summary__item { font-size: 0.9rem; line-height: 1.55; }
}
/* RTL : on inverse les marges/paddings de la liste pour que les puces
   apparaissent a droite et l'indentation soit du bon cote. */
[dir="rtl"] .geo-summary__list {
    padding-left: 0;
    padding-right: 1.25rem;
}
[dir="rtl"] .geo-summary__item {
    padding-left: 0;
    padding-right: 0.5rem;
}
[dir="rtl"] .geo-summary__item::before {
    left: auto;
    right: -0.65rem;
}

/* Trait gold fin et centré juste sous le hero, signature de séparation */
.page-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
}

.page-hero__overline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 0.5rem 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    margin-bottom: 1.75rem;
}

.page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #c8d1e0 110%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    max-width: 880px;
}

.page-hero__title-em {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 60%, var(--accent-gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.page-hero__lede {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 0 2rem;
}

.page-hero__lede strong {
    color: var(--text-main);
    font-weight: 600;
}

.page-hero__crumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.page-hero__crumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.4s var(--ease-soft);
}

.page-hero__crumbs a:hover {
    color: var(--accent-gold);
}

.page-hero__crumbs-sep {
    opacity: 0.4;
}

/* ---------- Section utility ---------- */
.py-layout {
    padding-block: clamp(2.25rem, 5vw, 4rem);
    position: relative;
}

/* Rythme visuel — bandes alternées entre sections de contenu.
   `.page-hero` est le 1er <section>, donc :nth-of-type(even) commence
   par tinter la première section de contenu (= visuellement la 2e du flow).
   Contraste ~1.05:1 — perceptible mais sans rupture nette. */
section.py-layout:nth-of-type(even) {
    background: #0f1523;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Cas particulier : si la section contient un .cta-block ou un .linkcloud,
   on neutralise le fond pour laisser ces composants dominer. */
section.py-layout:has(> .container > .cta-block),
section.py-layout:has(> .container > .linkcloud) {
    background: transparent !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.section-head {
    margin-bottom: 2.25rem;
}

.section-head__overline {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(212, 175, 55, 0.01));
}

.section-head__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #c8d1e0 110%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-head__lede {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0;
}

.section-head__lede strong {
    color: var(--text-main);
    font-weight: 600;
}

/* ---------- Content cards ---------- */
.content-card {
    background: linear-gradient(180deg, #0e1629 0%, #0b1322 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.65rem 1.5rem;
    height: 100%;
    transition: border-color 0.48s var(--ease-soft), transform 0.48s var(--ease-soft);
}

.content-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.content-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.95rem;
}

.content-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.55rem;
    letter-spacing: -0.01em;
}

.content-card__body {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.content-card__body strong {
    color: var(--text-main);
    font-weight: 600;
}

/* ---------- Prose block (sections with paragraph + list) ---------- */
.prose {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.prose p { margin: 0 0 1rem; }
.prose strong { color: var(--text-main); font-weight: 600; }
.prose em { color: #c8d0e0; font-style: italic; }

.prose ul, .prose ol {
    padding-left: 1.1rem;
    margin: 0 0 1.25rem;
}

.prose li {
    margin-bottom: 0.45rem;
}

.prose li::marker {
    color: var(--accent-gold);
}

.prose h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 1.75rem 0 0.65rem;
    letter-spacing: -0.015em;
}

/* ---------- Quote block (examples / situations) ---------- */
.quote-block {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.01));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;
    padding: 1.2rem 1.35rem;
    margin-bottom: 0.85rem;
    font-size: 0.96rem;
    line-height: 1.55;
    color: #d8def0;
    font-style: italic;
}

.quote-block::before {
    content: "« ";
    color: var(--accent-gold);
    font-weight: 600;
    font-style: normal;
}

.quote-block::after {
    content: " »";
    color: var(--accent-gold);
    font-weight: 600;
    font-style: normal;
}

/* ---------- Comparison table ---------- */
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(180deg, #0e1629 0%, #0b1322 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    vertical-align: top;
}

.compare-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.compare-table tr:last-child td {
    border-bottom: 0;
}

.compare-table .col-ialacarte {
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-main);
}

.compare-table .col-ialacarte strong {
    color: var(--accent-gold);
}

/* ---------- Pricing cards ---------- */
.price-card {
    background: linear-gradient(180deg, #0e1629 0%, #0b1322 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 1.85rem 1.65rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card--featured {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 18px 50px -22px rgba(212, 175, 55, 0.4);
}

.price-card__name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin: 0 0 0.85rem;
}

.price-card__amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.025em;
    line-height: 1;
    margin: 0 0 0.35rem;
}

.price-card__amount-suffix {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-card__tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1.4rem;
    line-height: 1.55;
}

.price-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.price-card__list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.price-card__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-item {
    background: linear-gradient(180deg, #0e1629 0%, #0b1322 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.4s var(--ease-soft);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.48s var(--ease-soft);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item__body {
    padding: 0 1.35rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.faq-item__body strong { color: var(--text-main); font-weight: 600; }

/* ---------- CTA block ---------- */
.cta-block {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.cta-block__title {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0 0 0.85rem;
    line-height: 1.25;
}

.cta-block__lede {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 auto 1.85rem;
    max-width: 620px;
}

.cta-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: #0b0f19;
    background: linear-gradient(180deg, var(--accent-gold-soft) 0%, var(--accent-gold) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    text-decoration: none;
    box-shadow:
        0 18px 50px -14px rgba(212, 175, 55, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.4s var(--ease-soft), box-shadow 0.48s var(--ease-soft);
}

.btn-premium:hover,
.btn-premium:focus-visible {
    transform: translateY(-2px);
    box-shadow:
        0 24px 60px -14px rgba(212, 175, 55, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    color: #0b0f19;
    outline: none;
}

.btn-premium__arrow {
    transition: transform 0.4s var(--ease-soft);
}

.btn-premium:hover .btn-premium__arrow {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: none;
    text-decoration: none;
    transition: color 0.4s var(--ease-soft);
}

.btn-ghost:hover {
    color: var(--accent-gold);
}

/* ---------- Internal link cloud ---------- */
.linkcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.linkcloud a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.84rem;
    color: var(--text-muted);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.4s var(--ease-soft), color 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}

.linkcloud a:hover {
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--text-main);
    background: rgba(212, 175, 55, 0.06);
}

.linkcloud a::after {
    content: "→";
    color: var(--accent-gold);
    font-weight: 600;
}

/* ---------- Notice / disclaimer ---------- */
.notice {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.notice strong { color: var(--text-main); font-weight: 600; }

.notice--gold {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.18);
}

/* ---------- Footer (mirroring landing) ---------- */
.ial-footer {
    position: relative;
    background: linear-gradient(180deg, #080d18 0%, #060a13 100%);
    color: var(--text-muted);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding-block: 3.5rem 2.75rem;
    margin-top: 5rem;
}

/* Signature gold centrée sur la bordure haute du footer */
.ial-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.footer__legal-tag,
.footer__nav-title {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.85rem;
}

.footer__legal p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 32rem;
}

.footer__legal strong {
    color: var(--text-main);
    font-weight: 600;
}

.footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav li {
    margin-bottom: 0.55rem;
}

.footer__nav a,
.footer__copy ul a {
    display: inline-block;
    position: relative;
    font-size: 0.86rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.4s var(--ease-soft);
}

.footer__nav a::after,
.footer__copy ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.48s var(--ease-soft);
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__copy ul a:hover,
.footer__copy ul a:focus-visible {
    color: var(--text-main);
    outline: none;
}

.footer__nav a:hover::after,
.footer__nav a:focus-visible::after,
.footer__copy ul a:hover::after,
.footer__copy ul a:focus-visible::after {
    width: 100%;
}

/* Reset visuel des li dans .footer__copy (style inline list-style:none déjà appliqué) */
.footer__copy ul li {
    margin-bottom: 0.55rem;
}
.footer__copy ul li:last-child { margin-bottom: 0; }

.footer__copy {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__copyright {
    font-size: 0.82rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.45;
}

@media (max-width: 767.98px) {
    .footer__copy { align-items: flex-start; }
    .ial-footer .text-md-end { text-align: left !important; }
}

/* ---------- Sélecteur de langue (footer satellites) ---------- */
.footer__lang {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer__lang-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

.footer__lang-label svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer__lang-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 0.03);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%23d4af37' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 5 5 9 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 10px 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.55rem 2.25rem 0.55rem 0.85rem;
    width: 100%;
    max-width: 220px;
    cursor: pointer;
    transition: border-color 0.29s ease, background-color 0.29s ease;
}

.footer__lang-select:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer__lang-select:focus-visible {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.footer__lang-select option {
    background-color: #0b0f19;
    color: #fff;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================================
   RTL — Adaptations pour langues écrites de droite à gauche
   S'active automatiquement quand <html dir="rtl"> (ar, he)
   ============================================================ */

[dir="rtl"] body {
    /* Active la direction par défaut sur toutes les cellules de texte. */
    text-align: right;
}

/* ----- Listes : padding inversé, marqueurs gold à droite ----- */
[dir="rtl"] .prose ul,
[dir="rtl"] .prose ol {
    padding-left: 0;
    padding-right: 1.1rem;
}

/* ----- Cartes pricing : flèche → bascule + position à droite ----- */
[dir="rtl"] .price-card__list li {
    padding-left: 0;
    padding-right: 1.25rem;
}
[dir="rtl"] .price-card__list li::before {
    content: "←";
    left: auto;
    right: 0;
}

/* ----- Hero + overlines + breadcrumbs : alignement à droite ----- */
[dir="rtl"] .page-hero__crumbs,
[dir="rtl"] .page-hero__overline,
[dir="rtl"] .page-hero__title,
[dir="rtl"] .page-hero__lede,
[dir="rtl"] .section-head__overline,
[dir="rtl"] .section-head__title,
[dir="rtl"] .section-head__lede {
    text-align: right;
}

/* Le hero header est centered via section-head text-center => respecter */
[dir="rtl"] .section-head.text-center .section-head__overline,
[dir="rtl"] .section-head.text-center .section-head__title,
[dir="rtl"] .section-head.text-center .section-head__lede {
    text-align: center;
}

/* ----- CTA block centré (déjà géré par text-align: center) ----- */
/* ----- Notice / FAQ items : alignement à droite ----- */
[dir="rtl"] .notice,
[dir="rtl"] .quote-block,
[dir="rtl"] .faq-item summary,
[dir="rtl"] .faq-item__body {
    text-align: right;
}

/* La flèche + du faq-item summary reste à droite naturellement (left auto, right 1.35rem) */
[dir="rtl"] .faq-item summary::after {
    margin-left: 0;
    margin-right: auto;
}

/* ----- Tableau différenciation : bordures inversées ----- */
[dir="rtl"] .diff-table .diff-attr,
[dir="rtl"] .diff-table thead th.diff-th-attr {
    text-align: right;
    border-right: none;
    border-left: 1px solid rgba(212, 175, 55, 0.18);
}
[dir="rtl"] .diff-table .diff-cell-ialacarte {
    border-left: none;
    border-right: 1px solid rgba(212, 175, 55, 0.18);
}
[dir="rtl"] .diff-table tbody tr:hover .diff-cell-ialacarte {
    box-shadow: inset -3px 0 0 var(--accent-gold);
}
[dir="rtl"] .diff-table .diff-attr::before {
    left: auto;
    right: 0;
}

/* ----- Footer : alignement, bordures, sélecteur de langue ----- */
[dir="rtl"] .footer__nav a::after,
[dir="rtl"] .footer__copy ul a::after {
    left: auto;
    right: 0;
}
[dir="rtl"] .footer__lang-select {
    background-position: left 0.9rem center;
    padding: 0.55rem 0.85rem 0.55rem 2.25rem;
}

/* ----- Linkcloud : flèche → inversée ----- */
[dir="rtl"] .linkcloud a::after {
    content: "←";
}

/* ----- Contenu card iconifié : icon à droite + texte à gauche ----- */
[dir="rtl"] .content-card__icon {
    /* L'icône reste à sa position naturelle dans le flux RTL */
}
[dir="rtl"] .content-card,
[dir="rtl"] .content-card__title,
[dir="rtl"] .content-card__body {
    text-align: right;
}

/* ----- Cartes prix : alignement contenu à droite ----- */
[dir="rtl"] .price-card,
[dir="rtl"] .price-card__name,
[dir="rtl"] .price-card__amount,
[dir="rtl"] .price-card__tagline,
[dir="rtl"] .price-card__list {
    text-align: right;
}

/* ----- Bouton premium : flèche orientée ----- */
[dir="rtl"] .btn-premium__arrow {
    transform: scaleX(-1);
}
[dir="rtl"] .btn-premium:hover .btn-premium__arrow {
    transform: scaleX(-1) translateX(4px);
}
[dir="rtl"] .ial-cta:hover .ial-cta__arrow {
    transform: translateX(-3px);
}

/* ----- Diff table CTA : flèche orientée ----- */
[dir="rtl"] .diff-table-cta__arrow {
    transform: scaleX(-1);
}
[dir="rtl"] .diff-table-cta:hover .diff-table-cta__arrow {
    transform: scaleX(-1) translateX(4px);
}
[dir="rtl"] .diff-table-cta::after {
    transform-origin: right center;
}

/* ----- Page hero accent line : reste centré horizontalement ----- */
/* (déjà left:50% transform:translateX(-50%) — pas d'ajustement) */

/* ============================================================
   SATELLITE MOBILE HEADER (audit nav 2026-05-26)
   Sur mobile (<768px), masque le bouton "Activer" et le hamburger
   menu sur les pages satellites (body.seo-page). Le bouton retour
   .ial-nav__back reste visible. Un sticky CTA bas de page prend
   le relais pour la conversion.
   ============================================================ */
@media (max-width: 767.98px) {
    body.seo-page .ial-cta,
    body.seo-page .ial-nav__links,
    body.seo-page .ial-burger {
        display: none !important;
    }
    body.seo-page .ial-mobile-menu {
        display: none !important;
    }
}

/* ============================================================
   SATELLITE STICKY CTA — defaut totalement masque
   (P0 fix 2026-05-26 : eviter affichage liens texte bruts desktop
    quand le cache navigateur sert une ancienne CSS sans regle.)

   Strategie :
     1) defaut hors @media = masque (display:none + visibility:hidden
        + pointer-events:none, tous en !important) -> aucun rendu
        possible meme si une regle plus specifique tente display:block.
     2) mobile <768px sur body.seo-page = exception explicite
        avec !important sur display/visibility/pointer-events.
     3) desktop >=768px = ceinture + bretelles, meme triple masque.
   ============================================================ */
.satellite-sticky-cta {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 767.98px) {
    body.seo-page .satellite-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: flex !important;
        visibility: visible !important;
        pointer-events: auto !important;
        gap: 0.75rem;
        padding: 0.75rem max(1rem, env(safe-area-inset-left)) calc(0.75rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
        background: rgba(7, 12, 22, 0.94);
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        align-items: center;
        justify-content: center;
    }

    body.seo-page .satellite-sticky-cta__primary,
    body.seo-page .satellite-sticky-cta__secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 700;
        white-space: nowrap;
    }

    body.seo-page .satellite-sticky-cta__primary {
        flex: 1 1 auto;
        background: var(--accent-gold, #d4af37);
        color: #07101c !important;
    }

    body.seo-page .satellite-sticky-cta__secondary {
        flex: 0 0 auto;
        padding-inline: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #f7f3e8 !important;
        background: rgba(255, 255, 255, 0.04);
    }

    body.seo-page {
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
    }
}

@media (min-width: 768px) {
    .satellite-sticky-cta {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* ============================================================
   CTA-BLOCK fin de page satellite — masque sur mobile (contrat sym 2026-05-26)
   Le sticky CTA bas (Creer mon espace + Tarifs) suffit en mobile.
   Le CTA-block reste visible en desktop pour le maillage / conversion.
   Decision user : "interdit de supprimer en desktop, c'est du hide sur mobile".
   ============================================================ */
@media (max-width: 767.98px) {
    .cta-block,
    section:has(> .container > .cta-block) {
        display: none !important;
    }
}

/* ============================================================
   LINKCLOUD "Related reading" — masque sur mobile (contrat sym 2026-05-26)
   Le bloc <div class="linkcloud"> expose des chips vers d'autres satellites.
   Sur mobile, on respecte la regle "pas plus de liens que la home" : ces
   chips sont retirees visuellement (le DOM les conserve pour le SEO desktop
   et les crawlers ; cf. footer mini ci-dessous).
   Le H2 "A lire aussi" associe et son wrapper sont egalement masques.
   ============================================================ */
@media (max-width: 767.98px) {
    .linkcloud,
    section:has(> .container > .linkcloud),
    section:has(> .container > div > .linkcloud) {
        display: none !important;
    }
}

/* ============================================================
   MINI-FOOTER MOBILE (contrat sym 2026-05-26)
   Sur mobile (<768px) : on masque le .ial-footer riche (17 liens)
   et on montre .ial-footer-mini (4 liens : how, pricing, faq, legal).
   Sur desktop (>=768px) : on cache .ial-footer-mini.
   Resultat : cibles mobile n'exposent que 4 liens en footer, exactement
   comme la home mobile (landing.html short).
   ============================================================ */
.ial-footer-mini {
    display: none;
}
@media (max-width: 767.98px) {
    .ial-footer-mini {
        display: block;
        padding: 1.5rem 1rem calc(1.5rem + env(safe-area-inset-bottom, 0));
        background: rgba(7, 12, 22, 0.85);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
        font-size: 0.82rem;
        color: rgba(248, 249, 251, 0.65);
    }
    .ial-footer-mini__copy {
        margin-bottom: 0.65rem;
        line-height: 1.5;
    }
    .ial-footer-mini__links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem 1.1rem;
        justify-content: center;
    }
    .ial-footer-mini__links a {
        color: rgba(248, 249, 251, 0.85);
        text-decoration: none;
        font-weight: 500;
    }
    .ial-footer-mini__links a:hover { color: var(--accent-gold, #d4af37); }
    /* Cacher le footer riche en mobile (laisse la place au mini) */
    .ial-footer {
        display: none !important;
    }
}
