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

.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 {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.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-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);
}

.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-menu {
        display: none;
    }

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

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

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

    .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;
    }
}
