:root {
    --slt-accent: #30b866;
    --slt-max: 1180px;
    --slt-font-ui: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

.slt-page-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.slt-page-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.slt-page-preloader img {
    width: clamp(88px, 18vw, 132px);
    height: auto;
    display: block;
    animation: slt-preloader-pulse 1.15s ease-in-out infinite;
}

@keyframes slt-preloader-pulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(0.96);
    }

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

.slt-shell {
    overflow-x: hidden;
}

.slt-container {
    width: min(var(--slt-max), 100% - 36px);
    margin-inline: auto;
}

.slt-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    font-family: var(--slt-font-ui);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.slt-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.slt-header.is-hidden {
    transform: translateY(-100%);
}

.slt-nav {
    position: relative;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.slt-link-panel {
    display: contents;
}

.slt-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.slt-brand-logo {
    width: 140px;
    height: auto;
    display: block;
    transition: opacity 0.25s ease;
}

/* White mark on hero / dark areas; colour mark on scrolled light bar */
.slt-brand-logo--on-light {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.slt-header.is-scrolled .slt-brand-logo--on-dark {
    opacity: 0;
    pointer-events: none;
}

.slt-header.is-scrolled .slt-brand-logo--on-light {
    opacity: 1;
    pointer-events: auto;
}

.slt-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: #fff;
    font-size: 12px;
}

.slt-header.is-scrolled .slt-menu {
    color: #111827;
}

.slt-btn {
    border: 1px solid var(--slt-accent);
    background: var(--slt-accent);
    color: #fff;
    border-radius: 3px;
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 8px 18px;
    font-weight: 600;
    font-family: inherit;
}

.slt-mobile-toggle {
    display: none;
}

.slt-footer {
    font-family: var(--slt-font-ui);
    background: linear-gradient(180deg, #12151c 0%, #0a0c10 100%);
    color: #b8bcc6;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 0;
}

.slt-footer-wrap {
    padding: 48px 0 28px;
}

.slt-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slt-footer-brand-col {
    max-width: 320px;
}

.slt-footer-brand {
    display: inline-block;
    margin-bottom: 14px;
}

.slt-footer-brand img {
    width: 132px;
    height: auto;
    display: block;
}

.slt-footer-lead {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #8b919c;
    font-weight: 400;
}

.slt-footer-label {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.slt-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.slt-footer-links a {
    color: #e8eaef;
    text-decoration: none;
    transition: color 0.2s ease;
}

.slt-footer-links a:hover {
    color: var(--slt-accent);
}

.slt-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.slt-footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.slt-footer-contact-icon {
    flex-shrink: 0;
    width: 1.25em;
    text-align: center;
    opacity: 0.65;
    font-size: 12px;
}

.slt-footer-contact-list a {
    color: #e8eaef;
    text-decoration: none;
    transition: color 0.2s ease;
}

.slt-footer-contact-list a:hover {
    color: var(--slt-accent);
}

.slt-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    padding-top: 22px;
    font-size: 11px;
    color: #6b7280;
}

.slt-footer-copy,
.slt-footer-note {
    margin: 0;
}

.slt-footer-note {
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.02em;
}

@media (max-width: 980px) {
    .slt-mobile-toggle {
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 3px;
        background: rgba(0, 0, 0, 0.16);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: #fff;
        cursor: pointer;
    }

    .slt-header.is-scrolled .slt-mobile-toggle,
    .slt-nav.is-mobile-menu-open .slt-mobile-toggle {
        border-color: rgba(17, 24, 39, 0.24);
        background: rgba(255, 255, 255, 0.92);
    }

    .slt-mobile-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .slt-header.is-scrolled .slt-mobile-toggle span,
    .slt-nav.is-mobile-menu-open .slt-mobile-toggle span {
        background: #111827;
    }

    .slt-nav.is-mobile-menu-open .slt-mobile-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .slt-nav.is-mobile-menu-open .slt-mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .slt-nav.is-mobile-menu-open .slt-mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .slt-link-panel {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 70;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
    }

    .slt-nav.is-mobile-menu-open .slt-link-panel {
        opacity: 1;
        max-height: 340px;
        pointer-events: auto;
        transform: translateY(0);
    }

    .slt-link-panel .slt-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        color: #111827;
    }

    .slt-link-panel .slt-menu a {
        padding: 12px 10px;
    }

    .slt-link-panel .slt-btn {
        display: inline-flex;
        justify-content: center;
        margin-top: 8px;
    }

    .slt-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slt-footer {
        min-height: 100svh;
        display: flex;
        align-items: center;
    }

    .slt-footer-wrap {
        width: 100%;
        padding: 42px 20px max(32px, env(safe-area-inset-bottom));
    }

    .slt-footer-brand-col {
        max-width: none;
        display: grid;
        justify-items: center;
    }

    .slt-footer-brand {
        margin-inline: auto;
    }

    .slt-footer-lead {
        max-width: 26rem;
        margin-inline: auto;
        text-align: center;
        font-size: 14px;
        line-height: 1.7;
        text-wrap: pretty;
    }

    .slt-footer-links {
        align-items: center;
    }

    .slt-footer-contact-list li {
        justify-content: center;
        text-align: left;
    }

    .slt-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
