﻿.site-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
}

    .site-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.08);
        /*filter: brightness(.55) contrast(1.05) saturate(1.1);*/
    }


.site-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.01);
}

.hero-navbar-wrap {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 0 5%;
    transition: all .35s ease;
}

.hero-navbar {
    width: 100%;
    max-width: 1440px;
    height: 75px;
    margin: auto;
    padding: 10px 12px 10px 14px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    background: linear-gradient( 110deg, rgba(8,20,29,.72), rgba(15,20,29,.48), rgba(36,48,63,.55) );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 20px 60px rgba(0,0,0,.22);
}

.hero-nav-logo {
    flex: 0 0 auto;
    height: 72px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

    .hero-nav-logo img {
        width: auto;
        height: 45px;
        max-width: 155px;
        object-fit: contain;
    }

.hero-nav-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.hero-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .hero-nav-links a {
        position: relative;
        padding: 13px 15px;
        color: rgba(255,255,255,.68);
        font-family: Arial, sans-serif;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        text-decoration: none !important;
        border-radius: 10px;
        transition: .3s ease;
    }

        .hero-nav-links a:hover {
            color: #fff;
            background: rgba(255,255,255,.06);
        }

        .hero-nav-links a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 5px;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            border-radius: 20px;
            background: linear-gradient( 90deg, #8deaff, #a99cff );
            transition: .3s ease;
        }

        .hero-nav-links a:hover::after,
        .hero-nav-links a.active::after {
            width: 24px;
        }

        .hero-nav-links a.active {
            color: #fff;
        }

.hero-login-btn {
    flex: 0 0 auto;
    min-width: 115px;
    height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(141,234,255,.4);
    border-radius: 14px;
    background: linear-gradient( 135deg, rgba(141,234,255,.15), rgba(170,150,255,.10) );
    color: #fff !important;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none !important;
    transition: .35s ease;
}

    .hero-login-btn:hover {
        transform: translateY(-3px);
        background: #8deaff;
        border-color: #8deaff;
        color: #071017 !important;
        box-shadow: 0 12px 35px rgba(141,234,255,.22);
    }

/* IN DESKTOP HAMBURGER HIDE */

.hero-menu-toggle {
    display: none;
}

@media (max-width: 767px) {

    .hero-navbar-wrap {
        top: 10px;
        padding: 0 12px;
    }

    .hero-navbar {
        position: relative;
        height: 68px;
        padding: 8px 10px;
        border-radius: 17px;
    }

    .hero-nav-logo {
        height: 48px;
        padding: 4px 8px;
    }

        .hero-nav-logo img {
            height: 38px;
            max-width: 120px;
        }

    .hero-menu-toggle {
        margin-left: auto;
        width: 46px;
        height: 46px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 13px;
        background: rgba(255,255,255,.06);
        cursor: pointer;
    }

        .hero-menu-toggle span {
            width: 19px;
            height: 2px;
            border-radius: 10px;
            background: #fff;
        }

    .hero-nav-content {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        padding: 12px;
        display: none;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 18px;
        background: rgba(5,10,16,.96);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: 0 25px 60px rgba(0,0,0,.45);
    }

        .hero-nav-content.open {
            display: block;
        }

    .hero-nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

        .hero-nav-links a {
            width: 100%;
            padding: 14px 16px;
        }

            .hero-nav-links a::after {
                display: none;
            }

            .hero-nav-links a:hover,
            .hero-nav-links a.active {
                color: #8deaff;
                background: linear-gradient( 90deg, rgba(141,234,255,.10), transparent );
            }

    .hero-login-btn {
        width: 100%;
        margin-top: 10px;
    }
}



:root {
    --sg-bg: #05070b;
    --sg-white: #ffffff;
    --sg-cyan: #8deaff;
    --sg-blue: #56bfff;
    --sg-purple: #a993ff;
    --sg-glass: rgba(255, 255, 255, 0.08);
    --sg-border: rgba(255, 255, 255, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
   background:transparent;
}

.sg-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 680px;
    overflow: hidden;
    background: #05070b;
    isolation: isolate;
}

.sg-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sg-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.2s ease, visibility 1.2s ease, transform 7s ease;
}

    .sg-hero-slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .sg-hero-slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .sg-hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(2, 5, 10, .94) 0%, rgba(2, 5, 10, .73) 34%, rgba(2, 5, 10, .22) 70%, rgba(2, 5, 10, .38) 100% ), linear-gradient( 180deg, rgba(2, 5, 10, .28) 0%, transparent 45%, rgba(2, 5, 10, .85) 100% );
    }

.sg-hero-aurora {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.sg-aurora-one {
    width: 500px;
    height: 500px;
    left: -220px;
    top: -180px;
    background: rgba(50, 196, 255, .18);
    animation: sgFloatLight 9s ease-in-out infinite alternate;
}

.sg-aurora-two {
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -260px;
    background: rgba(142, 105, 255, .16);
    animation: sgFloatLight 11s ease-in-out infinite alternate-reverse;
}

@keyframes sgFloatLight {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(60px, 35px, 0) scale(1.15);
    }
}

.sg-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .22;
    background-image: linear-gradient( rgba(255,255,255,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.035) 1px, transparent 1px );
    background-size: 80px 80px;
    mask-image: linear-gradient( to right, black, transparent 75% );
    -webkit-mask-image: linear-gradient( to right, black, transparent 75% );
}

.sg-hero-inner {
    position: relative;
    z-index: 10;
    width: calc(100% - 80px);
    max-width: 1450px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
}

.sg-hero-content {
    width: 100%;
    max-width: 760px;
    padding-top: 10px;
}

.sg-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.sg-hero-eyebrow-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sg-cyan);
    box-shadow: 0 0 0 6px rgba(141,234,255,.08), 0 0 20px rgba(141,234,255,.7);
}

.sg-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(55px, 6.4vw, 102px);
    line-height: .94;
    font-weight: 800;
    letter-spacing: -5px;
    text-shadow: 0 15px 45px rgba(0,0,0,.3);
}

.sg-hero-title-gradient {
    display: block;
    color: transparent;
    background: linear-gradient( 90deg, #ffffff 0%, #8deaff 45%, #b8a9ff 100% );
    -webkit-background-clip: text;
    background-clip: text;
}

.sg-hero-description {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 17px;
    line-height: 1.8;
}

    .sg-hero-description strong {
        color: #fff;
        font-weight: 600;
    }

.sg-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.sg-hero-btn {
    position: relative;
    min-height: 56px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 16px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.sg-hero-btn-primary {
    color: #061016 !important;
    border: 1px solid rgba(255,255,255,.55);
    background: linear-gradient( 135deg, #ffffff, #91eaff );
    box-shadow: 0 15px 40px rgba(90,210,255,.18);
}

    .sg-hero-btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 50px rgba(90,210,255,.3);
    }

.sg-hero-btn-glass {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

    .sg-hero-btn-glass:hover {
        color: #fff;
        transform: translateY(-4px);
        border-color: rgba(141,234,255,.45);
        background: rgba(255,255,255,.11);
    }

.sg-hero-stats {
    display: flex;
    gap: 12px;
    margin-top: 42px;
}

.sg-hero-stat {
    position: relative;
    min-width: 180px;
    padding: 18px 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: linear-gradient( 135deg, rgba(255,255,255,.12), rgba(255,255,255,.035) );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 15px 40px rgba(0,0,0,.12);
}

    .sg-hero-stat::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        right: -50px;
        top: -60px;
        border-radius: 50%;
        background: rgba(141,234,255,.2);
        filter: blur(30px);
    }

.sg-hero-stat-number {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

.sg-hero-stat-text {
    position: relative;
    z-index: 2;
    margin-top: 7px;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sg-slider-controls {
    position: absolute;
    z-index: 20;
    right: 45px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sg-slider-arrow {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 15px;
    background: rgba(8,12,18,.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
}

    .sg-slider-arrow:hover {
        color: #071017;
        border-color: var(--sg-cyan);
        background: var(--sg-cyan);
        transform: translateY(-3px);
    }

.sg-slider-counter {
    position: absolute;
    z-index: 20;
    right: 45px;
    top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50px;
    background: rgba(8,12,18,.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: rgba(255,255,255,.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sg-slider-current {
    color: #fff;
}

.sg-hero-bottom {
    position: absolute;
    z-index: 15;
    left: 50%;
    bottom: 35px;
    width: calc(100% - 80px);
    max-width: 1450px;
    transform: translateX(-50%);
    pointer-events: none;
}

.sg-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sg-scroll-line {
    position: relative;
    width: 45px;
    height: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.18);
}

    .sg-scroll-line::after {
        content: "";
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--sg-cyan);
        animation: sgScrollLine 2s ease-in-out infinite;
    }

@keyframes sgScrollLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.sg-hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: sgHeroReveal .9s forwards;
}

.sg-hero-eyebrow.sg-hero-animate {
    animation-delay: .15s;
}

.sg-hero-title.sg-hero-animate {
    animation-delay: .3s;
}

.sg-hero-description.sg-hero-animate {
    animation-delay: .45s;
}

.sg-hero-actions.sg-hero-animate {
    animation-delay: .6s;
}

.sg-hero-stats.sg-hero-animate {
    animation-delay: .75s;
}

@keyframes sgHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .sg-hero {
        height: auto;
        min-height: 760px;
    }

    .sg-hero-inner {
        width: calc(100% - 40px);
        padding: 100px 0 130px;
    }

    .sg-hero-content {
        max-width: 680px;
    }

    .sg-hero-title {
        font-size: 68px;
    }

    .sg-slider-controls {
        right: 20px;
        bottom: 25px;
    }

    .sg-slider-counter {
        right: 20px;
        top: 25px;
    }

    .sg-hero-bottom {
        left: 20px;
        bottom: 38px;
        width: auto;
        transform: none;
    }
}

@media (max-width: 767px) {
    .sg-hero {
        min-height: 720px;
    }

    .sg-hero-inner {
        width: calc(100% - 30px);
        padding: 80px 0 120px;
        align-items: center;
    }

    .sg-hero-slide img {
        object-position: center;
    }

    .sg-hero-slide::after {
        background: linear-gradient( 180deg, rgba(2,5,10,.58) 0%, rgba(2,5,10,.7) 45%, rgba(2,5,10,.96) 100% );
    }

    .sg-hero-title {
        font-size: 49px;
        line-height: .98;
        letter-spacing: -3px;
    }

    .sg-hero-description {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sg-hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

    .sg-hero-btn {
        width: 100%;
    }

    .sg-hero-stats {
        gap: 8px;
        margin-top: 28px;
    }

    .sg-hero-stat {
        flex: 1;
        min-width: 0;
        padding: 15px 13px;
    }

    .sg-hero-stat-number {
        font-size: 23px;
    }

    .sg-hero-stat-text {
        font-size: 8px;
    }

    .sg-slider-counter {
        top: 15px;
        right: 15px;
    }

    .sg-slider-controls {
        right: 15px;
        bottom: 15px;
    }

    .sg-slider-arrow {
        width: 43px;
        height: 43px;
    }

    .sg-hero-bottom {
        display: none;
    }
}


.sg-brands {
    position: relative;
    padding: 115px 0 130px;
    overflow: hidden;
    /*background: radial-gradient(circle at 12% 20%, rgba(74, 205, 255, .10), transparent 28%), radial-gradient(circle at 88% 80%, rgba(145, 105, 255, .10), transparent 30%), linear-gradient(180deg, #05070b 0%, #080c13 50%, #05070b 100%);*/
    background: rgba(255,255,255,.008);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    isolation: isolate;
}

.sg-brands-container {
    position: relative;
    z-index: 5;
    width: calc(100% - 80px);
    max-width: 1450px;
    margin: 0 auto;
}

.sg-brands-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.sg-brands-orb-one {
    width: 420px;
    height: 420px;
    left: -220px;
    top: 20%;
    background: rgba(64, 205, 255, .13);
}

.sg-brands-orb-two {
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -100px;
    background: rgba(143, 105, 255, .12);
}

.sg-brands-header {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 65px;
}

.sg-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #8deaff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.sg-section-tag-line {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, #8deaff, transparent);
    box-shadow: 0 0 12px rgba(141, 234, 255, .4);
}

.sg-brands-title {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 1.02;
    letter-spacing: -4px;
    font-weight: 800;
}

    .sg-brands-title span {
        color: transparent;
        background: linear-gradient(90deg, #fff, #8deaff 55%, #b6a8ff);
        -webkit-background-clip: text;
        background-clip: text;
    }

.sg-brands-intro {
    max-width: 500px;
    margin: 0 0 5px auto;
    color: rgba(255,255,255,.55);
    font-size: 16px;
    line-height: 1.85;
}

.sg-brand-showcase {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 34px;
    background: linear-gradient( 145deg, rgba(255,255,255,.07), rgba(255,255,255,.018) );
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 35px 90px rgba(0,0,0,.25);
}

    .sg-brand-showcase::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 10%;
        width: 35%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(141,234,255,.7), transparent );
    }

.sg-brand-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.sg-brand-card {
    position: relative;
    grid-column: span 4;
    min-height: 260px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: radial-gradient( circle at 80% 0%, rgba(141,234,255,.08), transparent 35% ), linear-gradient( 145deg, rgba(255,255,255,.075), rgba(255,255,255,.025) );
    text-decoration: none !important;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s ease, box-shadow .45s ease;
}

    .sg-brand-card:hover {
        transform: translateY(-8px);
        border-color: rgba(141,234,255,.38);
        box-shadow: 0 30px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
    }

    .sg-brand-card::before {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        right: -100px;
        top: -110px;
        border-radius: 50%;
        background: rgba(91, 218, 255, .12);
        filter: blur(40px);
        transition: transform .6s ease;
    }

    .sg-brand-card:hover::before {
        transform: scale(1.6);
    }

.sg-brand-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sg-brand-number {
    color: rgba(255,255,255,.28);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sg-brand-arrow {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.65);
    font-size: 12px;
    transition: .35s ease;
}

.sg-brand-card:hover .sg-brand-arrow {
    color: #071017;
    border-color: #8deaff;
    background: #8deaff;
    transform: rotate(-45deg);
    box-shadow: 0 8px 25px rgba(141,234,255,.2);
}

.sg-brand-logo-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 185px;
    margin: 18px 0;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    /*background: linear-gradient( 135deg, rgba(255,255,255,.96), rgba(235,245,250,.9) );*/
    box-shadow: inset 0 1px 0 #fff, 0 15px 35px rgba(0,0,0,.15);
}

    .sg-brand-logo-wrap::after {
        content: "";
        position: absolute;
        top: -70%;
        left: -80%;
        width: 45%;
        height: 250%;
        transform: rotate(25deg);
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.9), transparent );
        transition: left .8s ease;
    }

.sg-brand-card:hover .sg-brand-logo-wrap::after {
    left: 150%;
}

.sg-brand-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 150px;
    object-fit: contain;
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
    border-radius:15px;
}

.sg-brand-card:hover .sg-brand-logo {
    transform: scale(1.08);
}

.sg-brand-bottom {
    position: relative;
    z-index: 3;
}

.sg-brand-name {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.4px;
}

.sg-brand-type {
    margin-top: 5px;
    color: rgba(255,255,255,.4);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sg-brand-statement {
    position: relative;
    margin-top: 28px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    background: linear-gradient( 120deg, rgba(255,255,255,.07), rgba(255,255,255,.025) );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sg-brand-statement-text {
    max-width: 850px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.8;
}

    .sg-brand-statement-text strong {
        color: #fff;
        font-weight: 600;
    }

.sg-brand-statement-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8deaff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .sg-brand-statement-badge i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(141,234,255,.25);
        border-radius: 13px;
        background: rgba(141,234,255,.07);
        font-size: 15px;
    }

.sg-brand-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

    .sg-brand-reveal.sg-brand-visible {
        opacity: 1;
        transform: translateY(0);
    }

.sg-brand-card:nth-child(2) {
    transition-delay: .07s;
}

.sg-brand-card:nth-child(3) {
    transition-delay: .14s;
}

.sg-brand-card:nth-child(4) {
    transition-delay: .07s;
}

.sg-brand-card:nth-child(5) {
    transition-delay: .14s;
}

.sg-brand-card:nth-child(6) {
    transition-delay: .21s;
}

@media (max-width: 1100px) {
    .sg-brand-card {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .sg-brands {
        padding: 80px 0 90px;
    }

    .sg-brands-container {
        width: calc(100% - 28px);
    }

    .sg-brands-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 42px;
    }

    .sg-brands-title {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .sg-brands-intro {
        margin: 0;
        font-size: 14px;
    }

    .sg-brand-showcase {
        padding: 10px;
        border-radius: 25px;
    }

    .sg-brand-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sg-brand-card {
        grid-column: auto;
        min-height: 210px;
        padding: 15px;
        border-radius: 19px;
    }

    .sg-brand-logo-wrap {
        height: 90px;
        margin: 14px 0;
        padding: 10px;
        border-radius: 15px;
    }

    .sg-brand-arrow {
        width: 32px;
        height: 32px;
    }

    .sg-brand-name {
        font-size: 15px;
    }

    .sg-brand-type {
        font-size: 8px;
        letter-spacing: .8px;
    }

    .sg-brand-statement {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }
}

@media (max-width: 420px) {
    .sg-brand-grid {
        grid-template-columns: 1fr;
    }

    .sg-brand-card {
        min-height: 225px;
    }

    .sg-brand-logo-wrap {
        height: 105px;
    }
}


.sg-legacy {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    /*background: radial-gradient(circle at 85% 15%, rgba(141,234,255,.09), transparent 30%), radial-gradient(circle at 10% 85%, rgba(169,147,255,.09), transparent 32%), #05070b;*/
    background: rgba(255,255,255,.008);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    isolation: isolate;
}

.sg-legacy-container {
    position: relative;
    z-index: 5;
    width: calc(100% - 80px);
    max-width: 1450px;
    margin: 0 auto;
}

.sg-legacy-bg-text {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    color: rgba(255,255,255,.018);
    font-size: clamp(100px, 17vw, 260px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -12px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.sg-legacy-header {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin-bottom: 75px;
}

.sg-legacy-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #8deaff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

    .sg-legacy-label::before {
        content: "";
        width: 45px;
        height: 1px;
        background: linear-gradient(90deg, #8deaff, transparent);
    }

.sg-legacy-title {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6vw, 88px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -5px;
}

    .sg-legacy-title span {
        display: block;
        color: transparent;
        background: linear-gradient( 90deg, #ffffff 0%, #8deaff 48%, #b8a9ff 100% );
        -webkit-background-clip: text;
        background-clip: text;
    }

.sg-legacy-grid {
    position: relative;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 22px;
    align-items: stretch;
}

.sg-legacy-feature {
    position: relative;
    min-height: 590px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 34px;
    background: radial-gradient( circle at 80% 15%, rgba(141,234,255,.16), transparent 35% ), linear-gradient( 145deg, rgba(255,255,255,.09), rgba(255,255,255,.025) );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 35px 80px rgba(0,0,0,.22);
}

    .sg-legacy-feature::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -180px;
        bottom: -160px;
        border-radius: 50%;
        border: 1px solid rgba(141,234,255,.14);
        box-shadow: 0 0 0 45px rgba(141,234,255,.025), 0 0 0 90px rgba(141,234,255,.018);
    }

.sg-legacy-feature-top {
    position: relative;
    z-index: 3;
}

.sg-legacy-small-label {
    color: rgba(255,255,255,.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sg-legacy-number {
    position: relative;
    z-index: 3;
    margin-top: 22px;
    color: #fff;
    font-size: clamp(100px, 11vw, 170px);
    line-height: .78;
    font-weight: 900;
    letter-spacing: -10px;
}

    .sg-legacy-number span {
        color: #8deaff;
        font-size: .42em;
        vertical-align: top;
        letter-spacing: -2px;
    }

.sg-legacy-years-text {
    position: relative;
    z-index: 3;
    margin-top: 22px;
    color: rgba(255,255,255,.82);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
}

.sg-legacy-feature-bottom {
    position: relative;
    z-index: 3;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
}

    .sg-legacy-feature-bottom p {
        max-width: 430px;
        margin: 0;
        color: rgba(255,255,255,.52);
        font-size: 14px;
        line-height: 1.8;
    }

.sg-legacy-story {
    position: relative;
    padding: 52px 55px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 34px;
    background: linear-gradient( 145deg, rgba(255,255,255,.065), rgba(255,255,255,.018) );
}

    .sg-legacy-story::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(169,147,255,.11);
        filter: blur(70px);
    }

.sg-legacy-quote-icon {
    position: relative;
    z-index: 2;
    width: 55px;
    height: 55px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(141,234,255,.2);
    border-radius: 17px;
    background: rgba(141,234,255,.07);
    color: #8deaff;
    font-size: 20px;
}

.sg-legacy-lead {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: -1px;
}

    .sg-legacy-lead strong {
        color: #8deaff;
        font-weight: 700;
    }

.sg-legacy-divider {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1px;
    margin: 38px 0;
    background: linear-gradient( 90deg, rgba(255,255,255,.15), transparent );
}

.sg-legacy-copy {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

    .sg-legacy-copy p {
        margin: 0;
        color: rgba(255,255,255,.55);
        font-size: 14px;
        line-height: 1.9;
    }

    .sg-legacy-copy strong {
        color: rgba(255,255,255,.9);
        font-weight: 600;
    }

.sg-legacy-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 22px;
}

.sg-legacy-value {
    position: relative;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: linear-gradient( 145deg, rgba(255,255,255,.06), rgba(255,255,255,.02) );
    transition: transform .4s ease, border-color .4s ease, background .4s ease;
}

    .sg-legacy-value:hover {
        transform: translateY(-7px);
        border-color: rgba(141,234,255,.3);
        background: linear-gradient( 145deg, rgba(141,234,255,.09), rgba(255,255,255,.025) );
    }

.sg-legacy-value-number {
    margin-bottom: 30px;
    color: rgba(255,255,255,.22);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sg-legacy-value-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(141,234,255,.2);
    border-radius: 14px;
    background: rgba(141,234,255,.06);
    color: #8deaff;
    font-size: 16px;
}

.sg-legacy-value h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.sg-legacy-value p {
    margin: 0;
    color: rgba(255,255,255,.42);
    font-size: 12px;
    line-height: 1.7;
}

.sg-legacy-final {
    position: relative;
    margin-top: 22px;
    padding: 48px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background: radial-gradient( circle at 90% 50%, rgba(141,234,255,.12), transparent 28% ), linear-gradient( 120deg, rgba(255,255,255,.075), rgba(255,255,255,.02) );
}

.sg-legacy-final-text {
    max-width: 900px;
}

    .sg-legacy-final-text h3 {
        margin: 0 0 12px;
        color: #fff;
        font-size: clamp(24px, 3vw, 40px);
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -1.5px;
    }

    .sg-legacy-final-text p {
        margin: 0;
        color: rgba(255,255,255,.5);
        font-size: 14px;
        line-height: 1.8;
    }

.sg-legacy-final-icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(141,234,255,.25);
    border-radius: 50%;
    background: rgba(141,234,255,.08);
    color: #8deaff;
    font-size: 23px;
    box-shadow: 0 0 40px rgba(141,234,255,.08);
}

.sg-legacy-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

    .sg-legacy-reveal.sg-legacy-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 991px) {
    .sg-legacy-grid {
        grid-template-columns: 1fr;
    }

    .sg-legacy-feature {
        min-height: 450px;
    }

    .sg-legacy-copy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sg-legacy {
        padding: 85px 0;
    }

    .sg-legacy-container {
        width: calc(100% - 28px);
    }

    .sg-legacy-header {
        margin-bottom: 45px;
    }

    .sg-legacy-title {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .sg-legacy-bg-text {
        display: none;
    }

    .sg-legacy-feature {
        min-height: 420px;
        padding: 30px 25px;
        border-radius: 25px;
    }

    .sg-legacy-number {
        font-size: 105px;
        letter-spacing: -7px;
    }

    .sg-legacy-years-text {
        font-size: 20px;
    }

    .sg-legacy-story {
        padding: 32px 25px;
        border-radius: 25px;
    }

    .sg-legacy-lead {
        font-size: 24px;
    }

    .sg-legacy-copy {
        gap: 20px;
    }

    .sg-legacy-values {
        grid-template-columns: 1fr;
    }

    .sg-legacy-value {
        padding: 24px;
    }

    .sg-legacy-final {
        align-items: flex-start;
        flex-direction: column;
        padding: 32px 25px;
    }
}



.sg-impact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    /*background: radial-gradient(circle at 15% 30%, rgba(141,234,255,.10), transparent 30%), radial-gradient(circle at 85% 70%, rgba(170,145,255,.10), transparent 32%), linear-gradient(180deg, #05070b 0%, #080c12 50%, #05070b 100%);*/
    background: rgba(255,255,255,.008);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.sg-impact-container {
    position: relative;
    z-index: 3;
    width: calc(100% - 80px);
    max-width: 1450px;
    margin: 0 auto;
}

.sg-impact-header {
    max-width: 850px;
    margin-bottom: 65px;
}

.sg-impact-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #8deaff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

    .sg-impact-label::before {
        content: "";
        width: 42px;
        height: 1px;
        background: linear-gradient(90deg, #8deaff, transparent);
    }

.sg-impact-title {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -4px;
}

    .sg-impact-title span {
        color: transparent;
        background: linear-gradient(90deg, #8deaff, #b9aaff);
        -webkit-background-clip: text;
        background-clip: text;
    }

.sg-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sg-impact-card {
    position: relative;
    min-height: 320px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 28px;
    background: linear-gradient( 145deg, rgba(255,255,255,.075), rgba(255,255,255,.02) );
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s ease, box-shadow .45s ease;
}

    .sg-impact-card:hover {
        transform: translateY(-9px);
        border-color: rgba(141,234,255,.35);
        box-shadow: 0 35px 70px rgba(0,0,0,.25);
    }

    .sg-impact-card::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        top: -150px;
        right: -120px;
        border-radius: 50%;
        background: rgba(141,234,255,.13);
        filter: blur(55px);
        transition: transform .6s ease;
    }

    .sg-impact-card:hover::before {
        transform: scale(1.5);
    }

.sg-impact-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sg-impact-card-number {
    color: rgba(255,255,255,.28);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sg-impact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(141,234,255,.2);
    border-radius: 15px;
    background: rgba(141,234,255,.07);
    color: #8deaff;
    font-size: 17px;
}

.sg-impact-content {
    position: relative;
    z-index: 2;
}

.sg-impact-value {
    margin: 0;
    color: #fff;
    font-size: clamp(60px, 6vw, 90px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -5px;
}

    .sg-impact-value span {
        color: #8deaff;
    }

.sg-impact-name {
    margin: 20px 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.sg-impact-description {
    margin: 0;
    color: rgba(255,255,255,.43);
    font-size: 13px;
    line-height: 1.7;
}

.sg-final-cta {
    position: relative;
    margin-top: 70px;
    min-height: 500px;
    padding: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 38px;
    background: radial-gradient( circle at 85% 50%, rgba(141,234,255,.18), transparent 30% ), radial-gradient( circle at 15% 100%, rgba(177,150,255,.13), transparent 35% ), linear-gradient( 135deg, rgba(255,255,255,.09), rgba(255,255,255,.025) );
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 45px 100px rgba(0,0,0,.25);
}

    .sg-final-cta::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -120px;
        top: 50%;
        transform: translateY(-50%);
        border: 1px solid rgba(141,234,255,.15);
        border-radius: 50%;
        box-shadow: 0 0 0 60px rgba(141,234,255,.025), 0 0 0 120px rgba(141,234,255,.015);
    }

.sg-final-cta-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.sg-final-mini {
    margin-bottom: 20px;
    color: #8deaff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.sg-final-title {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.5vw, 90px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -5px;
}

    .sg-final-title span {
        color: transparent;
        background: linear-gradient(90deg, #fff, #8deaff);
        -webkit-background-clip: text;
        background-clip: text;
    }

.sg-final-text {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.55);
    font-size: 17px;
    line-height: 1.8;
}

.sg-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.sg-final-btn {
    min-height: 55px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none !important;
    transition: .35s ease;
}

.sg-final-btn-primary {
    border: 1px solid #8deaff;
    background: #8deaff;
    color: #071017 !important;
    box-shadow: 0 12px 35px rgba(141,234,255,.14);
}

    .sg-final-btn-primary:hover {
        transform: translateY(-4px);
        background: #fff;
        border-color: #fff;
    }

.sg-final-btn-secondary {
    border: 1px solid rgba(255,255,255,.17);
    background: rgba(255,255,255,.055);
    color: #fff !important;
}

    .sg-final-btn-secondary:hover {
        transform: translateY(-4px);
        border-color: rgba(141,234,255,.5);
        background: rgba(141,234,255,.08);
    }

.sg-closing-line {
    margin-top: 55px;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
}

    .sg-closing-line p {
        margin: 0;
        color: rgba(255,255,255,.32);
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.sg-closing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8deaff;
    box-shadow: 0 0 18px #8deaff;
    animation: sgClosingPulse 2s infinite;
}

@keyframes sgClosingPulse {
    0%, 100% {
        opacity: .4;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.sg-impact-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

    .sg-impact-reveal.sg-impact-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 991px) {
    .sg-impact-grid {
        grid-template-columns: 1fr;
    }

    .sg-impact-card {
        min-height: 270px;
    }

    .sg-final-cta {
        padding: 55px 40px;
    }
}

@media (max-width: 767px) {
    .sg-impact {
        padding: 85px 0;
    }

    .sg-impact-container {
        width: calc(100% - 28px);
    }

    .sg-impact-header {
        margin-bottom: 42px;
    }

    .sg-impact-title {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .sg-impact-card {
        min-height: 245px;
        padding: 27px 24px;
        border-radius: 23px;
    }

    .sg-impact-value {
        font-size: 65px;
    }

    .sg-final-cta {
        min-height: auto;
        margin-top: 45px;
        padding: 48px 25px;
        border-radius: 27px;
    }

    .sg-final-title {
        font-size: 46px;
        letter-spacing: -3px;
    }

    .sg-final-text {
        font-size: 14px;
    }

    .sg-final-actions {
        flex-direction: column;
    }

    .sg-final-btn {
        width: 100%;
    }

    .sg-closing-line {
        align-items: flex-start;
        flex-direction: column;
    }
}




.sg-footer {
    position: relative;
    overflow: hidden;
    /*background: #030508;*/
    background: rgba(255,255,255,.008);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: #fff;
}

.sg-footer-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: -480px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(141,234,255,.13);
    filter: blur(120px);
    pointer-events: none;
}

.sg-footer-container {
    position: relative;
    z-index: 2;
    width: calc(100% - 80px);
    max-width: 1450px;
    margin: 0 auto;
}

.sg-footer-top {
    padding: 95px 0 70px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.sg-footer-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #8deaff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

    .sg-footer-eyebrow::before {
        content: "";
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, #8deaff, transparent);
    }

.sg-footer-heading {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5.5vw, 78px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -4px;
}

    .sg-footer-heading span {
        color: transparent;
        background: linear-gradient(90deg, #8deaff, #b6a8ff);
        -webkit-background-clip: text;
        background-clip: text;
    }

.sg-footer-summary {
    max-width: 470px;
    margin: 0 0 5px auto;
    color: rgba(255,255,255,.48);
    font-size: 16px;
    line-height: 1.9;
}

.sg-footer-main {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 1.4fr .6fr .6fr;
    gap: 70px;
}

.sg-footer-brand-name {
    margin: 0 0 18px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1.2px;
}

    .sg-footer-brand-name span {
        color: #8deaff;
    }

.sg-footer-brand-text {
    max-width: 480px;
    margin: 0;
    color: rgba(255,255,255,.42);
    font-size: 15px;
    line-height: 1.85;
}

.sg-footer-status {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sg-footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8deaff;
    box-shadow: 0 0 18px rgba(141,234,255,.9);
    animation: sgFooterPulse 2s infinite;
}

@keyframes sgFooterPulse {
    0%, 100% {
        opacity: .45;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.sg-footer-column-title {
    margin: 0 0 23px;
    color: rgba(255,255,255,.35);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sg-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sg-footer-links li {
        margin-bottom: 14px;
    }

    .sg-footer-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: rgba(255,255,255,.68);
        font-size: 13px;
        text-decoration: none !important;
        transition: .3s ease;
    }

        .sg-footer-links a::before {
            content: "";
            width: 0;
            height: 1px;
            background: #8deaff;
            transition: width .3s ease;
        }

        .sg-footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

            .sg-footer-links a:hover::before {
                width: 16px;
            }

.sg-footer-brand-strip {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.sg-footer-brand-strip-label {
    flex: 0 0 auto;
    color: rgba(255,255,255,.25);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sg-footer-brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.sg-footer-brand-pill {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 30px;
    background: rgba(255,255,255,.025);
    color: rgba(255,255,255,.5);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s ease;
}

    .sg-footer-brand-pill:hover {
        color: #8deaff;
        border-color: rgba(141,234,255,.3);
        background: rgba(141,234,255,.05);
    }

.sg-footer-bottom {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sg-footer-copyright {
    margin: 0;
    color: rgba(255,255,255,.27);
    font-size: 11px;
    letter-spacing: .7px;
}

.sg-footer-back-top {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    color: #fff;
    cursor: pointer;
    transition: .35s ease;
}

    .sg-footer-back-top:hover {
        color: #071017;
        border-color: #8deaff;
        background: #8deaff;
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(141,234,255,.15);
    }

@media (max-width: 991px) {
    .sg-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sg-footer-summary {
        margin-left: 0;
    }

    .sg-footer-main {
        grid-template-columns: 1fr 1fr;
    }

        .sg-footer-main > div:first-child {
            grid-column: 1 / -1;
        }
}

@media (max-width: 767px) {
    .sg-footer-container {
        width: calc(100% - 28px);
    }

    .sg-footer-top {
        padding: 75px 0 50px;
    }

    .sg-footer-heading {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .sg-footer-main {
        padding: 50px 0;
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .sg-footer-main > div:first-child {
            grid-column: auto;
        }

    .sg-footer-brand-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .sg-footer-brand-list {
        justify-content: flex-start;
    }

    .sg-footer-bottom {
        min-height: 110px;
    }
}