/* Sahl Syndic landing — light mode, brand blue #0C5FC6 */
:root {
    --ssl-primary: #0c5fc6;
    --ssl-primary-dark: #094a9a;
    --ssl-primary-muted: #e8f1fc;
    --ssl-bg: #ffffff;
    --ssl-surface: #f4f7fb;
    --ssl-border: #e2e8f0;
    --ssl-text: #0f172a;
    --ssl-muted: #64748b;
    --ssl-warm: #b45309;
    --ssl-warm-bg: #fffbeb;
    --ssl-warm-border: #fde68a;
    --ssl-gold: #c9a227;
    --ssl-radius: 16px;
    --ssl-radius-lg: 24px;
    --ssl-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --ssl-header-h: 68px;
    --ssl-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --ssl-shadow-lg: 0 12px 40px rgba(12, 95, 198, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body.ssl-body {
    margin: 0;
    font-family: var(--ssl-font);
    background: var(--ssl-bg);
    color: var(--ssl-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.ssl-preloading {
    overflow: hidden;
    height: 100vh;
}

body.ssl-preloading .ssl-site-header,
body.ssl-preloading #ssl-main,
body.ssl-preloading .ssl-site-footer {
    visibility: hidden;
}

/* 3D preloader */
.ssl-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ssl-bg);
    overflow: hidden;
}

.ssl-preloader__glow {
    position: absolute;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 95, 198, 0.18) 0%, transparent 68%);
    animation: sslPreloaderGlow 3s ease-in-out infinite;
}

@keyframes sslPreloaderGlow {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.ssl-preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.ssl-preloader__scene {
    width: 140px;
    height: 140px;
    perspective: 900px;
    perspective-origin: 50% 50%;
}

.ssl-preloader__cube-wrap {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.ssl-preloader__cube {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 34px auto;
    transform-style: preserve-3d;
}

.ssl-preloader__face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    backface-visibility: hidden;
    border: 1px solid rgba(12, 95, 198, 0.2);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.35);
}

.ssl-preloader__face--front {
    background: linear-gradient(145deg, #fff 0%, var(--ssl-primary-muted) 100%);
    transform: translateZ(36px);
}

.ssl-preloader__face--front img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.ssl-preloader__face--back {
    background: linear-gradient(145deg, var(--ssl-primary) 0%, var(--ssl-primary-dark) 100%);
    color: #fff;
    transform: rotateY(180deg) translateZ(36px);
}

.ssl-preloader__face--right {
    background: linear-gradient(160deg, #3b82f6 0%, var(--ssl-primary) 100%);
    color: #fff;
    transform: rotateY(90deg) translateZ(36px);
}

.ssl-preloader__face--left {
    background: linear-gradient(160deg, var(--ssl-primary-muted) 0%, #fff 100%);
    color: var(--ssl-primary);
    transform: rotateY(-90deg) translateZ(36px);
}

.ssl-preloader__face--top {
    background: linear-gradient(180deg, #fff 0%, var(--ssl-primary-muted) 100%);
    color: var(--ssl-primary);
    transform: rotateX(90deg) translateZ(36px);
}

.ssl-preloader__face--bottom {
    background: linear-gradient(180deg, var(--ssl-primary-dark) 0%, var(--ssl-primary) 100%);
    color: #fff;
    transform: rotateX(-90deg) translateZ(36px);
}

.ssl-preloader__face span {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.ssl-preloader__orbit {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: sslOrbitSpin 6s linear infinite;
}

.ssl-preloader__orbit span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: var(--ssl-primary);
    box-shadow: 0 0 12px rgba(12, 95, 198, 0.55);
}

.ssl-preloader__orbit span:nth-child(1) {
    transform: rotateY(0deg) translateZ(62px);
}

.ssl-preloader__orbit span:nth-child(2) {
    transform: rotateY(120deg) translateZ(62px);
    opacity: 0.7;
}

.ssl-preloader__orbit span:nth-child(3) {
    transform: rotateY(240deg) translateZ(62px);
    opacity: 0.45;
}

@keyframes sslOrbitSpin {
    from {
        transform: rotateX(55deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(55deg) rotateZ(360deg);
    }
}

.ssl-preloader__brand {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ssl-text);
}

.ssl-preloader__brand span {
    color: var(--ssl-primary);
}

.ssl-preloader__progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: min(220px, 70vw);
}

.ssl-preloader__progress-track {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: var(--ssl-border);
    overflow: hidden;
}

.ssl-preloader__progress-bar {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ssl-primary), #3b82f6);
    box-shadow: 0 0 12px rgba(12, 95, 198, 0.45);
}

.ssl-preloader__percent {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ssl-muted);
    font-variant-numeric: tabular-nums;
}

.ssl-preloader.is-exiting {
    pointer-events: none;
}

.ssl-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.8'%3E%3Cpath d='M20 0l4 8 8 4-8 4-4 8-4-8-8-4 8-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.ssl-skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ssl-skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    background: var(--ssl-primary);
    color: #fff;
    z-index: 10000;
    border-radius: 8px;
    text-decoration: none;
}

.ssl-container {
    width: min(1080px, 100% - 40px);
    margin-inline: auto;
}

.ssl-text-accent {
    color: var(--ssl-primary);
}

.ssl-text-warm {
    color: var(--ssl-warm);
}

.ssl-text-gold {
    color: var(--ssl-gold);
}

/* Header */
.ssl-site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--ssl-header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ssl-site-header.is-scrolled {
    border-bottom-color: var(--ssl-border);
    box-shadow: var(--ssl-shadow);
}

.ssl-site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ssl-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ssl-text);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-right: auto;
}

.ssl-brand__img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

.ssl-nav {
    display: none;
    gap: 24px;
}

.ssl-nav a {
    color: var(--ssl-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ssl-nav a:hover {
    color: var(--ssl-primary);
}

.ssl-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
}

.ssl-menu-btn span {
    display: block;
    height: 2px;
    background: var(--ssl-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ssl-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ssl-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.ssl-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
    .ssl-menu-btn {
        display: none;
    }

    .ssl-nav {
        display: flex;
    }

    .ssl-header-cta {
        margin-left: 8px;
    }
}

@media (max-width: 899px) {
    .ssl-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--ssl-header-h);
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px 28px;
        border-bottom: 1px solid var(--ssl-border);
        box-shadow: var(--ssl-shadow);
        gap: 16px;
        z-index: 99;
        animation: sslNavIn 0.3s ease;
    }

    .ssl-header-cta {
        display: none;
    }
}

@keyframes sslNavIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.ssl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ssl-btn--sm {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 12px;
}

.ssl-btn--primary {
    background: var(--ssl-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(12, 95, 198, 0.28);
}

.ssl-btn--primary:hover {
    background: var(--ssl-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12, 95, 198, 0.35);
}

.ssl-btn--outline {
    background: #fff;
    color: var(--ssl-text);
    border-color: var(--ssl-border);
}

.ssl-btn--outline:hover {
    border-color: var(--ssl-primary);
    color: var(--ssl-primary);
}

.ssl-btn--dark {
    background: var(--ssl-text);
    color: #fff;
}

.ssl-btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--ssl-shadow-lg);
}

/* Badge */
.ssl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ssl-primary);
    background: var(--ssl-primary-muted);
    margin: 0 0 20px;
}

.ssl-badge--warm {
    color: var(--ssl-warm);
    background: var(--ssl-warm-bg);
    border: 1px solid var(--ssl-warm-border);
}

.ssl-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ssl-primary);
    animation: sslPulse 2s ease infinite;
}

@keyframes sslPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

/* Hero */
.ssl-hero {
    position: relative;
    padding: calc(var(--ssl-header-h) + 48px) 0 64px;
    overflow: hidden;
}

.ssl-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.ssl-hero__title {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 16px;
    max-width: 640px;
}

.ssl-hero__lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--ssl-muted);
    max-width: 520px;
    margin: 0 0 28px;
    line-height: 1.65;
}

.ssl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.ssl-hero__actions--center {
    justify-content: center;
}

.ssl-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 560px;
    padding-top: 8px;
    border-top: 1px solid var(--ssl-border);
}

.ssl-stat strong {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ssl-text);
}

.ssl-stat span {
    font-size: 0.8rem;
    color: var(--ssl-muted);
}

@media (max-width: 520px) {
    .ssl-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.ssl-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ssl-hero__media {
    display: flex;
    justify-content: center;
    opacity: 0;
}

.ssl-hero-media {
    position: relative;
    width: min(100%, 340px);
}

.ssl-hero-media__frame {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(145deg, #ffffff 0%, var(--ssl-primary-muted) 100%);
    box-shadow:
        0 24px 48px rgba(12, 95, 198, 0.16),
        0 8px 24px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: sslHeroFloat 6s ease-in-out infinite;
}

.ssl-hero-media__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--ssl-border);
}

.ssl-hero-media__glow {
    position: absolute;
    inset: 12% 8% auto;
    height: 40%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 95, 198, 0.22) 0%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

@keyframes sslHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ssl-hero-play {
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.ssl-hero-play__core {
    position: absolute;
    inset: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--ssl-primary) 0%, var(--ssl-primary-dark) 100%);
    box-shadow:
        0 10px 28px rgba(12, 95, 198, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ssl-hero-play__core svg {
    margin-left: 3px;
}

.ssl-hero-play__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(12, 95, 198, 0.35);
    box-shadow:
        0 0 24px rgba(12, 95, 198, 0.35),
        0 0 48px rgba(12, 95, 198, 0.15);
    animation: sslPlayPulse 2.4s ease-out infinite;
}

.ssl-hero-play__pulse--2 {
    animation-delay: 0.55s;
}

.ssl-hero-play__pulse--3 {
    animation-delay: 1.1s;
}

.ssl-hero-play:hover .ssl-hero-play__core,
.ssl-hero-play:focus-visible .ssl-hero-play__core {
    transform: scale(1.06);
    box-shadow:
        0 14px 36px rgba(12, 95, 198, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.ssl-hero-play:focus-visible {
    outline: none;
}

.ssl-hero-play:focus-visible .ssl-hero-play__core {
    outline: 3px solid rgba(12, 95, 198, 0.35);
    outline-offset: 4px;
}

.ssl-hero-play.is-flash .ssl-hero-play__core {
    animation: sslPlayFlash 0.45s ease;
}

@keyframes sslPlayPulse {
    0% {
        transform: scale(0.72);
        opacity: 0.85;
        box-shadow:
            0 0 0 0 rgba(12, 95, 198, 0.45),
            0 0 24px rgba(12, 95, 198, 0.35);
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
        box-shadow:
            0 0 0 18px rgba(12, 95, 198, 0),
            0 0 36px rgba(12, 95, 198, 0);
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes sslPlayFlash {
    0% {
        box-shadow:
            0 10px 28px rgba(12, 95, 198, 0.45),
            0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow:
            0 16px 40px rgba(12, 95, 198, 0.65),
            0 0 0 14px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow:
            0 10px 28px rgba(12, 95, 198, 0.45),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ssl-hero-media__frame {
        animation: none;
    }

    .ssl-hero-play__pulse {
        animation: none;
        opacity: 0.35;
    }
}

@media (max-width: 960px) {
    .ssl-hero__grid {
        grid-template-columns: 1fr;
    }

    .ssl-hero__media {
        order: -1;
    }

    .ssl-hero-media {
        width: min(100%, 280px);
        margin-inline: auto;
    }
}

/* Video modal */
.ssl-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ssl-video-modal[hidden] {
    display: none;
}

.ssl-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ssl-video-modal.is-open .ssl-video-modal__backdrop {
    opacity: 1;
}

.ssl-video-modal__panel {
    position: relative;
    width: min(960px, 100%);
    transform: scale(0.92) translateY(16px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.ssl-video-modal.is-open .ssl-video-modal__panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.ssl-video-modal__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ssl-video-modal__close:hover,
.ssl-video-modal__close:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.05);
}

.ssl-video-modal__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--ssl-radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.ssl-video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 640px) {
    .ssl-video-modal {
        padding: 16px;
    }

    .ssl-video-modal__close {
        top: -44px;
        right: 4px;
    }

    .ssl-hero-play {
        left: 8px;
        width: 64px;
        height: 64px;
    }
}

/* Sections */
.ssl-section {
    padding-block: 72px;
}

.ssl-section__head {
    max-width: 640px;
    margin-bottom: 40px;
}

.ssl-section__head--center {
    text-align: center;
    margin-inline: auto;
}

.ssl-section__head h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 12px;
}

.ssl-section__intro {
    margin: 0;
    color: var(--ssl-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Screens slider */
.ssl-screens {
    background: var(--ssl-surface);
    padding-bottom: 80px;
}

.ssl-screens-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 24px 0 16px;
}

.ssl-screens-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 max(20px, calc((100vw - 1080px) / 2 + 20px));
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.ssl-screen-slide {
    flex: 0 0 auto;
    margin: 0;
    opacity: 0.45;
    transform: scale(0.88);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ssl-screen-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.ssl-screen-slide img {
    display: block;
    width: min(260px, 72vw);
    height: auto;
    border-radius: 28px;
    box-shadow: var(--ssl-shadow-lg);
    border: 3px solid #fff;
    background: #fff;
}

.ssl-screens-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.ssl-screens-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--ssl-border);
    background: #fff;
    color: var(--ssl-text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ssl-screens-btn:hover {
    border-color: var(--ssl-primary);
    color: var(--ssl-primary);
    background: var(--ssl-primary-muted);
}

.ssl-screens-dots {
    display: flex;
    gap: 8px;
}

.ssl-screens-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--ssl-border);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.ssl-screens-dot.is-active {
    background: var(--ssl-primary);
    transform: scale(1.25);
}

/* Problem cards */
.ssl-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin-inline: auto;
}

.ssl-problem-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--ssl-border);
    border-radius: var(--ssl-radius-lg);
    box-shadow: var(--ssl-shadow);
    overflow: hidden;
}

.ssl-problem-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--ssl-warm-bg);
    color: var(--ssl-warm);
    border: 1px solid var(--ssl-warm-border);
}

.ssl-problem-card__body h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.ssl-problem-card__body p {
    margin: 0;
    color: var(--ssl-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Value */
.ssl-value {
    background: linear-gradient(180deg, #fff 0%, var(--ssl-primary-muted) 100%);
}

.ssl-value__inner {
    text-align: center;
    max-width: 640px;
}

.ssl-value__inner h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin: 0 0 16px;
}

.ssl-value__inner>p {
    color: var(--ssl-muted);
    margin: 0 0 28px;
    font-size: 1.05rem;
}

/* Feature cards */
.ssl-features-block__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ssl-features-block__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--ssl-primary);
    color: #fff;
}

.ssl-features-block__label h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.ssl-feature-cards {
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) {
    .ssl-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ssl-feature-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--ssl-border);
    border-radius: var(--ssl-radius);
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.ssl-feature-card:hover {
    border-color: rgba(12, 95, 198, 0.35);
    box-shadow: var(--ssl-shadow);
}

.ssl-feature-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--ssl-surface);
    color: var(--ssl-text);
}

.ssl-feature-card__text h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
}

.ssl-feature-card__text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ssl-muted);
    line-height: 1.5;
}

/* Account cards */
.ssl-account-grid {
    display: grid;
    gap: 20px;
    max-width: 720px;
    margin-inline: auto;
}

@media (min-width: 640px) {
    .ssl-account-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ssl-account-card {
    padding: 28px;
    background: #fff;
    border: 2px solid var(--ssl-primary-muted);
    border-radius: var(--ssl-radius-lg);
    transition: border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.ssl-account-card:hover {
    border-color: var(--ssl-primary);
    box-shadow: var(--ssl-shadow-lg);
}

.ssl-account-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--ssl-primary-muted);
    color: var(--ssl-primary);
    margin-bottom: 16px;
}

.ssl-account-card__icon--resident {
    background: var(--ssl-surface);
    color: var(--ssl-muted);
}

.ssl-account-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.ssl-account-card>p {
    margin: 0 0 16px;
    color: var(--ssl-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.ssl-account-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ssl-account-card__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ssl-text);
}

.ssl-account-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ssl-primary);
}

.ssl-comptes-cta {
    text-align: center;
    margin-top: 32px;
}

/* Contact */
.ssl-contact {
    background: var(--ssl-surface);
}

.ssl-contact__inner {
    text-align: center;
    max-width: 520px;
}

.ssl-contact__inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 12px;
}

.ssl-contact__inner p {
    color: var(--ssl-muted);
    margin: 0 0 24px;
}

/* Footer */
.ssl-site-footer {
    padding: 28px 0 40px;
    border-top: 1px solid var(--ssl-border);
}

.ssl-site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--ssl-muted);
}

.ssl-site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ssl-site-footer__credit {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--ssl-muted);
}

.ssl-site-footer__links {
    display: flex;
    gap: 20px;
}

.ssl-site-footer a {
    color: var(--ssl-primary);
    text-decoration: none;
    font-weight: 500;
}

.ssl-site-footer a:hover {
    text-decoration: underline;
}

/* Animation helpers */
.ssl-anim-in {
    opacity: 0;
    transform: translateY(24px);
}

.ssl-slide-card {
    opacity: 0;
}

.ssl-slide-card .ssl-problem-card__body,
.ssl-slide-card .ssl-feature-card__text,
.ssl-slide-card h3,
.ssl-slide-card>p,
.ssl-slide-card .ssl-account-card__list {
    will-change: transform, opacity;
}

.ssl-reveal {
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ssl-screens-track {
        transition: none;
    }

    .ssl-preloader__orbit,
    .ssl-preloader__glow {
        animation: none;
    }
}