/* SchoolBook — pages marketing (webinaire, fonctionnalités, auth) */
:root {
    /* Palette officielle (static/css/input.css) */
    --sb-navy: #041C2D;
    --sb-blue: #0069B4;
    --sb-blue-light: #009EE2;
    --sb-blue-dark: #041C2D;
    --sb-orange: #FAA61A;
    --sb-orange-soft: #FFF6E8;
    --sb-white: #ffffff;
    --sb-text: #1A2C3E;
    --sb-muted: #5a7189;
    --sb-border: #eef2f7;
    --sb-shadow: 0 24px 60px rgba(4, 28, 45, .1);
}

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

body.sb-marketing {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--sb-text);
    background: var(--sb-white);
    line-height: 1.55;
    margin: 0;
}
body.sb-page-webinar {
    background: #f4f7fb;
}
.sb-page-webinar .sb-form-wrap {
    padding-bottom: 48px;
}

.sb-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sb-container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── NAV ── */
.sb-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 18px 0;
}
.sb-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sb-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}
.sb-nav__logo {
    width: 42px;
    height: 42px;
    background: var(--sb-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}
.sb-nav__brand--logo {
    gap: 0;
    flex-shrink: 0;
}
.sb-brand-logo {
    height: 42px;
    width: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background: transparent;
}
.sb-footer__brand-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
    background: transparent;
}
.sb-footer__brand .sb-footer__brand-logo {
    margin-left: 0;
    margin-right: 0;
}
.sb-nav__name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}
.sb-nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sb-nav__links {
    display: none;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sb-nav__links > li > a,
.sb-nav__links > li > button {
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background .2s, color .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sb-nav__links > li > a:hover,
.sb-nav__links > li > button:hover {
    background: rgba(255,255,255,.12);
    color: white;
}
.sb-nav__links > li > a.is-active {
    background: rgba(255,255,255,.18);
    color: white;
    font-weight: 600;
}
.sb-nav__dropdown {
    position: relative;
}
.sb-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s;
    z-index: 100;
}
.sb-nav__dropdown:hover .sb-nav__dropdown-menu,
.sb-nav__dropdown:focus-within .sb-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sb-nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--sb-text);
    transition: background .15s;
}
.sb-nav__dropdown-item:hover { background: #f0f6fc; }
.sb-nav__dropdown-item.is-active { background: var(--sb-orange-soft); }
.sb-nav__dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--sb-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
}
.sb-nav__dropdown-label { font-weight: 600; font-size: .88rem; }
.sb-nav__dropdown-desc { font-size: .75rem; color: var(--sb-muted); margin-top: 2px; }
.sb-nav__login {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 18px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 8px;
    transition: background .2s;
    white-space: nowrap;
}
.sb-nav__login:hover { background: rgba(255,255,255,.12); }
.sb-nav__cta {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--sb-orange);
    transition: background .2s, transform .2s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(250, 166, 26, .35);
}
.sb-nav__cta:hover {
    background: #e09000;
    transform: translateY(-1px);
}
.sb-nav--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
}
.sb-nav--fixed.is-scrolled {
    background: rgba(4, 28, 45, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.sb-home-cta {
    background: #fff;
    padding: 0 1rem 4rem;
    margin-top: -1px;
}
.sb-home-cta .sb-card {
    background: #fff;
    border: 1px solid var(--sb-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--sb-shadow);
    height: 100%;
}
.sb-home-cta .sb-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--sb-blue-dark);
    font-size: 1.15rem;
    margin: 0 0 4px;
}
.sb-home-cta .sb-card p { color: var(--sb-muted); font-size: .88rem; margin: 0; }
.sb-trust { color: var(--sb-muted); font-size: .85rem; }
.sb-nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.sb-nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.sb-nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sb-nav__burger.active span:nth-child(2) { opacity: 0; }
.sb-nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sb-btn.w-full { width: 100%; }
@media (min-width: 900px) {
    .sb-nav__links { display: flex; }
    .sb-nav__burger { display: none; }
}

/* ── HERO ── */
.sb-hero {
    position: relative;
    background: var(--sb-blue-dark);
    overflow: hidden;
    padding: 120px 0 100px;
    min-height: 480px;
}
.sb-hero__blob {
    position: absolute;
    right: -4%;
    top: 58%;
    transform: translateY(-50%);
    width: min(50vw, 520px);
    height: min(50vw, 520px);
    background: radial-gradient(circle at 35% 35%, #ffc04d 0%, var(--sb-orange) 55%, #e09000 100%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.sb-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    z-index: 2;
    padding: 12px 0 0;
}
.sb-hero__frame {
    position: relative;
    z-index: 3;
    width: min(100%, 340px);
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
    box-shadow:
        0 28px 56px rgba(4, 28, 45, .42),
        0 0 0 1px rgba(255, 255, 255, .22),
        0 0 0 6px rgba(250, 166, 26, .28);
    transform: translateY(8px);
    transition: transform .35s ease, box-shadow .35s ease;
}
.sb-hero__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 -40px 60px rgba(4, 28, 45, .18);
}
.sb-hero__visual:hover .sb-hero__frame {
    transform: translateY(4px);
    box-shadow:
        0 34px 64px rgba(4, 28, 45, .48),
        0 0 0 1px rgba(255, 255, 255, .28),
        0 0 0 6px rgba(250, 166, 26, .34);
}
.sb-hero__person {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    object-fit: cover;
    object-position: center 18%;
    background: #dfe8f2;
    border-radius: 0;
    filter: none;
}
.sb-hero__frame--scene .sb-hero__person {
    object-position: center center;
}
.sb-hero__curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    pointer-events: none;
}
.sb-hero__curve svg { display: block; width: 100%; height: 100%; }
.sb-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 32px;
    min-height: 320px;
}
@media (min-width: 900px) {
    .sb-hero__inner { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}
.sb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.sb-hero__badge i { color: var(--sb-orange); }
.sb-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.sb-hero__title em {
    font-style: normal;
    color: var(--sb-orange);
}
.sb-hero__sub {
    color: rgba(255,255,255,.88);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0;
    line-height: 1.6;
}
.sb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    font-family: inherit;
}
.sb-btn--primary {
    background: var(--sb-orange);
    color: white;
    box-shadow: 0 10px 28px rgba(250, 166, 26, .35);
}
.sb-btn--primary:hover {
    background: #e09000;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(250, 166, 26, .4);
}
.sb-btn--ghost {
    background: rgba(255,255,255,.12);
    color: white;
    border: 1.5px solid rgba(255,255,255,.35);
}
.sb-btn--ghost:hover { background: rgba(255,255,255,.2); }
.sb-btn--white {
    background: white;
    color: var(--sb-blue-dark);
}
.sb-btn--white:hover { background: #f8fafc; transform: translateY(-2px); }
.sb-btn--outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, .45);
}
.sb-btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}
.sb-btn--navy {
    background: linear-gradient(135deg, var(--sb-blue) 0%, var(--sb-blue-light) 100%);
    color: white;
    box-shadow: 0 10px 28px rgba(0, 105, 180, .28);
}
.sb-btn--navy:hover { transform: translateY(-2px); }
.sb-btn--block { width: 100%; }

/* ── HERO ACCUEIL (bleu + orange webinaire, courbe de séparation) ── */
.sb-hero--home {
    background: var(--sb-orange);
    padding: 112px 0 100px;
    min-height: min(88vh, 720px);
}
.sb-hero--home .sb-hero__blob { display: none; }
.sb-hero__duo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.sb-hero__duo-blue,
.sb-hero__duo-orange {
    position: absolute;
    inset: 0;
}
.sb-hero__duo-blue {
    right: 40%;
    background: var(--sb-blue-dark);
}
.sb-hero__duo-orange {
    left: 60%;
    background: var(--sb-orange);
}
.sb-hero__duo-curve {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.sb-hero__duo-curve--desk {
    top: 0;
    bottom: 0;
    left: 56%;
    width: 10%;
    height: 100%;
}
.sb-hero__duo-curve--mob { display: none; }
.sb-hero__inner--home {
    min-height: 400px;
    align-items: center;
}
@media (min-width: 900px) {
    .sb-hero__inner--home {
        grid-template-columns: 3fr 2fr;
        gap: 20px;
        min-height: 480px;
    }
}
.sb-hero--home .sb-hero__text {
    position: relative;
    z-index: 2;
}
.sb-hero--home .sb-hero__title--home {
    font-size: clamp(1.75rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
}
.sb-hero--home .sb-hero__title em {
    color: var(--sb-orange);
    display: inline;
    font-weight: 800;
}
.sb-hero--home .sb-hero__badge {
    font-size: .78rem;
    margin-bottom: 18px;
}
.sb-hero__sub--hook {
    font-size: clamp(.9rem, 1.4vw, 1.06rem);
    line-height: 1.72;
    max-width: 100%;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}
.sb-hero__sub--hook strong {
    color: #fff;
    font-weight: 700;
}
.sb-hero__actions--home {
    margin-bottom: 22px;
}
.sb-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s ease, transform .2s ease;
}
.sb-hero__scroll:hover {
    color: #fff;
    transform: translateY(2px);
}
.sb-hero__scroll-icon {
    animation: sb-scroll-bounce 2s ease-in-out infinite;
}
@keyframes sb-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: .7; }
    50% { transform: translateY(5px); opacity: 1; }
}
.sb-hero__visual--home {
    justify-content: center;
    align-items: center;
    animation: sb-hero-visual-in 1s ease-out both;
    min-height: 320px;
}
@media (min-width: 900px) {
    .sb-hero__visual--home {
        min-height: 500px;
        justify-content: center;
        align-items: center;
        padding: 0 4px;
    }
}
@keyframes sb-hero-visual-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.sb-hero--home .sb-hero__frame {
    animation: sb-hero-frame-float 5s ease-in-out infinite;
    width: min(92vw, 360px);
    max-width: none;
    aspect-ratio: 4 / 5;
    border-radius: 36px;
}
@media (min-width: 900px) {
    .sb-hero--home .sb-hero__frame {
        width: 100%;
        max-width: min(100%, 480px);
        min-height: 420px;
    }
}
@media (min-width: 1200px) {
    .sb-hero--home .sb-hero__frame {
        max-width: min(100%, 520px);
    }
}
.sb-hero--home .sb-hero__person {
    object-position: center 10%;
}
@keyframes sb-hero-frame-float {
    0%, 100% { transform: translateY(8px); }
    50% { transform: translateY(2px); }
}
.sb-hero--home .sb-hero__visual:hover .sb-hero__frame {
    animation: none;
    transform: translateY(4px);
}

.sb-home-orange-band {
    position: relative;
    z-index: 3;
    background: var(--sb-orange);
    border-radius: 0;
    padding: 40px 0 88px;
    margin-top: -1px;
}
.sb-home-orange-band__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.sb-home-panel {
    background: var(--sb-blue-dark);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 28px 64px rgba(4, 28, 45, .28);
    padding: 28px 24px 24px;
    overflow: hidden;
}
.sb-home-orange-band__curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    line-height: 0;
}
.sb-home-orange-band__curve svg {
    display: block;
    width: 100%;
    height: 100%;
}
.sb-home-panel__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}
.sb-home-panel__grid li {
    flex: 1 1 calc(50% - 8px);
    min-width: min(100%, 220px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .95);
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.45;
}
.sb-home-panel__mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(250, 166, 26, .28);
    color: #ffd27a;
    font-size: .72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.sb-home-panel__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18) 15%, rgba(255, 255, 255, .18) 85%, transparent);
    margin: 24px 0 22px;
}
.sb-home-panel__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .sb-home-panel {
        padding: 32px 32px 28px;
    }
    .sb-home-panel__cta {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .sb-home-panel__grid li {
        font-size: .92rem;
        padding: 15px 18px;
    }
}
.sb-home-panel__block {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sb-home-panel__label {
    margin: 0 0 6px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .55);
}
.sb-home-panel__heading {
    margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.sb-home-panel__hint {
    margin: 0 0 16px;
    font-size: .86rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
    flex: 1;
}
.sb-home-panel__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.sb-home-panel__link {
    flex: 1 1 calc(50% - 4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.sb-home-panel__link:hover { background: rgba(255, 255, 255, .14); }
.sb-home-panel__link--solo {
    flex: 1 1 100%;
    margin-top: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
}
.sb-home-panel__link--solo:hover { background: rgba(255, 255, 255, .06); }

/* legacy */
.sb-home-panel-wrap {
    position: relative;
    z-index: 4;
    margin-top: -48px;
    padding: 0 24px 36px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.sb-home-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .sb-home-cta-grid { grid-template-columns: repeat(2, 1fr); }
}
.sb-home-cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow);
}
.sb-home-cta-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.sb-home-cta-card__head h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sb-blue-dark);
}
.sb-home-cta-card__head p {
    margin: 4px 0 0;
    font-size: .84rem;
    color: var(--sb-muted);
}
.sb-home-cta-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
}
.sb-home-cta-card__icon--blue {
    background: rgba(4, 28, 45, .08);
    color: var(--sb-blue-dark);
}
.sb-home-cta-card__icon--green {
    background: rgba(250, 166, 26, .15);
    color: #c87d00;
}
.sb-home-cta-card__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}
.sb-home-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid var(--sb-border);
    background: #f8fafc;
    color: var(--sb-blue-dark);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.sb-home-cta-link:hover { background: #eef4fb; }
.sb-home-cta-link--center {
    display: flex;
    margin-top: 12px;
    width: 100%;
}

@media (max-width: 899px) {
    .sb-hero--home {
        min-height: auto;
        padding: 96px 0 84px;
    }
    .sb-hero__duo-blue {
        right: 0;
        bottom: 40%;
    }
    .sb-hero__duo-orange {
        top: 60%;
        left: 0;
    }
    .sb-hero__duo-curve--desk { display: none; }
    .sb-hero__duo-curve--mob {
        display: block;
        left: 0;
        right: 0;
        top: 60%;
        width: 100%;
        height: 10%;
        transform: translateY(-50%);
    }
    .sb-hero__inner--home {
        min-height: auto;
        gap: 20px;
    }
    .sb-hero--home .sb-hero__text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .sb-hero--home .sb-hero__title--home {
        font-size: clamp(1.5rem, 5.8vw, 1.95rem);
    }
    .sb-hero--home .sb-hero__sub--hook {
        font-size: .92rem;
        line-height: 1.68;
    }
    .sb-hero--home .sb-hero__actions--home {
        width: 100%;
        flex-direction: column;
    }
    .sb-hero--home .sb-hero__actions--home .sb-btn {
        width: 100%;
    }
    .sb-hero__visual--home {
        min-height: auto;
        padding-top: 8px;
    }
    .sb-hero--home .sb-hero__frame {
        width: min(88vw, 380px);
        margin: 0 auto;
    }
    .sb-hero__scroll {
        align-self: center;
        margin-top: 4px;
    }
    .sb-home-orange-band {
        padding: 32px 0 80px;
    }
    .sb-home-orange-band__inner {
        padding: 0 16px;
    }
    .sb-home-panel__grid li {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .sb-hero--home {
        padding: 88px 0 76px;
    }
    .sb-hero--home .sb-hero__inner {
        padding: 0 20px;
    }
    .sb-hero--home .sb-hero__title--home {
        font-size: 1.38rem;
    }
    .sb-home-panel {
        padding: 22px 18px 20px;
        border-radius: 18px;
    }
    .sb-home-orange-band {
        padding: 28px 0 72px;
    }
}

.sb-section {
    padding: 72px 0;
}
.sb-section--gray { background: #f8fafc; }
.sb-section__intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.sb-section__intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--sb-blue-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.sb-section__intro p {
    color: var(--sb-muted);
    font-size: 1.05rem;
    margin: 0;
}

/* ── FEATURE CARDS ── */
.sb-grid {
    display: grid;
    gap: 24px;
}
.sb-grid--2 { grid-template-columns: 1fr; }
.sb-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .sb-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .sb-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.sb-feature-card {
    background: white;
    border: 1px solid var(--sb-border);
    border-radius: 20px;
    padding: 28px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    height: 100%;
}
.sb-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sb-shadow);
    border-color: rgba(250, 166, 26, .25);
}
.sb-feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sb-orange-soft);
    color: var(--sb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.sb-feature-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sb-blue-dark);
    margin: 0 0 10px;
}
.sb-feature-card__desc {
    color: var(--sb-muted);
    font-size: .92rem;
    margin: 0 0 16px;
    line-height: 1.55;
}
.sb-feature-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sb-feature-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .85rem;
    color: var(--sb-text);
    margin-bottom: 8px;
}
.sb-feature-card__list li i {
    color: var(--sb-orange);
    margin-top: 3px;
    font-size: .7rem;
}

/* Feature row (horizontal layout) */
.sb-feature-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--sb-border);
    border-radius: 20px;
    padding: 28px;
    transition: box-shadow .25s;
}
.sb-feature-row:hover { box-shadow: var(--sb-shadow); }
.sb-feature-row__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sb-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.sb-feature-row__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sb-blue-dark);
    margin: 0 0 8px;
}
.sb-feature-row__desc {
    color: var(--sb-muted);
    font-size: .92rem;
    margin: 0 0 12px;
}
.sb-feature-row__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sb-feature-row__list li {
    font-size: .85rem;
    color: var(--sb-text);
    margin-bottom: 6px;
}
.sb-feature-row__list li i { color: var(--sb-orange); margin-right: 6px; font-size: .7rem; }

/* ── HIGHLIGHT BOX ── */
.sb-highlight {
    background: var(--sb-blue-dark);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    color: white;
    margin-top: 48px;
}
.sb-highlight i.sb-highlight__icon {
    font-size: 3rem;
    color: var(--sb-orange);
    margin-bottom: 16px;
}
.sb-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.sb-highlight p {
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin: 0 auto 24px;
    font-size: 1rem;
}
.sb-highlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── CTA BAND ── */
.sb-cta {
    background: var(--sb-blue-dark);
    padding: 72px 24px;
    text-align: center;
}
.sb-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: white;
    margin: 0 0 14px;
}
.sb-cta p {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 28px;
}
.sb-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── FOOTER ── */
.sb-footer {
    background: var(--sb-blue-dark);
    color: rgba(255,255,255,.82);
    padding: 56px 0 28px;
}
.sb-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .sb-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.sb-footer__brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
}
.sb-footer__brand p { font-size: .88rem; line-height: 1.6; opacity: .8; }
.sb-footer h4 {
    color: var(--sb-orange);
    font-size: .95rem;
    font-weight: 700;
    margin: 0 0 16px;
}
.sb-footer ul { list-style: none; margin: 0; padding: 0; }
.sb-footer li { margin-bottom: 10px; }
.sb-footer a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}
.sb-footer a:hover { color: var(--sb-orange); }
.sb-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 24px;
    text-align: center;
    font-size: .8rem;
    opacity: .55;
}

@media (max-width: 899px) {
    .sb-hero { padding: 100px 0 90px; }
    .sb-hero__blob {
        right: -18%;
        top: 68%;
        width: min(72vw, 420px);
        height: min(72vw, 420px);
        opacity: .95;
    }
    .sb-hero__visual {
        min-height: 280px;
        padding-top: 8px;
    }
    .sb-hero__frame {
        width: min(78vw, 300px);
        border-radius: 28px;
        transform: none;
    }
    .sb-feature-row { flex-direction: column; }
    .sb-form-wrap { margin-top: -50px; }
}

/* ── AUTH / FORM PAGES (webinaire style) ── */
.sb-hero--auth {
    min-height: 420px;
    padding: 100px 0 120px;
}
.sb-hero--auth .sb-hero__frame {
    width: min(100%, 300px);
}
.sb-hero--auth .sb-hero__person {
    object-position: center 15%;
}
.sb-form-wrap {
    position: relative;
    z-index: 10;
    margin-top: -70px;
    padding-bottom: 80px;
}
.sb-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(11, 43, 79, .12);
    padding: 40px 44px 44px;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid var(--sb-border);
}
.sb-form-card--wide { max-width: 920px; }
@media (max-width: 640px) {
    .sb-form-card { padding: 28px 20px 32px; margin: 0 16px; }
}
.sb-form-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sb-blue);
    text-align: center;
    margin: 0 0 20px;
}
.sb-info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    background: var(--sb-orange-soft);
    border: 1px solid rgba(250, 166, 26, .2);
    border-radius: 14px;
    padding: 16px 24px;
    margin-bottom: 28px;
}
.sb-info-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--sb-text);
}
.sb-info-bar__item i { color: var(--sb-orange); width: 20px; text-align: center; }
.sb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sb-full { grid-column: 1 / -1; }
@media (max-width: 640px) {
    .sb-form-grid { grid-template-columns: 1fr; }
}
.sb-field label, .sb-label-block {
    display: block;
    font-weight: 600;
    font-size: .82rem;
    margin-bottom: 7px;
    color: var(--sb-text);
}
.sb-req { color: var(--sb-orange); }
.sb-input, .sb-select, .sb-textarea,
.sb-form-card input:not([type="file"]):not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
.sb-form-card select,
.sb-form-card textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde4ee;
    border-radius: 12px;
    font-family: inherit;
    font-size: .92rem;
    background: #fafbfd;
    transition: border-color .2s, box-shadow .2s;
}
.sb-input:focus, .sb-select:focus, .sb-textarea:focus,
.sb-form-card input:not([type="file"]):not([type="radio"]):not([type="checkbox"]):focus,
.sb-form-card select:focus,
.sb-form-card textarea:focus {
    outline: none;
    border-color: var(--sb-orange);
    box-shadow: 0 0 0 3px rgba(250, 166, 26, .12);
    background: white;
}
.sb-textarea, .sb-form-card textarea { min-height: 88px; resize: vertical; }
.sb-error { color: #dc2626; font-size: .75rem; margin-top: 4px; }
.sb-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: .88rem;
}
.sb-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: .88rem;
}
.sb-btn-submit {
    margin-top: 24px;
    padding: 16px 24px;
    background: var(--sb-orange);
    color: white;
    border: none;
    border-radius: 60px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(250, 166, 26, .35);
    transition: transform .2s, box-shadow .2s, background .2s;
    text-decoration: none;
}
.sb-form .sb-btn-submit,
.sb-form-card .sb-btn-submit,
.sb-modal__dialog .sb-btn-submit,
.sb-confirm__actions .sb-btn-submit,
.sb-modal__actions .sb-btn-submit {
    width: 100%;
}
.sb-btn-submit:hover {
    background: #e09000;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(250, 166, 26, .4);
}
.sb-form-note {
    text-align: center;
    font-size: .75rem;
    color: var(--sb-muted);
    margin-top: 16px;
}
.sb-form-links {
    text-align: center;
    margin-top: 20px;
    font-size: .88rem;
    color: var(--sb-muted);
}
.sb-form-links a {
    color: var(--sb-blue);
    font-weight: 600;
    text-decoration: none;
}
.sb-form-links a:hover { color: var(--sb-orange); }
.sb-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 140px;
    border: 2px dashed #dde4ee;
    border-radius: 14px;
    background: #fafbfd;
    cursor: pointer;
    padding: 20px;
    text-align: center;
    transition: border-color .2s, background .2s;
}
.sb-file-upload:hover { border-color: var(--sb-orange); background: var(--sb-orange-soft); }
.sb-file-upload i { font-size: 2rem; color: var(--sb-orange); margin-bottom: 8px; }
.sb-file-upload p { font-size: .85rem; color: var(--sb-muted); margin: 0; }
.sb-file-upload input[type="file"] { display: none; }
.sb-file-name { font-size: .82rem; color: var(--sb-text); margin-top: 8px; }
.sb-toast-stack {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 999;
    max-width: 320px;
}
.sb-toast {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    margin-bottom: 8px;
    border-left: 4px solid var(--sb-orange);
    font-size: .88rem;
}
.sb-footer--compact {
    text-align: center;
    padding: 48px 0 28px;
    font-size: .85rem;
    background: var(--sb-blue-dark);
    color: rgba(255,255,255,.82);
}
.sb-footer--compact a { color: var(--sb-orange); text-decoration: none; }
.sb-footer--compact a:hover { text-decoration: underline; }
.sb-footer__tagline { opacity: .75; margin-bottom: 16px; }
.sb-footer__copy { margin-top: 20px; opacity: .55; }
.sb-form-card .sb-field { margin-bottom: 0; }
.sb-form-card .sb-field + .sb-field { margin-top: 0; }
.sb-form-card form > .sb-field:not(:last-child) { margin-bottom: 18px; }
.sb-help-text { font-size: .75rem; color: var(--sb-muted); margin: 4px 0 8px; }

/* ── Radio buttons ── */
.sb-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.sb-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--sb-text);
    cursor: pointer;
}
.sb-radio {
    width: 18px;
    height: 18px;
    accent-color: var(--sb-orange);
    flex-shrink: 0;
}
.sb-input-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1) !important;
}
.sb-btn-submit:disabled,
.sb-btn-submit.is-loading {
    opacity: .75;
    cursor: wait;
    transform: none;
}

/* ── Mobile nav ── */
.sb-nav__mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px 20px;
    background: var(--sb-blue-dark);
    border-top: 1px solid rgba(255,255,255,.08);
}
.sb-nav__mobile:not([hidden]) { display: flex; }
.sb-nav__mobile a {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 500;
}
.sb-nav__mobile a:hover { background: rgba(255,255,255,.08); color: white; }
.sb-nav__mobile-cta {
    margin-top: 8px;
    text-align: center;
    background: var(--sb-orange) !important;
    color: white !important;
    font-weight: 700 !important;
}
@media (max-width: 899px) {
    .sb-nav__links { display: none !important; }
    .sb-nav__cta { display: none; }
    .sb-nav__burger { display: flex; }
}

/* ── Modal ── */
body.sb-modal-open { overflow: hidden; }
.sb-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}
.sb-modal.is-open {
    display: flex;
    pointer-events: auto;
}
.sb-modal:not(.is-open) .sb-modal__dialog,
.sb-modal:not(.is-open) .sb-modal__backdrop {
    visibility: hidden;
}
.sb-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 28, 45, .65);
    backdrop-filter: blur(4px);
}
.sb-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    max-height: min(90vh, 640px);
    overflow-y: auto;
    background: white;
    border-radius: 20px;
    padding: 36px 28px 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
    text-align: center;
    animation: sb-modal-in .28s ease;
}
@keyframes sb-modal-in {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.sb-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--sb-muted);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: background .2s, color .2s;
    z-index: 2;
}
.sb-modal.is-open .sb-modal__close { display: flex; }
.sb-modal.is-loading .sb-modal__close { display: none !important; }
.sb-modal__close:hover {
    background: #e2e8f0;
    color: var(--sb-text);
}
.sb-modal__panel[hidden] { display: none; }
.sb-modal__spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border: 4px solid #eef2f7;
    border-top-color: var(--sb-orange);
    border-radius: 50%;
    animation: sb-spin .8s linear infinite;
}
@keyframes sb-spin { to { transform: rotate(360deg); } }
.sb-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.sb-modal__icon--success { background: #dcfce7; color: #15803d; }
.sb-modal__icon--error { background: #fef2f2; color: #dc2626; }
.sb-modal__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sb-blue-dark);
    margin: 0 0 10px;
}
.sb-modal__text {
    color: var(--sb-muted);
    font-size: .92rem;
    line-height: 1.55;
    margin: 0 0 18px;
}
.sb-modal__recap {
    background: #f8fafc;
    border: 1px solid var(--sb-border);
    border-radius: 14px;
    padding: 16px;
    text-align: left;
    font-size: .88rem;
    color: var(--sb-text);
    margin-bottom: 20px;
}
.sb-modal__recap p { margin: 0 0 6px; }
.sb-modal__recap-date {
    margin-top: 10px !important;
    color: var(--sb-orange);
    font-weight: 600;
}
.sb-modal__btn { margin-top: 4px; }
.sb-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* ── Confirmation hero + card ── */
.sb-hero--confirm {
    min-height: 280px;
    padding: 120px 0 100px;
}
.sb-hero__inner--center {
    justify-content: center;
    text-align: center;
}
.sb-hero__inner--center .sb-hero__text {
    max-width: 640px;
    margin: 0 auto;
}
.sb-form-wrap--confirm {
    margin-top: -70px;
    padding-bottom: 80px;
}
.sb-form-card--confirm {
    max-width: 520px;
    text-align: center;
}
.sb-form-card--confirm .sb-form-card__title {
    margin-bottom: 12px;
}

/* ── Confirmation / unavailable pages ── */
.sb-page-confirm .sb-confirm,
.sb-page-unavailable .sb-unavailable {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}
.sb-confirm__card,
.sb-unavailable__card {
    width: min(100%, 520px);
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 20px 50px rgba(11, 43, 79, .1);
    text-align: center;
    border: 1px solid var(--sb-border);
}
.sb-confirm__icon,
.sb-unavailable__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.sb-confirm__icon { background: #dcfce7; color: #15803d; }
.sb-unavailable__icon { background: #fef3c7; color: #b45309; }
.sb-confirm__title,
.sb-unavailable__card h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 4vw, 1.85rem);
    color: var(--sb-blue-dark);
    margin: 0 0 12px;
}
.sb-confirm__lead,
.sb-unavailable__card p {
    color: var(--sb-muted);
    line-height: 1.6;
    margin: 0 0 24px;
    font-size: .95rem;
}
.sb-confirm__recap {
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px 18px;
    text-align: left;
    margin-bottom: 24px;
    font-size: .9rem;
}
.sb-confirm__date {
    margin-top: 10px;
    color: var(--sb-orange);
    font-weight: 600;
}
.sb-confirm__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 8px;
}
.sb-confirm__btn,
.sb-unavailable__btn { margin-top: 0; }
.sb-confirm__link {
    color: var(--sb-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: .88rem;
}
.sb-confirm__link:link,
.sb-confirm__link:visited {
    color: var(--sb-blue);
}
.sb-confirm__link:hover { color: var(--sb-orange); }

/* ── ACCUEIL : ATOUTS & RÔLES (cartes visuelles) ── */
.sb-home-atouts {
    background: #fff;
    padding: 64px 0 56px;
}
.sb-home-atouts__head {
    margin-bottom: 32px;
}
.sb-home-atouts__head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
}
.sb-home-atouts__eyebrow,
.sb-home-roles__eyebrow {
    margin: 0 0 8px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sb-orange);
}
.sb-home-atouts__title,
.sb-home-roles__title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--sb-blue-dark);
    line-height: 1.18;
    letter-spacing: -0.02em;
    max-width: 640px;
}
.sb-home-atouts__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-blue-dark);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s, gap .2s;
}
.sb-home-atouts__link:hover {
    color: var(--sb-orange);
    gap: 12px;
}
.sb-home-roles {
    background: var(--sb-blue-dark);
    padding: 64px 0 72px;
}
.sb-home-roles__head {
    margin-bottom: 32px;
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.sb-home-roles__title {
    color: #fff;
}
.sb-home-roles__lead {
    margin: 10px 0 0;
    font-size: .95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .72);
    font-weight: 500;
}
.sb-home-roles__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.sb-home-roles__chip {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.sb-home-roles__chip:hover {
    background: rgba(250, 166, 26, .2);
    border-color: rgba(250, 166, 26, .45);
    color: #fff;
}

.sb-vis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .sb-vis-grid--3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}
.sb-vis-card {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 48px rgba(4, 28, 45, .18);
    text-decoration: none;
    color: #fff;
}
.sb-vis-card--link {
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}
.sb-vis-card--link:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(4, 28, 45, .28);
}
.sb-vis-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.sb-vis-card:hover .sb-vis-card__img {
    transform: scale(1.06);
}
.sb-vis-card__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sb-vis-card__shade--blue {
    background: linear-gradient(to top, rgba(4, 28, 45, .94) 0%, rgba(4, 28, 45, .45) 45%, transparent 72%);
}
.sb-vis-card__shade--green {
    background: linear-gradient(to top, rgba(4, 28, 45, .9) 0%, rgba(0, 105, 180, .25) 50%, transparent 75%);
}
.sb-vis-card__shade--warm {
    background: linear-gradient(to top, rgba(4, 28, 45, .92) 0%, rgba(250, 166, 26, .22) 48%, transparent 78%);
}
.sb-vis-card__body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 24px 22px 26px;
}
.sb-vis-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--sb-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}
.sb-vis-card__icon--orange {
    background: var(--sb-orange);
    color: var(--sb-blue-dark);
}
.sb-vis-card__tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(250, 166, 26, .9);
    color: var(--sb-blue-dark);
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.sb-vis-card__title {
    margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}
.sb-vis-card__text {
    margin: 0;
    font-size: .88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    max-width: 28ch;
}
.sb-vis-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--sb-orange);
}
.sb-vis-card--link:hover .sb-vis-card__cta {
    gap: 10px;
}

@media (max-width: 767px) {
    .sb-home-atouts,
    .sb-home-roles {
        padding: 48px 0;
    }
    .sb-vis-card {
        aspect-ratio: 3 / 4;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .sb-form-wrap {
        margin-top: -36px;
        padding: 0 0 60px;
    }
    .sb-form-wrap--confirm {
        margin-top: -40px;
        padding: 0 16px 60px;
    }
    .sb-hero--confirm {
        min-height: 220px;
        padding: 100px 0 80px;
    }
    .sb-form-card--wide { margin-left: 12px; margin-right: 12px; }
    .sb-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }
    .sb-hero__title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .sb-modal__dialog { padding: 24px 18px; }
}
