/* ═══════════════════════════════════════════════════════════════════════════
   HubPlace — site vitrine
   Charte : bleu Thiris (#0066B3) + orange HubPlace (#FF8C00), Inter, thème sombre.
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
    /* Fonds */
    --bg:        #080C13;
    --bg-2:      #0C121C;
    --surface:   #121B27;
    --surface-2: #18222F;
    --line:      rgba(255, 255, 255, .08);
    --line-2:    rgba(255, 255, 255, .14);

    /* Textes */
    --text:  #EAF0F7;
    --text-2:#B6C3D3;
    --muted: #8494A8;

    /* Marque */
    --brand:      #FF8C00;
    --brand-2:    #FFAA33;
    --brand-deep: #F2790A;
    --blue:       #3B96DD;
    --blue-2:     #6FB8EE;
    --blue-deep:  #0066B3;
    --green:      #4FC97A;
    --red:        #F0685A;

    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --wrap: 1180px;
    --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, .8);

    --ease: cubic-bezier(.22, .8, .28, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
svg { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(255, 140, 0, .3); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: 1360px; }

/* ─── Typographie ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.025em; font-weight: 700; }

.h-display {
    font-size: clamp(2.25rem, 5.1vw, 3.9rem);
    font-weight: 800;
    letter-spacing: -.035em;
}
.h-section {
    font-size: clamp(1.85rem, 4vw, 2.9rem);
    font-weight: 750;
    letter-spacing: -.03em;
}
.h-card { font-size: 1.19rem; font-weight: 650; letter-spacing: -.015em; }

.lead {
    font-size: clamp(1.03rem, 1.7vw, 1.22rem);
    color: var(--text-2);
    line-height: 1.62;
}
.muted { color: var(--muted); }

.grad-text {
    background: linear-gradient(100deg, var(--brand-2) 0%, var(--brand) 45%, #FFD08A 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blue-text {
    background: linear-gradient(100deg, var(--blue-2), var(--blue));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Boutons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .82rem 1.5rem;
    border: 1px solid transparent; border-radius: 10px;
    font-size: .95rem; font-weight: 600; letter-spacing: -.01em;
    cursor: pointer; white-space: nowrap;
    transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
}
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

.btn--primary {
    background: linear-gradient(160deg, var(--brand-2), var(--brand-deep));
    color: #1B0F00;
    box-shadow: 0 10px 30px -8px rgba(255, 140, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(255, 140, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .35); }

.btn--ghost {
    background: rgba(255, 255, 255, .05);
    border-color: var(--line-2);
    color: var(--text);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .25); transform: translateY(-2px); }

.btn--sm { padding: .58rem 1.05rem; font-size: .875rem; border-radius: 9px; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.03rem; border-radius: 12px; }

/* ─── Puces / badges ─────────────────────────────────────────────────────── */
.pill {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .34rem .82rem .34rem .6rem;
    border: 1px solid var(--line-2); border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    font-size: .8rem; font-weight: 550; color: var(--text-2);
    letter-spacing: .005em;
    backdrop-filter: blur(10px);
}
.pill__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(79, 201, 122, .18);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .45 } }

.eyebrow {
    display: inline-block;
    font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    color: var(--brand-2);
    margin-bottom: .9rem;
}
.eyebrow--blue { color: var(--blue-2); }

/* ─── En-tête ────────────────────────────────────────────────────────────── */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 80;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
    background: rgba(8, 12, 19, .82);
    backdrop-filter: blur(18px) saturate(150%);
    border-bottom-color: var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.4rem; height: 72px; }

.brand { display: flex; align-items: center; gap: .62rem; font-weight: 750; font-size: 1.12rem; letter-spacing: -.025em; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }

.main-nav { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.main-nav a {
    padding: .5rem .78rem; border-radius: 8px;
    font-size: .915rem; font-weight: 520; color: var(--text-2);
    transition: color .18s, background .18s;
}
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

/* Sélecteur de langue */
.lang { position: relative; }
.lang__btn {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 9px;
    background: rgba(255, 255, 255, .04); color: var(--text-2);
    font: inherit; font-size: .875rem; font-weight: 550; cursor: pointer;
    transition: border-color .18s, color .18s;
}
.lang__btn:hover { color: var(--text); border-color: var(--line-2); }
.lang__btn svg { width: 15px; height: 15px; }
.lang__menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 460px; max-height: 60vh; overflow-y: auto;
    display: none; grid-template-columns: repeat(3, 1fr); gap: 2px;
    padding: 8px; border: 1px solid var(--line-2); border-radius: 14px;
    background: rgba(18, 27, 39, .97); backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}
.lang.is-open .lang__menu { display: grid; }
.lang__menu a {
    display: flex; align-items: center; gap: .5rem;
    padding: .45rem .6rem; border-radius: 8px;
    font-size: .855rem; color: var(--text-2); white-space: nowrap;
}
.lang__menu a:hover { background: rgba(255, 255, 255, .07); color: var(--text); }
.lang__menu a[aria-current] { color: var(--brand-2); background: rgba(255, 140, 0, .1); }
.lang__code { font-size: .68rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

.burger { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.burger span, .burger span::before, .burger span::after {
    display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--text);
    transition: transform .25s var(--ease), opacity .2s;
}
.burger span { position: relative; }
.burger span::before, .burger span::after { content: ''; position: absolute; left: 0; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 10rem 0 0; overflow: hidden; }
.hero__glow {
    position: absolute; pointer-events: none; border-radius: 50%;
    filter: blur(90px); opacity: .55;
}
.hero__glow--a { width: 780px; height: 620px; top: -280px; left: 50%; transform: translateX(-58%);
    background: radial-gradient(circle, rgba(0, 102, 179, .75), transparent 68%); }
.hero__glow--b { width: 560px; height: 460px; top: 60px; right: -140px;
    background: radial-gradient(circle, rgba(255, 140, 0, .34), transparent 66%); }
.hero__grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 20%, transparent 75%);
    opacity: .5;
}
.hero__inner { position: relative; text-align: center; max-width: 960px; margin: 0 auto; }
.hero h1 { margin: 1.35rem 0 1.25rem; }
.hero .lead { max-width: 660px; margin: 0 auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.1rem; }
.hero__note { margin-top: 1.05rem; font-size: .86rem; color: var(--muted); }

/* Capture principale */
.hero__shot { position: relative; margin: 4rem auto 0; max-width: 1240px; padding: 0 24px; }
.shot {
    position: relative; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--line-2);
    background: var(--surface);
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .04);
}
.shot img { width: 100%; height: auto; }
.shot__bar {
    display: flex; align-items: center; gap: 7px;
    padding: 11px 14px; border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
}
.shot__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.shot__url {
    margin-left: 10px; padding: 3px 12px; border-radius: 6px;
    background: rgba(0, 0, 0, .3); border: 1px solid var(--line);
    font-size: .74rem; color: var(--muted); letter-spacing: .01em;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.hero__shot::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 190px;
    background: linear-gradient(to bottom, transparent, var(--bg) 88%);
    pointer-events: none;
}

/* Vignettes flottantes autour de la capture */
.float-chip {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: .65rem;
    padding: .7rem .95rem; border-radius: 13px;
    border: 1px solid var(--line-2);
    background: rgba(18, 27, 39, .88);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, .85);
    font-size: .845rem; font-weight: 550;
    animation: floaty 6s ease-in-out infinite;
}
.float-chip__ico {
    display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; flex: 0 0 auto;
}
.float-chip small { display: block; font-size: .72rem; font-weight: 500; color: var(--muted); }
.float-chip--a { top: 16%; left: -2%; animation-delay: -1s; }
.float-chip--b { top: 47%; right: -1%; animation-delay: -3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-11px) } }

/* ─── Bandeau de confiance ───────────────────────────────────────────────── */
.trust { position: relative; padding: 1rem 0 4.5rem; }
.trust__row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 1rem 2.6rem;
}
.trust__item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text-2); }
.trust__item svg { width: 18px; height: 18px; color: var(--brand-2); flex: 0 0 auto; }
.trust__os { display: flex; align-items: center; gap: 1.1rem; padding-right: 2.2rem; border-right: 1px solid var(--line); }
.trust__os svg { width: 22px; height: 22px; color: var(--text-2); opacity: .85; }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section { position: relative; padding: 6.5rem 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section__head { max-width: 720px; margin-bottom: 3.4rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { margin-top: 1rem; }

/* Bloc image + texte */
.split {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
    gap: 4.5rem; align-items: center;
}
.split--rev { grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr); }
.split--rev > :first-child { order: 2; }
.split__media { position: relative; }
.split__media .shot { transform: perspective(1600px) rotateY(-6deg) rotateX(2deg); transition: transform .6s var(--ease); }
.split--rev .split__media .shot { transform: perspective(1600px) rotateY(6deg) rotateX(2deg); }
.split__media:hover .shot { transform: perspective(1600px) rotateY(0) rotateX(0) scale(1.015); }
.split__glow {
    position: absolute; inset: 12% -8% 12% -8%; z-index: -1; filter: blur(70px); opacity: .5;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 179, .6), transparent 70%);
}
.split__glow--orange { background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, .38), transparent 70%); }

/* Liste de bénéfices */
.checks { display: grid; gap: 1.1rem; margin-top: 2rem; }
.checks li { display: flex; gap: .85rem; align-items: flex-start; }
.checks svg { width: 21px; height: 21px; flex: 0 0 auto; margin-top: 2px; color: var(--green); }
.checks b { display: block; font-weight: 620; margin-bottom: .12rem; letter-spacing: -.01em; }
.checks span { color: var(--text-2); font-size: .935rem; }

/* ─── Cartes ─────────────────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.35rem; }
.card {
    position: relative; padding: 1.9rem 1.75rem;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
    transition: border-color .3s, transform .3s var(--ease), background .3s;
    overflow: hidden;
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.card__ico {
    display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.2rem;
    border-radius: 13px; border: 1px solid var(--line-2);
    background: rgba(255, 255, 255, .05);
    color: var(--brand-2);
}
.card__ico svg { width: 22px; height: 22px; }
.card__ico--blue { color: var(--blue-2); }
.card h3 { font-size: 1.1rem; margin-bottom: .55rem; }
.card p { font-size: .93rem; color: var(--text-2); }

/* Section sur photo */
.photo-section { position: relative; isolation: isolate; }
.photo-section__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.photo-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.photo-section__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--bg) 4%, rgba(8, 12, 19, .9) 36%, rgba(8, 12, 19, .74));
}
.photo-section .card {
    background: rgba(11, 17, 26, .84);
    backdrop-filter: blur(10px);
}
.photo-section--center .photo-section__bg::after {
    background: linear-gradient(to bottom, var(--bg), rgba(8, 12, 19, .84) 40%, rgba(8, 12, 19, .93)), rgba(8, 12, 19, .35);
}

/* ─── Bloc IA ────────────────────────────────────────────────────────────── */
.ai-verdict {
    display: grid; gap: 1rem; padding: 1.6rem;
    border: 1px solid rgba(255, 140, 0, .3); border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 140, 0, .1), rgba(255, 140, 0, .02));
    margin-top: 2rem;
}
.ai-verdict__head { display: flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-2); }
.ai-verdict p { font-size: .95rem; color: var(--text-2); }
.ai-verdict__meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.tagl {
    padding: .28rem .68rem; border-radius: 7px; font-size: .78rem; font-weight: 600;
    border: 1px solid var(--line-2); background: rgba(255, 255, 255, .05); color: var(--text-2);
}
.tagl--red { color: #FFB4A8; border-color: rgba(240, 104, 90, .35); background: rgba(240, 104, 90, .12); }

/* ─── Terminal ───────────────────────────────────────────────────────────── */
.terminal {
    border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden;
    background: #070B11; box-shadow: var(--shadow-lg);
}
.terminal__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.terminal__title { margin-left: 8px; font-size: .76rem; color: var(--muted); }
.terminal__body {
    padding: 1.5rem 1.4rem; min-height: 210px;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: .855rem; line-height: 1.85; color: #CBD6E4;
}
.terminal__line { white-space: pre-wrap; word-break: break-word; }
.terminal__prompt { color: var(--brand-2); }
.terminal__ok { color: var(--green); }
.terminal__dim { color: var(--muted); }
.terminal__cursor {
    display: inline-block; width: 8px; height: 1.05em; vertical-align: text-bottom;
    background: var(--brand-2); animation: blink 1.1s steps(2) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1 } 50%, 100% { opacity: 0 } }

/* Étapes */
.steps { display: grid; gap: 1.9rem; counter-reset: step; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 1.15rem; align-items: start; }
.step__n {
    counter-increment: step;
    display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
    background: linear-gradient(160deg, var(--brand-2), var(--brand-deep)); color: #1B0F00;
    font-weight: 750; font-size: 1.05rem;
}
.step__n::before { content: counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { font-size: .93rem; color: var(--text-2); }

/* ─── Grille d'applications ──────────────────────────────────────────────── */
.apps { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 1rem; }
.app {
    display: flex; align-items: center; gap: .9rem;
    min-height: 76px;
    padding: 1.05rem 1.15rem; border: 1px solid var(--line); border-radius: 14px;
    background: rgba(255, 255, 255, .028);
    transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.app:hover { border-color: var(--line-2); background: rgba(255, 255, 255, .055); transform: translateY(-3px); }
.app__ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 255, 255, .06); color: var(--blue-2); flex: 0 0 auto; }
.app__ico svg { width: 19px; height: 19px; }
.app b { display: block; font-size: .95rem; font-weight: 600; }
.app small { color: var(--muted); font-size: .8rem; }

/* ─── Chiffres ───────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.2rem; }
.stat { padding: 1.5rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .03); }
.stat b { display: block; font-size: 2.2rem; font-weight: 780; letter-spacing: -.04em; line-height: 1.1; }
.stat span { font-size: .88rem; color: var(--muted); }

/* ─── CTA final ──────────────────────────────────────────────────────────── */
.cta-final { position: relative; padding: 7rem 0; text-align: center; isolation: isolate; }
.cta-final h2 { max-width: 800px; margin: 0 auto 1.2rem; }
.cta-final .lead { max-width: 600px; margin: 0 auto; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.2rem; }

/* ─── Pied de page ───────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 4rem 0 2.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; }
.footer-grid h4 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-grid ul { display: grid; gap: .6rem; }
.footer-grid a { font-size: .92rem; color: var(--text-2); transition: color .18s; }
.footer-grid a:hover { color: var(--brand-2); }
.footer-about p { font-size: .92rem; color: var(--text-2); margin-top: 1rem; max-width: 320px; }
.footer-bottom {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
    margin-top: 3rem; padding-top: 1.7rem; border-top: 1px solid var(--line);
    font-size: .86rem; color: var(--muted);
}
.footer-langs { display: flex; flex-wrap: wrap; gap: .35rem .9rem; margin-top: 1.4rem; }
.footer-langs a { font-size: .8rem; color: var(--muted); }
.footer-langs a:hover { color: var(--text-2); }
.footer-langs a[aria-current] { color: var(--brand-2); font-weight: 600; }

/* ─── Formulaire d'inscription ───────────────────────────────────────────── */
.signup { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-card {
    padding: 2.2rem; border: 1px solid var(--line-2); border-radius: var(--radius-xl);
    background: linear-gradient(165deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    box-shadow: var(--shadow-lg);
}
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .855rem; font-weight: 570; color: var(--text-2); }
.field input, .field select {
    width: 100%; padding: .78rem .9rem;
    border: 1px solid var(--line-2); border-radius: 10px;
    background: rgba(0, 0, 0, .3); color: var(--text);
    font: inherit; font-size: .94rem;
    transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus {
    outline: none; border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, .18);
}
.field input::placeholder { color: #5C6B7E; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .8rem; color: var(--muted); }
.form-consent { display: flex; gap: .65rem; align-items: flex-start; margin: 1.3rem 0; font-size: .84rem; color: var(--text-2); }
.form-consent input { margin-top: .25rem; accent-color: var(--brand); }
.form-consent a { color: var(--blue-2); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Tarifs ─────────────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; align-items: start; }
.plan {
    position: relative; padding: 2.1rem 1.9rem;
    border: 1px solid var(--line); border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .028);
}
.plan--feature {
    border-color: rgba(255, 140, 0, .4);
    background: linear-gradient(170deg, rgba(255, 140, 0, .09), rgba(255, 255, 255, .02));
    box-shadow: 0 30px 70px -30px rgba(255, 140, 0, .4);
}
.plan__tag {
    position: absolute; top: -12px; left: 1.9rem;
    padding: .28rem .8rem; border-radius: 999px;
    background: linear-gradient(160deg, var(--brand-2), var(--brand-deep)); color: #1B0F00;
    font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.plan__price { display: flex; align-items: baseline; gap: .4rem; margin: 1rem 0 .3rem; }
.plan__price b { font-size: 2.9rem; font-weight: 800; letter-spacing: -.045em; }
.plan__price span { color: var(--muted); font-size: .92rem; }
.plan ul { display: grid; gap: .72rem; margin: 1.7rem 0; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--text-2); }
.plan li svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; color: var(--green); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: .8rem; max-width: 800px; margin: 0 auto; }
.faq details {
    border: 1px solid var(--line); border-radius: 14px;
    background: rgba(255, 255, 255, .028);
    transition: border-color .25s;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
    padding: 1.2rem 1.4rem; cursor: pointer; list-style: none;
    font-weight: 600; font-size: 1rem; letter-spacing: -.012em;
    display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--brand-2);
    transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.4rem 1.3rem; font-size: .94rem; color: var(--text-2); }

/* ─── Contenu légal ──────────────────────────────────────────────────────── */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 2.6rem 0 .9rem; }
.prose h3 { font-size: 1.13rem; margin: 1.8rem 0 .6rem; }
.prose p, .prose li { color: var(--text-2); font-size: .96rem; margin-bottom: .8rem; }
.prose ul { display: grid; gap: .5rem; margin: 0 0 1.2rem 1.2rem; list-style: disc; }
.prose a { color: var(--blue-2); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Animations au défilement ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s } .reveal[data-d="2"] { transition-delay: .18s }
.reveal[data-d="3"] { transition-delay: .27s } .reveal[data-d="4"] { transition-delay: .36s }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ─── Adaptatif ──────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
    .split { grid-template-columns: 1fr; gap: 2.8rem; }
    .split--rev > :first-child { order: 0; }
    .split__media .shot, .split--rev .split__media .shot { transform: none; }
    .signup { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .float-chip { display: none; }
}

@media (max-width: 860px) {
    .burger { display: block; margin-left: auto; }
    .main-nav {
        position: fixed; inset: 72px 0 auto 0; margin: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        padding: 1rem 24px 1.6rem;
        background: rgba(8, 12, 19, .98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        transform: translateY(-130%); transition: transform .35s var(--ease);
    }
    body.nav-open .main-nav { transform: none; }
    .main-nav a { padding: .85rem .4rem; font-size: 1.02rem; }
    .header-actions { margin-left: 0; }
    .header-actions .btn { display: none; }
    body.nav-open { overflow: hidden; }
    .hero { padding-top: 7.5rem; }
    .section { padding: 4.5rem 0; }
    .lang__menu { min-width: min(88vw, 340px); grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .field--row { grid-template-columns: 1fr; }
    .trust__os { border-right: 0; padding-right: 0; }
    .hero__shot { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Pages intérieures
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── En-tête de page ────────────────────────────────────────────────────── */
.page-hero { position: relative; padding: 9.5rem 0 4rem; overflow: hidden; }
.page-hero::before {
    content: ''; position: absolute; width: 900px; height: 520px;
    top: -300px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 102, 179, .55), transparent 68%);
    filter: blur(90px); pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero__inner--center { margin-inline: auto; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); font-weight: 800; letter-spacing: -.035em; margin: 1.1rem 0 1.1rem; }

/* ─── Blocs de fonctionnalités ───────────────────────────────────────────── */
.feature-block { padding: 4.5rem 0; border-top: 1px solid var(--line); }
.feature-block:first-of-type { border-top: 0; }

/* ─── Tableau récapitulatif ──────────────────────────────────────────────── */
.matrix { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.35rem; }
.matrix__group {
    padding: 1.7rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .026);
}
.matrix__group h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.02rem; margin-bottom: 1.1rem; }
.matrix__group h3 svg { width: 19px; height: 19px; color: var(--brand-2); }
.matrix__group ul { display: grid; gap: .55rem; }
.matrix__group li { display: flex; gap: .6rem; font-size: .9rem; color: var(--text-2); }
.matrix__group li svg { width: 16px; height: 16px; margin-top: 4px; color: var(--green); }

/* ─── Grandes étapes ─────────────────────────────────────────────────────── */
.bigsteps { display: grid; gap: 4.5rem; }
.bigstep { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 3.5rem; align-items: center; }
.bigstep:nth-child(even) > :first-child { order: 2; }
.bigstep__num {
    display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1.2rem;
    border-radius: 12px; background: rgba(255, 140, 0, .14); border: 1px solid rgba(255, 140, 0, .3);
    color: var(--brand-2); font-weight: 750;
}
.bigstep h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .9rem; }
.bigstep p { color: var(--text-2); }
.bigstep .checks { margin-top: 1.4rem; }

/* ─── Colonne latérale d'inscription ─────────────────────────────────────── */
.signup__aside { padding-top: .6rem; }
.signup__aside .checks { margin-top: 1.8rem; }
.signup-note {
    display: flex; gap: .8rem; align-items: flex-start;
    margin-top: 2.2rem; padding: 1.2rem 1.3rem;
    border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .03);
    font-size: .89rem; color: var(--text-2);
}
.signup-note svg { width: 20px; height: 20px; color: var(--blue-2); }

/* Messages du formulaire */
.form-msg { display: none; padding: 1rem 1.15rem; border-radius: 12px; font-size: .93rem; margin-bottom: 1.4rem; }
.form-msg.is-on { display: block; }
.form-msg--ok  { border: 1px solid rgba(79, 201, 122, .4); background: rgba(79, 201, 122, .12); color: #A8E9C1; }
.form-msg--err { border: 1px solid rgba(240, 104, 90, .4); background: rgba(240, 104, 90, .12); color: #FFC0B7; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 1080px) {
    .bigstep { grid-template-columns: 1fr; gap: 2.2rem; }
    .bigstep:nth-child(even) > :first-child { order: 0; }
}
