﻿:root {
    --smx-blue: #1B3A6B;
    --smx-blue-dark: #122a52;
    --smx-blue-mid: #2E5CA8;
    --smx-blue-lt: #EEF2F8;
    --smx-green: #2E8B4A;
    --smx-orange: #E8650A;
    --smx-border: #E0E0E0;
    --smx-light: #F6F6F4;
    --smx-muted: #777;
    --smx-dark: #1C1C1C;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ── NAV ── */
.site-nav {
    border-bottom: 3px solid var(--smx-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    z-index: 1000;
}

    .site-nav .nav-link {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .8px;
        color: #333;
        padding: 8px 6px;
        transition: color .15s;
    }

        .site-nav .nav-link:hover {
            color: var(--smx-blue);
        }

.nav-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--smx-blue);
    text-decoration: none;
    white-space: nowrap;
}


/* ── SHARED ── */
.oswald {
    font-family: 'Oswald', sans-serif;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--smx-blue);
}

.eyebrow-white {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7EB3FF;
}

.section-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--smx-dark);
    line-height: 1.1;
    text-transform: uppercase;
}

.accent-bar {
    width: 44px;
    height: 4px;
    background: var(--smx-blue);
}

.accent-bar-white {
    width: 44px;
    height: 4px;
    background: #7EB3FF;
}

.accent-bar-orange {
    width: 44px;
    height: 4px;
    background: var(--smx-orange);
}

/* ── BUTTONS ── */
.btn-smx {
    background: var(--smx-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 14px 32px;
    border: none;
    display: inline-block;
    transition: background .2s;
}

    .btn-smx:hover {
        background: var(--smx-blue-dark);
        color: #fff;
    }

.btn-smx-outline {
    border: 2px solid var(--smx-blue);
    color: var(--smx-blue);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 12px 30px;
    display: inline-block;
    transition: all .2s;
}

    .btn-smx-outline:hover {
        background: var(--smx-blue);
        color: #fff;
    }

.btn-dark-outline {
    border: 2px solid var(--smx-dark);
    color: var(--smx-dark);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 12px 30px;
    display: inline-block;
    transition: all .2s;
}

    .btn-dark-outline:hover {
        background: var(--smx-dark);
        color: #fff;
    }

.btn-white {
    background: #fff;
    color: var(--smx-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 14px 32px;
    display: inline-block;
    transition: background .2s;
}

    .btn-white:hover {
        background: #eee;
        color: var(--smx-blue);
    }

.btn-outline-white {
    border: 2px solid rgba(255,255,255,.6);
    color: #fff;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 12px 28px;
    display: inline-block;
    transition: all .2s;
}

    .btn-outline-white:hover {
        border-color: #fff;
        background: rgba(255,255,255,.12);
        color: #fff;
    }

.btn-orange {
    background: var(--smx-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    padding: 14px 32px;
    display: inline-block;
    transition: background .2s;
}

    .btn-orange:hover {
        background: #f5b535;
        color: #fff;
    }


/* ── STATS BANNER ── */
.stats-banner {
    background: var(--smx-dark);
    border-bottom: 3px solid var(--smx-blue);
}

.stats-banner-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.stats-banner-item {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,.07);
    position: relative;
    transition: background .2s;
    max-width: 280px;
}

    .stats-banner-item:last-child {
        border-right: none;
    }

    .stats-banner-item:hover {
        background: rgba(255,255,255,.03);
    }

.stats-banner-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

    .stats-banner-num span {
        color: var(--smx-orange);
    }

.stats-banner-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.45);
    margin-top: 6px;
    line-height: 1.4;
}

.stats-banner-divider {
    width: 1px;
    background: rgba(255,255,255,.07);
    align-self: stretch;
}

/* ── HERO FULL WIDTH ── */
.hero-full {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--smx-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(105deg, rgba(18,42,82,.97) 0%, rgba(27,58,107,.85) 45%, rgba(0,0,0,.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title-xl {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: .92;
    letter-spacing: -1px;
}

    .hero-title-xl em {
        color: #7EB3FF;
        font-style: normal;
        display: block;
    }

    .hero-title-xl span {
        color: var(--smx-orange);
    }

.hero-sub-xl {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    max-width: 520px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

    .hero-trust-item::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #7EB3FF;
        flex-shrink: 0;
    }

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--smx-blue-dark);
}

.stat-item {
    text-align: center;
    padding: 20px 8px;
    border-right: 1px solid rgba(255,255,255,.08);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #7EB3FF;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.4);
    margin-top: 4px;
}

/* ── SPIRIT FEATURE ── */
.spirit-section {
    background: var(--smx-light);
}

.spirit-badge {
    background: var(--smx-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.spirit-price {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--smx-blue);
    line-height: 1;
}

.spirit-price-label {
    font-size: 13px;
    color: var(--smx-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.spirit-spec-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--smx-border);
    font-size: 13px;
}

    .spirit-spec-row:last-child {
        border-bottom: none;
    }

.spirit-spec-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--smx-blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .spirit-spec-icon svg {
        width: 14px;
        height: 14px;
        stroke: var(--smx-blue);
        fill: none;
        stroke-width: 2;
    }

.spirit-spec-label {
    color: var(--smx-muted);
    flex: 1;
}

.spirit-spec-val {
    font-weight: 700;
    color: var(--smx-dark);
}

.spirit-img-wrap {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

    .spirit-img-wrap img {
        width: 100%;
        display: block;
    }

.spirit-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27,58,107,.9), transparent);
    padding: 24px 20px 16px;
}

.spirit-img-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

/* ── GAMME CARDS ── */
.gamme-card {
    border: 1px solid var(--smx-border);
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .gamme-card:hover {
        box-shadow: 0 12px 40px rgba(0,0,0,.1);
        transform: translateY(-4px);
    }

.gamme-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--smx-light);
    position: relative;
}

    .gamme-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

.gamme-card:hover .gamme-card-img img {
    transform: scale(1.05);
}

.gamme-series-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--smx-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
}

.gamme-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gamme-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--smx-dark);
    margin-bottom: 2px;
}

.gamme-size {
    font-size: 12px;
    color: var(--smx-muted);
    margin-bottom: 10px;
}

.gamme-desc {
    font-size: 12px;
    color: var(--smx-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.gamme-price {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--smx-blue);
}

.gamme-price-label {
    font-size: 10px;
    color: var(--smx-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.gamme-cta {
    background: var(--smx-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: 2px;
    padding: 10px 16px;
    text-align: center;
    display: block;
    transition: background .2s;
}

    .gamme-cta:hover {
        background: var(--smx-blue-dark);
        color: #fff;
    }

/* ── TRUST ICONS ── */
.trust-icon-card {
    text-align: center;
    padding: 28px 16px;
}

.trust-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--smx-blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

    .trust-icon-wrap svg {
        width: 26px;
        height: 26px;
        stroke: var(--smx-blue);
        fill: none;
        stroke-width: 1.6;
    }

.trust-icon-title {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--smx-dark);
    margin-bottom: 8px;
}

.trust-icon-text {
    font-size: 13px;
    color: var(--smx-muted);
    line-height: 1.65;
}

/* ── VIDEO ── */
.video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--smx-dark);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.video-wrap:hover .video-overlay {
    background: rgba(0,0,0,.28);
}

.video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--smx-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
}

.video-wrap:hover .video-play {
    transform: scale(1.1);
}

.video-play svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 4px;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ── CLIENTS LOGOS ── */
.client-logo-wrap {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--smx-border);
    border-bottom: 1px solid var(--smx-border);
}

    .client-logo-wrap img {
        max-height: 40px;
        max-width: 120px;
        width: auto;
        filter: grayscale(100%);
        opacity: .45;
        transition: filter .2s, opacity .2s;
    }

    .client-logo-wrap:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--smx-border);
    border-radius: 2px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
    border-top: 3px solid var(--smx-blue);
}

    .testimonial-card:hover {
        box-shadow: 0 8px 28px rgba(0,0,0,.08);
    }

.testimonial-quote {
    font-family: Georgia, serif;
    font-size: 56px;
    color: var(--smx-blue-lt);
    line-height: 1;
    margin-bottom: -8px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    width: 14px;
    height: 14px;
    background: #F5A623;
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--smx-border);
    padding-top: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--smx-blue);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--smx-dark);
    margin-bottom: 2px;
}

.author-info {
    font-size: 11px;
    color: var(--smx-muted);
}

.author-machine {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--smx-blue-lt);
    color: var(--smx-blue);
    padding: 2px 8px;
    border-radius: 2px;
    margin-top: 4px;
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--smx-blue);
}

.cta-strip-dark {
    background: var(--smx-dark);
}

/* ── PARTNERS ── */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    filter: grayscale(100%);
    opacity: .5;
    transition: all .2s;
}

    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    .partner-logo img {
        max-height: 34px;
        width: auto;
    }

/* ── FOOTER ── */
.site-footer {
    background: #111;
}

    .site-footer a {
        color: #7EB3FF;
    }

        .site-footer a:hover {
            color: #fff;
        }

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 14px;
}

.footer-link {
    font-size: 13px;
    color: #555;
    display: block;
    padding: 4px 0;
    transition: color .15s;
}

    .footer-link:hover {
        color: #fff;
    }

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}
