:root {
    --wsg-primary:#075c3a;
    --wsg-primary-2:#087a4b;
    --wsg-primary-3:#0f925a;
    --wsg-accent:#14a667;
    --wsg-dark:#10271d;
    --wsg-dark-2:#16382a;
    --wsg-text:#233b31;
    --wsg-muted:#60756b;
    --wsg-light:#f5fbf7;
    --wsg-mint:#eaf8f1;
    --wsg-white:#fff;
    --wsg-border:#dcece3;
    --wsg-border-strong:#c8dfd2;
    --wsg-danger:#c43b43;
    --wsg-success:#087a4b;
    --wsg-shadow-sm:0 10px 26px rgba(8,74,48,.08);
    --wsg-shadow:0 22px 60px rgba(8,74,48,.12);
    --wsg-shadow-lg:0 30px 80px rgba(8,74,48,.17);
    --wsg-gradient:linear-gradient(135deg,#064b31 0%,#087649 45%,#0f945b 100%);
    --wsg-gradient-soft:linear-gradient(135deg,#f7fcf9 0%,#eaf8f1 100%);
    --wsg-container:1200px;
    --wsg-radius-sm:14px;
    --wsg-radius:22px;
    --wsg-radius-lg:32px;
    --wsg-header-height:100px;
    --wsg-transition:220ms cubic-bezier(.2,.7,.2,1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body.wsg-site {
    margin: 0;
    background: #fff;
    color: var(--wsg-text);
    font-family: "Segoe UI",Inter,Arial,sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    body.wsg-site.modal-open {
        padding-right: 0!important;
    }

    body.wsg-site img {
        max-width: 100%;
        height: auto;
    }

    body.wsg-site a {
        text-decoration: none;
        color: inherit;
    }

    body.wsg-site button, body.wsg-site input, body.wsg-site select, body.wsg-site textarea {
        font: inherit;
    }

    body.wsg-site button, body.wsg-site a {
        touch-action: manipulation;
    }

    body.wsg-site ::selection {
        background: #bfe9d2;
        color: #10271d;
    }

.wsg-container {
    width: min(calc(100% - 40px),var(--wsg-container));
    margin-inline: auto;
}

.wsg-main {
    position: relative;
    z-index: 1;
}

.wsg-section {
    position: relative;
    padding: 104px 0;
}

.wsg-section--soft {
    background: var(--wsg-light);
}

.wsg-section--mint {
    background: var(--wsg-mint);
}

.wsg-section--dark {
    background: linear-gradient(145deg,#08291e 0%,#0b3d2b 48%,#075c3a 100%);
    color: #fff!important;
    overflow: hidden;
}

    .wsg-section--dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 20%,rgba(68,210,139,.13),transparent 34%),radial-gradient(circle at 85% 62%,rgba(103,220,161,.11),transparent 28%),url('../images/backgrounds/wsg-grid.svg');
        pointer-events: none;
    }

.wsg-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .wsg-section-head.wsg-left {
        text-align: left;
        margin-left: 0;
    }

.wsg-eyebrow, .elite-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid #cce6d8;
    background: #f2fbf6;
    color: var(--wsg-primary-2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 16px;
}

    .wsg-eyebrow::before, .elite-section-badge::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--wsg-primary-3);
        box-shadow: 0 0 0 4px rgba(15,146,90,.1);
    }

.wsg-section--dark .wsg-eyebrow, .wsg-section--dark .elite-section-badge {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: #b8ebcf;
}

.wsg-title, .heading-title .title {
    margin: 0;
    color: var(--wsg-dark);
    font-size: clamp(2rem,4vw,4.00rem);

    line-height: 1.18;
    letter-spacing: -.045em;
    font-weight: 700;
}

.wsg-section--dark .wsg-title, .wsg-section--dark .title, .title.white {
    color: #fff!important;
}

.wsg-title span {
    color: var(--wsg-primary-2);
}

.wsg-lead, .wsg-section-head p, .heading-title p {
    margin: 18px 0 0;
    color: var(--wsg-muted);
    font-size: clamp(1rem,1.4vw,1.12rem);
    line-height: 1.75;
}

.wsg-section--dark .wsg-lead, .wsg-section--dark .wsg-section-head p, .wsg-section--dark .heading-title p {
    color: #c7ded2;
}

.wsg-kicker {
    font-size: 13px;
    color: var(--wsg-primary-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.wsg-copy p {
    color: var(--wsg-muted);
    margin: 0 0 18px;
}

.wsg-copy strong {
    color: var(--wsg-dark);
}

.wsg-btn, .button, .btn-action, .elite-about-btn, .elite-bnb-btn, .elite-contact-btn, .elite-package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 21px;
    border: 0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform var(--wsg-transition),box-shadow var(--wsg-transition),background var(--wsg-transition),border-color var(--wsg-transition),color var(--wsg-transition);
    text-decoration: none;
}

    .wsg-btn--primary, .button:not(.white), .elite-about-btn, .elite-bnb-btn, .elite-contact-btn, .elite-package-btn {
        color: #fff!important;
        background: var(--wsg-gradient);
        box-shadow: 0 12px 26px rgba(7,92,58,.2);
    }

        .wsg-btn--primary:hover, .button:not(.white):hover, .elite-about-btn:hover, .elite-bnb-btn:hover, .elite-contact-btn:hover, .elite-package-btn:hover {
            color: #fff!important;
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(7,92,58,.25);
        }

    .wsg-btn--secondary, .button.white {
        background: #fff;
        color: var(--wsg-primary) !important;
        border: 1px solid var(--wsg-border-strong);
        box-shadow: 0 8px 20px rgba(7,92,58,.06);
    }

        .wsg-btn--secondary:hover, .button.white:hover {
            background: var(--wsg-light);
            border-color: #a6d2ba;
            color: var(--wsg-primary) !important;
            transform: translateY(-2px);
        }

.wsg-btn--ghost {
    background: transparent;
    color: var(--wsg-primary-2);
    padding-inline: 4px;
    min-height: 42px;
}

    .wsg-btn--ghost:hover {
        color: var(--wsg-primary) !important;
        transform: translateX(2px);
    }

.wsg-btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.wsg-icon-box {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
    flex: 0 0 48px;
}

    .wsg-icon-box svg {
        width: 23px;
        height: 23px;
        stroke: currentColor;
    }

    .wsg-icon-box svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
        stroke: currentColor;
    display: block;
    margin: auto;
    margin-top: 2px;
}

/* header */
.wsg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(145%) blur(16px);
    -webkit-backdrop-filter: saturate(145%) blur(16px);
    border-bottom: 1px solid rgba(220,236,227,.75);
    transition: box-shadow var(--wsg-transition),background var(--wsg-transition),transform var(--wsg-transition);
}

    .wsg-header.is-scrolled {
        background: rgba(255,255,255,.96);
        box-shadow: 0 14px 34px rgba(7,67,45,.08);
    }

.wsg-header-inner {
    height: var(--wsg-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.wsg-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

    .wsg-logo img {
        display: block;
        width: 290px;
        max-width: 38vw;
        height: auto;
    }

.wsg-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.wsg-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .wsg-nav-list > li {
        margin: 0;
        padding: 0;
    }

        .wsg-nav-list > li > a:not(.wsg-nav-cta) {
            display: flex;
            align-items: center;
            min-height: 42px;
            padding: 0 12px;
            color: #365046;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            transition: color var(--wsg-transition),background var(--wsg-transition);
        }

            .wsg-nav-list > li > a:not(.wsg-nav-cta):hover, .wsg-nav-list > li > a.active {
                color: var(--wsg-primary) !important;
                background: #eff9f4;
            }

.wsg-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wsg-nav-cta {
    min-height: 44px;
    padding: 0 17px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
}

.wsg-nav-login {
    border: 1px solid var(--wsg-border-strong);
    color: var(--wsg-primary) !important;
    background: #fff;
}

.wsg-nav-register {
    background: var(--wsg-gradient);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(7,92,58,.17);
}

.wsg-nav-login:hover {
    background: var(--wsg-light);
    color: var(--wsg-primary) !important;
}

.wsg-nav-register:hover {
    color: #fff!important;
    box-shadow: 0 14px 30px rgba(7,92,58,.24);
}

.wsg-mobile-actions, .elite-mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

.wsg-mobile-auth, .elite-mobile-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid var(--wsg-border-strong);
    border-radius: 10px;
    color: var(--wsg-primary) !important;
    font-size: 12px;
    font-weight: 800;
    background: #fff;
}

    .wsg-mobile-auth.register, .elite-mobile-auth-btn.register {
        background: var(--wsg-gradient);
        border-color: transparent;
        color: #fff!important;
    }

.wsg-menu-btn, .elite-mobile-menu-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--wsg-border-strong);
    border-radius: 12px;
    background: #fff;
    color: var(--wsg-primary) !important;
    padding: 0;
}

    .wsg-menu-btn .wsg-menu-lines, .elite-mobile-menu-btn .wsg-menu-lines {
        width: 18px;
        height: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.wsg-menu-lines span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform var(--wsg-transition),opacity var(--wsg-transition);
}

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

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

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

.wsg-header-spacer {
    height: var(--wsg-header-height);
}

/* hero */
.wsg-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 72px 0 82px;
    background: linear-gradient(180deg,#fbfefc 0%,#f7fcf9 100%);
    overflow: hidden;
}

    .wsg-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 13% 24%,rgba(15,146,90,.10),transparent 25%),radial-gradient(circle at 88% 12%,rgba(7,92,58,.11),transparent 25%),url('../images/backgrounds/wsg-grid.svg');
        pointer-events: none;
    }

    .wsg-hero::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        right: -280px;
        bottom: -285px;
        background: radial-gradient(circle,rgba(15,146,90,.12),rgba(15,146,90,0) 70%);
        pointer-events: none;
    }

.wsg-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr);
    align-items: center;
    gap: 54px;
}

.wsg-hero-copy {
    max-width: 650px;
}

.wsg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid #d2e9dd;
    background: rgba(255,255,255,.85);
    box-shadow: 0 7px 18px rgba(8,74,48,.06);
    border-radius: 999px;
    color: var(--wsg-primary-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.wsg-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wsg-accent);
    box-shadow: 0 0 0 5px rgba(20,166,103,.1);
}

.wsg-hero h1 {
    margin: 0;
    color: var(--wsg-dark);
    font-size: clamp(3rem,5.7vw,5.2rem);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 850;
    max-width: 740px;

    margin: 0;
    color: var(--wsg-dark);
    font-size: clamp(3rem, 5.7vw, 5.2rem);
    line-height: .98;
    letter-spacing: -0.035em;
    font-weight: 700;
    max-width: 740px;
}

    .wsg-hero h1 span {
        display: block;
        color: var(--wsg-primary-2);
    }

.wsg-hero-copy > p {
    max-width: 610px;
    margin: 26px 0 0;
    color: var(--wsg-muted);
    font-size: clamp(1.04rem,1.55vw,1.18rem);
    line-height: 1.75;
}

.wsg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

    .wsg-hero-actions .wsg-btn {
        min-height: 54px;
        padding-inline: 24px;
        border-radius: 15px;
    }

.wsg-hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #587066;
    font-size: 13px;
    font-weight: 600;
}

.wsg-hero-note-mark {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
}

    .wsg-hero-note-mark svg {
        width: 15px;
        height: 15px;
    }

.wsg-hero-visual {
    position: relative;
    min-width: 0;
}

    .wsg-hero-visual::before {
        content: "";
        position: absolute;
        inset: 10% 9%;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(15,146,90,.17),rgba(15,146,90,0) 68%);
        filter: blur(12px);
    }

    .wsg-hero-visual img {
        position: relative;
        z-index: 1;
        width: 100%;
        filter: saturate(.98);
    }

.wsg-trust-strip {
    position: relative;
    margin-top: -26px;
    z-index: 3;
}

.wsg-trust-shell {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: #fff;
    border: 1px solid var(--wsg-border);
    border-radius: 22px;
    box-shadow: var(--wsg-shadow-sm);
    overflow: hidden;
}

.wsg-trust-item {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

    .wsg-trust-item + .wsg-trust-item {
        border-left: 1px solid var(--wsg-border);
    }

.wsg-trust-item-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
    flex: 0 0 38px;
}

    .wsg-trust-item-icon svg {
        width: 19px;
        height: 19px;
    }

.wsg-trust-item small {
    display: block;
    color: var(--wsg-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.2;
}

.wsg-trust-item strong {
    display: block;
    color: var(--wsg-dark);
    font-size: 14px;
    line-height: 1.3;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* about */
.wsg-about-grid {
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 72px;
    align-items: center;
}

.wsg-illustration-card {
    position: relative;
    padding: 24px;
    border: 1px solid var(--wsg-border);
    background: linear-gradient(145deg,#fff,#f6fbf8);
    border-radius: var(--wsg-radius-lg);
    box-shadow: var(--wsg-shadow-sm);
}

    .wsg-illustration-card img {
        display: block;
        width: 100%;
    }

.wsg-float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--wsg-border);
    border-radius: 14px;
    box-shadow: var(--wsg-shadow-sm);
    font-size: 12px;
    color: var(--wsg-dark);
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.wsg-float-chip--one {
    left: -22px;
    top: 28%;
}

.wsg-float-chip--two {
    right: -18px;
    bottom: 18%;
}

.wsg-float-chip i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--wsg-accent);
    box-shadow: 0 0 0 4px rgba(20,166,103,.1);
}

.wsg-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 30px;
}

.wsg-feature-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    background: #fff;
    border: 1px solid var(--wsg-border);
    border-radius: 15px;
    color: var(--wsg-dark);
    font-size: 14px;
    font-weight: 700;
}

.wsg-feature-line-mark {
    margin-top: 2px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
    font-size: 12px;
    flex: 0 0 22px;
}

/* platform */
.wsg-platform-grid {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
    gap: 64px;
    align-items: center;
}

.wsg-platform-visual {
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(145deg,#fff,#f1faf5);
    border: 1px solid var(--wsg-border);
    box-shadow: var(--wsg-shadow-sm);
}

    .wsg-platform-visual img {
        width: 100%;
        display: block;
    }

.wsg-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
    margin-top: 30px;
}

.wsg-benefit-card {
    position: relative;
    padding: 23px;
    border: 1px solid var(--wsg-border);
    background: #fff;
    border-radius: 19px;
    transition: transform var(--wsg-transition),box-shadow var(--wsg-transition),border-color var(--wsg-transition);
    min-height: 168px;
}

    .wsg-benefit-card:hover {
        transform: translateY(-4px);
        border-color: #bfddcd;
        box-shadow: var(--wsg-shadow-sm);
    }

    .wsg-benefit-card h3 {
        font-size: 17px;
        line-height: 1.3;
        color: var(--wsg-dark);
        margin: 16px 0 7px;
        font-weight: 800;
    }

    .wsg-benefit-card p {
        margin: 0;
        color: var(--wsg-muted);
        font-size: 13.5px;
        line-height: 1.6;
    }

    .wsg-benefit-card .wsg-icon-box {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 13px;
    }

/* dark cta */
.wsg-band {
    position: relative;
    padding: 76px 0;
    background: linear-gradient(130deg,#08291e 0%,#075c3a 54%,#0b774a 100%);
    overflow: hidden;
    color: #fff!important;
}

    .wsg-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 35%,rgba(115,229,171,.16),transparent 28%),url('../images/backgrounds/wsg-grid.svg');
        opacity: .75;
    }

.wsg-band-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.45fr) minmax(260px,.55fr);
    gap: 44px;
    align-items: center;
}

.wsg-band h2 {
    font-size: clamp(2rem,4vw,3.4rem);
    line-height: 1.06;
    letter-spacing: -.045em;
    margin: 0;
    color: #fff!important;
    font-weight: 800;
}

    .wsg-band h2 span {
        color: #a4e8c2;
    }

.wsg-band p {
    margin: 18px 0 0;
    color: #c8ded3;
    max-width: 720px;
}

.wsg-band-panel {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

    .wsg-band-panel strong {
        display: block;
        font-size: 34px;
        line-height: 1;
        color: #fff!important;
        margin-bottom: 9px;
    }

    .wsg-band-panel span {
        font-size: 13px;
        color: #b8ddc8;
    }

.wsg-band-actions {
    display: flex;
    gap: 10px;
    margin-top: 23px;
    flex-wrap: wrap;
}

.wsg-band .wsg-btn--secondary {
    background: #fff;
    border-color: #fff!important;
    color: var(--wsg-primary) !important;
}

/* process */
.wsg-process {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    position: relative;
}

    .wsg-process::before {
        content: "";
        position: absolute;
        left: 14%;
        right: 14%;
        top: 46px;
        border-top: 1px dashed #afd4bf;
        z-index: 0;
    }

.wsg-process-card {
    position: relative;
    z-index: 1;
    padding: 26px 24px 24px;
    border: 1px solid var(--wsg-border);
    border-radius: 22px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 30px rgba(7,74,48,.05);
}

.wsg-process-no {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 17px;
    background: var(--wsg-gradient);
    color: #fff!important;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 11px 24px rgba(7,92,58,.2);
}

.wsg-process-card h3 {
    margin: 0;
    color: var(--wsg-dark);
    font-size: 20px;
    font-weight: 800;
}

.wsg-process-card p {
    margin: 10px 0 0;
    color: var(--wsg-muted);
    font-size: 14px;
}

/* blockchain */
.wsg-blockchain-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 68px;
    align-items: center;
}

.wsg-blockchain-visual {
    position: relative;
}

    .wsg-blockchain-visual img {
        width: 100%;
        display: block;
    }

.wsg-blockchain-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.wsg-mini-point {
    padding: 15px 16px;
    border-radius: 15px;
    border: 1px solid var(--wsg-border);
    background: #fff;
}

    .wsg-mini-point strong {
        display: block;
        color: var(--wsg-dark);
        font-size: 14px;
    }

    .wsg-mini-point span {
        display: block;
        color: var(--wsg-muted);
        font-size: 12.5px;
        margin-top: 4px;
        line-height: 1.45;
    }

.wsg-decentralized {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wsg-decentralized-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.wsg-orbit {
    position: relative;
    width: min(390px,100%);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

    .wsg-orbit::before, .wsg-orbit::after {
        content: "";
        position: absolute;
        border: 1px dashed rgba(174,235,202,.23);
        border-radius: 50%;
    }

    .wsg-orbit::before {
        inset: 42px;
    }

    .wsg-orbit::after {
        inset: 94px;
    }

.wsg-orbit-core {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg,#0f925a,#064b31);
    box-shadow: 0 24px 54px rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.15);
    text-align: center;
    padding: 12px;
}

    .wsg-orbit-core strong {
        font-size: 16px;
        color: #fff!important;
    }

    .wsg-orbit-core span {
        font-size: 10px;
        color: #aee7c7;
        text-transform: uppercase;
        letter-spacing: .09em;
    }

.wsg-orbit-node {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(7px);
    color: #c8f0d9;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    padding: 7px;
}

    .wsg-orbit-node.n1 {
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
    }

    .wsg-orbit-node.n2 {
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
    }

    .wsg-orbit-node.n3 {
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
    }

    .wsg-orbit-node.n4 {
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
    }

.wsg-dark-list {
    display: grid;
    gap: 12px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

    .wsg-dark-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: #d2e6dc;
        font-size: 14px;
    }

        .wsg-dark-list li::before {
            content: "✓";
            display: grid;
            place-items: center;
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            border-radius: 50%;
            background: rgba(138,229,179,.13);
            color: #91e3b5;
            font-weight: 900;
        }

/* bnb */
.wsg-bnb-grid {
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 70px;
    align-items: center;
}

.wsg-bnb-feature-grid, .elite-bnb-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
}

.wsg-bnb-card, .elite-bnb-feature-card {
    padding: 24px;
    border: 1px solid var(--wsg-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7,74,48,.05);
}

    .wsg-bnb-card h5, .elite-bnb-feature-card h5 {
        margin: 17px 0 8px;
        color: var(--wsg-dark);
        font-size: 17px;
        font-weight: 800;
    }

    .wsg-bnb-card p, .elite-bnb-feature-card p {
        margin: 0;
        color: var(--wsg-muted);
        font-size: 13.5px;
    }

.wsg-bnb-symbol {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #f0faf5;
    color: var(--wsg-primary-2);
    font-weight: 900;
    font-size: 18px;
}

/* income */
.wsg-income-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
}

.wsg-income-card, .elite-income-type-card {
    position: relative;
    padding: 27px 23px 24px;
    border: 1px solid var(--wsg-border);
    background: #fff;
    border-radius: 21px;
    min-height: 238px;
    overflow: hidden;
    transition: transform var(--wsg-transition),box-shadow var(--wsg-transition),border-color var(--wsg-transition);
}

    .wsg-income-card:hover, .elite-income-type-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--wsg-shadow-sm);
        border-color: #bddbc9;
    }

    .wsg-income-card::after, .elite-income-type-card::after {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        right: -56px;
        top: -56px;
        background: var(--wsg-mint);
    }

    .wsg-income-card .wsg-index, .elite-income-type-card > span {
        position: relative;
        z-index: 1;
        color: #a3bcaf;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
    }

    .wsg-income-card h4, .elite-income-type-card h4 {
        position: relative;
        z-index: 1;
        margin: 18px 0 9px;
        color: var(--wsg-dark);
        font-size: 19px;
        font-weight: 800;
    }

    .wsg-income-card p, .elite-income-type-card p {
        position: relative;
        z-index: 1;
        margin: 0;
        color: var(--wsg-muted);
        font-size: 13.5px;
    }

.wsg-income-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
    margin-bottom: 18px;
}

    .wsg-income-icon svg {
        width: 22px;
        height: 22px;
    }

/* packages */
.wsg-package-layout {
    display: grid;
    grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr);
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.wsg-package-card, .elite-package-card {
    position: relative;
    border-radius: 28px;
    padding: 31px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 24px 54px rgba(0,0,0,.12);
    overflow: hidden;
}

.wsg-package-primary {
    background: linear-gradient(145deg,#fff,#f2fbf6);
}

.wsg-package-label, .elite-package-label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.wsg-package-price {
    display: flex;
    align-items: flex-start;
    margin: 28px 0 5px;
    color: var(--wsg-dark);
    font-weight: 900;
    letter-spacing: -.05em;
}

    .wsg-package-price sup {
        font-size: 24px;
        line-height: 1.2;
        margin-top: 8px;
        color: var(--wsg-primary-2);
    }

    .wsg-package-price strong {
        font-size: 66px;
        line-height: .95;
    }

.wsg-package-primary > p {
    color: var(--wsg-muted);
    font-size: 14px;
    margin: 12px 0 0;
}

.wsg-package-list, .elite-package-list {
    list-style: none;
    margin: 26px 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

    .wsg-package-list li, .elite-package-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #365046;
        font-size: 14px;
        font-weight: 700;
    }

        .wsg-package-list li::before, .elite-package-list li::before {
            content: "✓";
            width: 21px;
            height: 21px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--wsg-mint);
            color: var(--wsg-primary-2);
            font-weight: 900;
            font-size: 12px;
        }

        .elite-package-list li > i {
            display: none;
        }

.wsg-package-btn, .elite-package-btn {
    width: 100%;
    margin-top: 4px;
    min-height: 54px;
}

.wsg-pool-card {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.15);
    backdrop-filter: blur(9px);
    color: #fff!important;
}

.wsg-pool-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
}

    .wsg-pool-head h3 {
        margin: 12px 0 8px;
        color: #fff!important;
        font-size: 27px;
        font-weight: 800;
    }

    .wsg-pool-head p {
        margin: 0;
        color: #cce2d7;
        font-size: 14px;
        max-width: 560px;
    }

.wsg-pool-badge {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(159,234,193,.11);
    border: 1px solid rgba(188,239,210,.17);
    flex: 0 0 95px;
}

    .wsg-pool-badge strong {
        display: block;
        color: #fff!important;
        font-size: 31px;
        line-height: 1;
    }

    .wsg-pool-badge span {
        display: block;
        color: #ade5c5;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-top: 5px;
    }

.wsg-pool-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 24px;
}

.wsg-pool-feature {
    padding: 17px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.11);
}

    .wsg-pool-feature strong {
        display: block;
        color: #fff!important;
        font-size: 14px;
    }

    .wsg-pool-feature span {
        display: block;
        color: #bcd6ca;
        font-size: 12.5px;
        line-height: 1.5;
        margin-top: 4px;
    }

.wsg-package-disclaimer {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: #a9c8b9;
    font-size: 12px;
    text-align: center;
}

/* bonus tables */
.wsg-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.wsg-bonus-card, .elite-bonus-card {
    border: 1px solid var(--wsg-border);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(7,74,48,.06);
    overflow: hidden;
}

.wsg-bonus-card-head, .elite-bonus-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 26px 18px;
}

    .wsg-bonus-card-head span, .elite-bonus-card-header span {
        color: var(--wsg-primary-2);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .09em;
    }

    .wsg-bonus-card-head h3, .elite-bonus-card-header h3 {
        margin: 5px 0 0;
        color: var(--wsg-dark);
        font-size: 23px;
        font-weight: 800;
    }

.wsg-bonus-note, .elite-bonus-note {
    margin: 0 26px 18px;
    padding: 13px 15px;
    border-radius: 13px;
    background: var(--wsg-light);
    color: var(--wsg-muted);
    font-size: 12.5px;
    border: 1px solid var(--wsg-border);
}

.wsg-table-wrap, .elite-bonus-table-wrap {
    overflow: auto;
    max-height: 520px;
    border-top: 1px solid var(--wsg-border);
}

.wsg-table, .elite-bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0!important;
}

    .wsg-table th, .wsg-table td, .elite-bonus-table th, .elite-bonus-table td {
        padding: 13px 16px!important;
        border: 0!important;
        border-bottom: 1px solid #edf4f0!important;
        text-align: left;
        white-space: nowrap;
        font-size: 13px;
    }

    .wsg-table thead th, .elite-bonus-table thead th {
        position: sticky;
        top: 0;
        background: #f5fbf7;
        color: #4f685d;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .08em;
        font-weight: 900;
        z-index: 1;
    }

    .wsg-table tbody td, .elite-bonus-table tbody td {
        color: #365046;
    }

    .wsg-table tbody tr:hover td, .elite-bonus-table tbody tr:hover td {
        background: #fbfefc;
    }

    .wsg-table tbody td:last-child, .elite-bonus-table tbody td:last-child {
        color: var(--wsg-primary-2);
        font-weight: 800;
    }

/* royalty */
.wsg-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.wsg-benefit-panel, .elite-benefit-card {
    padding: 30px;
    border-radius: 26px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(9px);
}

.wsg-benefit-panel-top, .elite-benefit-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wsg-benefit-panel-icon, .elite-benefit-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(175,237,203,.11);
    border: 1px solid rgba(210,245,226,.12);
    color: #b9efcf;
}

.wsg-benefit-panel-top span, .elite-benefit-top span {
    color: #a8d5bd;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.wsg-benefit-panel-top h3, .elite-benefit-top h3 {
    color: #fff!important;
    margin: 4px 0 0;
    font-size: 23px;
    font-weight: 800;
}

    .elite-benefit-top h3 strong {
        font-weight: 800;
        color: #9ee5bc;
    }

.wsg-benefit-panel > p, .elite-benefit-card > p {
    color: #c8ded3;
    margin: 20px 0 0;
    font-size: 14px;
}

.wsg-benefit-highlight, .elite-benefit-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}

    .wsg-benefit-highlight strong, .elite-benefit-highlight > span {
        font-size: 32px;
        color: #fff!important;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -.04em;
    }

    .wsg-benefit-highlight p, .elite-benefit-highlight p {
        margin: 0;
        color: #bcd8ca;
        font-size: 12.5px;
        line-height: 1.5;
    }

.wsg-benefit-list, .elite-benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

    .wsg-benefit-list li, .elite-benefit-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #d3e5dc;
        font-size: 13.5px;
    }

        .wsg-benefit-list li::before, .elite-benefit-list li::before {
            content: "✓";
            width: 21px;
            height: 21px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(164,232,194,.1);
            color: #a7e9c3;
            flex: 0 0 21px;
            font-size: 11px;
            font-weight: 900;
        }

        .elite-benefit-list li > i {
            display: none;
        }

/* wallets/security */
.wsg-security-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 60px;
    align-items: center;
}

.wsg-security-panel {
    padding: 30px;
    border: 1px solid var(--wsg-border);
    border-radius: 28px;
    background: linear-gradient(145deg,#fff,#f3faf6);
    box-shadow: var(--wsg-shadow-sm);
}

.wsg-security-rows {
    display: grid;
    gap: 14px;
}

.wsg-security-row {
    display: flex;
    gap: 14px;
    padding: 17px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid var(--wsg-border);
}

    .wsg-security-row strong {
        display: block;
        color: var(--wsg-dark);
        font-size: 14px;
    }

    .wsg-security-row span {
        display: block;
        color: var(--wsg-muted);
        font-size: 12.5px;
        margin-top: 4px;
    }

    .wsg-security-row .wsg-icon-box {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

.wsg-wallet-section, .elite-wallet-section {
    padding: 84px 0;
    background: #fff;
}

.wsg-wallet-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.wsg-wallet-card, .elite-wallet-box-new {
    padding: 22px 18px;
    text-align: center;
    border: 1px solid var(--wsg-border);
    border-radius: 19px;
    background: #fff;
    transition: transform var(--wsg-transition),box-shadow var(--wsg-transition);
}

    .wsg-wallet-card:hover, .elite-wallet-box-new:hover {
        transform: translateY(-3px);
        box-shadow: var(--wsg-shadow-sm);
    }

.wsg-wallet-mark {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--wsg-mint);
    color: var(--wsg-primary-2);
    font-size: 15px;
    font-weight: 900;
}

.wsg-wallet-card h4, .elite-wallet-box-new h4 {
    margin: 0;
    color: var(--wsg-dark);
    font-size: 16px;
    font-weight: 800;
}

.wsg-wallet-card p, .elite-wallet-box-new p {
    margin: 6px 0 0;
    color: var(--wsg-muted);
    font-size: 12.5px;
}

.elite-wallet-logo {
    display: none;
}

/* contact */
.wsg-contact {
    padding: 104px 0;
    background: linear-gradient(180deg,#f6fbf8,#fff);
}

.wsg-contact-grid {
    display: grid;
    grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
    gap: 26px;
    align-items: stretch;
}

.wsg-contact-info, .elite-contact-info {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(145deg,#083d2c,#075c3a);
    overflow: hidden;
    color: #fff!important;
    min-height: 100%;
}

    .wsg-contact-info::before, .elite-contact-info::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 15%,rgba(142,231,181,.18),transparent 26%),url('../images/backgrounds/wsg-grid.svg');
        opacity: .8;
    }

    .wsg-contact-info > * {
        position: relative;
        z-index: 1;
    }

    .wsg-contact-info h3, .elite-contact-info h3 {
        margin: 15px 0 12px;
        color: #fff!important;
        font-size: clamp(1.7rem,3vw,2.35rem);
        line-height: 1.08;
        letter-spacing: -.035em;
        font-weight: 800;
    }

    .wsg-contact-info > p, .elite-contact-info > p {
        color: #c5ddd1;
        font-size: 14px;
        margin: 0 0 24px;
    }

.wsg-contact-visual {
    margin: 12px -8px 18px;
}

    .wsg-contact-visual img {
        width: 100%;
        display: block;
        filter: brightness(1.1);
    }

.wsg-contact-meta {
    display: grid;
    gap: 10px;
}

.wsg-contact-meta-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px;
    border-radius: 15px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
}

    .wsg-contact-meta-item strong {
        display: block;
        color: #fff!important;
        font-size: 12.5px;
    }

    .wsg-contact-meta-item a, .wsg-contact-meta-item span {
        display: block;
        color: #b7d6c7;
        font-size: 12px;
        margin-top: 3px;
        word-break: break-word;
    }

        .wsg-contact-meta-item a:hover {
            color: #fff!important;
        }

.wsg-contact-form, .elite-contact-form-box {
    padding: 34px;
    border: 1px solid var(--wsg-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--wsg-shadow-sm);
}

    .wsg-contact-form h4, .elite-contact-form-box h4 {
        margin: 0;
        color: var(--wsg-dark);
        font-size: 24px;
        font-weight: 800;
    }

    .wsg-contact-form > p, .elite-contact-form-box > p {
        color: var(--wsg-muted);
        font-size: 13.5px;
        margin: 8px 0 25px;
    }

.wsg-form-field, .elite-contact-field {
    margin-bottom: 16px;
}

    .wsg-form-field label, .elite-contact-field label {
        display: block;
        color: #385348;
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .wsg-form-field .form-control, .elite-contact-field .form-control {
        width: 100%;
        min-height: 54px;
        border: 1px solid var(--wsg-border-strong);
        border-radius: 13px;
        background: #fbfefc;
        color: var(--wsg-dark);
        padding: 12px 14px;
        box-shadow: none;
        transition: border-color var(--wsg-transition),box-shadow var(--wsg-transition),background var(--wsg-transition);
    }

    .wsg-form-field textarea.form-control, .elite-contact-field textarea.form-control {
        min-height: 130px;
        resize: vertical;
    }

    .wsg-form-field .form-control:focus, .elite-contact-field .form-control:focus {
        border-color: #69b68f;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(15,146,90,.08);
        outline: none;
    }

.elite-contact-btn {
    min-height: 54px;
    border: 0;
}

    .elite-contact-btn i {
        display: none;
    }

/* footer */
.wsg-footer {
    position: relative;
    background: #071f17;
    color: #a9c4b7;
    overflow: hidden;
}

    .wsg-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 16% 18%,rgba(23,149,92,.12),transparent 26%),url('../images/backgrounds/wsg-grid.svg');
        opacity: .55;
    }

.wsg-footer-top {
    position: relative;
    z-index: 1;
    padding: 72px 0 52px;
}

.wsg-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr .85fr 1fr;
    gap: 44px;
}

.wsg-footer-logo img {
    width: 238px;
    height: auto;
}

.wsg-footer-about p {
    max-width: 420px;
    margin: 18px 0 0;
    color: #9eb9ac;
    font-size: 13.5px;
}

.wsg-footer h5 {
    margin: 4px 0 17px;
    color: #fff!important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
}

.wsg-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

    .wsg-footer-links a {
        color: #a4beb1;
        font-size: 13px;
        transition: color var(--wsg-transition),transform var(--wsg-transition);
        display: inline-flex;
    }

        .wsg-footer-links a:hover {
            color: #d8f2e4;
            transform: translateX(2px);
        }

.wsg-footer-contact {
    display: grid;
    gap: 12px;
}

.wsg-footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #a4beb1;
    font-size: 12.5px;
}

    .wsg-footer-contact-item svg {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
        color: #8bd8ad;
        margin-top: 2px;
    }

    .wsg-footer-contact-item a {
        word-break: break-word;
    }

.wsg-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
}

.wsg-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #829f91;
}

.wsg-footer-bottom a {
    color: #a9cbbb;
}

.wsg-socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.wsg-social {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #a9d6bd;
    font-size: 12px;
    font-weight: 800;
    transition: background var(--wsg-transition),color var(--wsg-transition),transform var(--wsg-transition);
}

    .wsg-social:hover {
        background: rgba(255,255,255,.1);
        color: #fff!important;
        transform: translateY(-2px);
    }

/* back to top */
#back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--wsg-transition);
}

    #back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    #back-to-top .top {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: var(--wsg-gradient);
        color: #fff!important;
        box-shadow: 0 12px 28px rgba(7,92,58,.25);
    }

        #back-to-top .top::before {
            content: "↑";
            font-size: 19px;
            font-weight: 700;
        }

        #back-to-top .top > * {
            display: none;
        }

/* auth modals + legacy compatibility */
.modal-backdrop.show {
    opacity: .38;
    background: #09281d;
}

.wsg-auth-modal .modal-dialog, .elite-auth-modal .modal-dialog {
    max-width: 540px;
    padding: 12px;
}

    .wsg-auth-modal .modal-dialog.wsg-register-dialog, .elite-register-dialog {
        max-width: 600px;
    }

.wsg-auth-card, .elite-auth-card, .wsg-simple-auth-card, .elite-simple-auth-card {
    position: relative;
    border: 1px solid rgba(204,228,216,.95)!important;
    border-radius: 28px!important;
    background: #fff!important;
    box-shadow: 0 32px 90px rgba(7,51,35,.25)!important;
    overflow: hidden;
}

    .wsg-auth-card::before, .elite-auth-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--wsg-gradient);
    }

.wsg-auth-shape, .elite-auth-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -92px;
    top: -86px;
    background: radial-gradient(circle,rgba(15,146,90,.13),rgba(15,146,90,0) 68%);
    pointer-events: none;
}

.wsg-auth-header, .elite-auth-header {
    position: relative;
    padding: 29px 31px 20px!important;
    border: 0!important;
    display: flex!important;
    align-items: flex-start!important;
    justify-content: space-between!important;
    gap: 20px!important;
}

.wsg-auth-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;
}

    .wsg-auth-brand img {
        width: 166px;
        height: auto;
    }

.wsg-auth-badge, .elite-auth-badge {
    display: inline-flex;
    color: var(--wsg-primary-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.wsg-auth-header .modal-title, .elite-auth-header .modal-title {
    font-size: 29px;
    line-height: 1.1;
    color: var(--wsg-dark);
    font-weight: 800;
    letter-spacing: -.035em;
}

.wsg-auth-header p, .elite-auth-header p {
    margin: 7px 0 0;
    color: var(--wsg-muted);
    font-size: 13px;
    line-height: 1.55;
    max-width: 410px;
}

.wsg-close, .elite-close {
    position: relative;
    z-index: 2;
    width: 36px!important;
    height: 36px!important;
    border-radius: 11px!important;
    border: 1px solid var(--wsg-border)!important;
    background-color: #f7fcf9!important;
    opacity: 1!important;
    box-shadow: none!important;
    margin: 0!important;
    padding: 0!important;
}

    .wsg-close:hover, .elite-close:hover {
        background-color: var(--wsg-mint)!important;
    }

.wsg-auth-body, .elite-auth-body {
    padding: 7px 31px 28px!important;
}

.wsg-auth-field, .elite-input-box {
    margin-bottom: 17px;
}

    .wsg-auth-field > label, .elite-input-box > label {
        display: block;
        margin: 0 0 7px;
        color: #3c554a;
        font-size: 11px;
        font-weight: 800;
    }

.wsg-input-wrap, .elite-input-wrap {
    position: relative;
}

    .wsg-input-wrap .form-control, .elite-input-wrap .form-control, .elite-input-box > .form-control {
        width: 100%;
        height: 56px!important;
        padding: 12px 135px 12px 45px!important;
        border: 1px solid var(--wsg-border-strong)!important;
        border-radius: 14px!important;
        background: #fbfefc!important;
        color: var(--wsg-dark)!important;
        box-shadow: none!important;
        font-size: 13px!important;
    }

    .wsg-input-wrap.no-connect .form-control, .elite-input-wrap.no-connect .form-control {
        padding-right: 14px!important;
    }

    .wsg-input-wrap .form-control:focus, .elite-input-wrap .form-control:focus, .elite-input-box > .form-control:focus {
        border-color: #6bb893!important;
        box-shadow: 0 0 0 4px rgba(15,146,90,.08)!important;
        background: #fff!important;
        outline: none;
    }

    .wsg-input-wrap .form-control[readonly], .elite-input-wrap .form-control[readonly] {
        background: #f7fbf9!important;
        color: #536c61!important;
        cursor: default;
    }

    .wsg-field-icon, .elite-input-wrap > i.fa-wallet, .elite-input-wrap > i.fa-user-group, .elite-input-wrap > i.fa-user, .elite-input-wrap > i.fa-left-right {
            position: absolute;
    left: 10px;
    top: 45%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    color: var(--wsg-primary-2);
    font-style: normal;
    display: grid;
    place-items: center;
    z-index: 2;
    }

        .elite-input-wrap > i.fa-wallet::before {
            content: "◈";
            font-size: 18px;
        }

        .elite-input-wrap > i.fa-user-group::before {
            content: "◎";
            font-size: 16px;
        }

        .elite-input-wrap > i.fa-user::before {
            content: "●";
            font-size: 10px;
        }

        .elite-input-wrap > i.fa-left-right::before {
            content: "↔";
            font-size: 18px;
        }

.connect-link {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: #eaf8f1;
    color: var(--wsg-primary-2)!important;
    font-size: 10.5px;
    font-weight: 900;
    white-space: nowrap;
}

    .connect-link:hover {
        background: #dff3e9;
        color: var(--wsg-primary)!important;
    }

.wsg-auth-btn, .elite-auth-btn {
    width: 100%;
    min-height: 54px!important;
    margin: 4px 0 0!important;
    border-radius: 14px!important;
    background: var(--wsg-gradient)!important;
    color: #fff!important;
    box-shadow: 0 13px 28px rgba(7,92,58,.2)!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    gap: 10px!important;
    padding: 0 18px!important;
    font-size: 13px!important;
    font-weight: 900!important;
    cursor: pointer;
}

    .wsg-auth-btn:hover, .elite-auth-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 17px 34px rgba(7,92,58,.25)!important;
    }

    .wsg-auth-btn > i, .elite-auth-btn > i:not(.loader-icon):not(.check-icon):not(.cross-icon) {
        display: none;
    }

.wsg-loading-btn, .elite-loading-btn {
    opacity: .75;
    cursor: wait!important;
}

    .wsg-loading-btn::after, .elite-loading-btn::after {
        content: "";
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255,255,255,.35);
        border-top-color: #fff!important;
        border-radius: 50%;
        animation: wsg-spin .7s linear infinite;
    }

    .elite-loading-btn i {
        display: none!important;
    }

.wsg-auth-footer, .elite-auth-footer {
    display: block!important;
    padding: 17px 31px 23px!important;
    border-top: 1px solid #edf4f0!important;
    background: #fbfefc!important;
    color: var(--wsg-muted)!important;
    font-size: 12.5px!important;
}

    .wsg-auth-footer a, .elite-auth-footer a {
        color: var(--wsg-primary-2)!important;
        font-weight: 900;
        margin-left: 4px;
        cursor: pointer;
    }

    .wsg-auth-footer .wsg-auth-footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

.wsg-terms, .elite-terms {
    margin: 2px 0 15px;
}

    .wsg-terms label, .elite-terms label {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: var(--wsg-muted);
        font-size: 12px;
    }

    .wsg-terms input, .elite-terms input {
        width: 17px;
        height: 17px;
        margin: 1px 0 0;
        accent-color: var(--wsg-primary-2);
        flex: 0 0 17px;
    }

    .elite-terms .checkmark {
        display: none;
    }

    .wsg-terms a, .elite-terms a {
        color: var(--wsg-primary-2);
        font-weight: 800;
    }

.elite-icon-status-box .elite-status-icon {
    left: auto!important;
    right: 12px!important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    position: absolute!important;
    width: 22px!important;
    height: 22px!important;
    border-radius: 50%;
    display: grid!important;
    place-items: center;
    font-style: normal;
    font-size: 0;
}

.elite-icon-status-box .loader-icon {
    border: 2px solid #d5e8de;
    border-top-color: var(--wsg-primary-2);
    animation: wsg-spin .7s linear infinite;
}

    .elite-icon-status-box .loader-icon[style*="display: none"] {
        display: none!important;
    }

.elite-icon-status-box .check-icon {
    background: #e8f7ef;
    color: var(--wsg-success);
    font-size: 0;
}

    .elite-icon-status-box .check-icon::before {
        content: "✓";
        font-size: 12px;
        font-weight: 900;
    }

.elite-icon-status-box .cross-icon {
    background: #fff0f0;
    color: var(--wsg-danger);
    font-size: 0;
}

    .elite-icon-status-box .cross-icon::before {
        content: "×";
        font-size: 15px;
        font-weight: 900;
    }

    .elite-icon-status-box .check-icon[style*="display: none"], .elite-icon-status-box .cross-icon[style*="display: none"] {
        display: none!important;
    }

.wsg-recovery-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 13px;
    background: var(--wsg-light);
    border: 1px solid var(--wsg-border);
    color: var(--wsg-muted);
    font-size: 11.5px;
    margin-bottom: 16px;
}

    .wsg-recovery-note::before {
        content: "i";
        width: 20px;
        height: 20px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--wsg-mint);
        color: var(--wsg-primary-2);
        font-weight: 900;
        flex: 0 0 20px;
    }

.wsg-simple-auth-card, .elite-simple-auth-card {
    padding: 24px;
}

.wsg-simple-logo, .elite-modal-logo {
    width: 190px;
    height: auto;
}

.wsg-simple-title, .elite-simple-title {
    color: var(--wsg-dark);
    font-weight: 800;
}

.elite-simple-input {
    position: relative;
    margin-bottom: 14px;
}

    .elite-simple-input label {
        font-size: 11px;
        color: #3d574b;
        font-weight: 800;
    }

    .elite-simple-input input {
        width: 100%;
        height: 52px;
        border: 1px solid var(--wsg-border-strong);
        border-radius: 13px;
        padding: 0 42px 0 14px;
        background: #fbfefc;
        outline: 0;
    }

        .elite-simple-input input:focus {
            border-color: #6bb893;
            box-shadow: 0 0 0 4px rgba(15,146,90,.08);
        }

    .elite-simple-input > i {
        display: none;
    }

.elite-simple-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 13px;
    background: var(--wsg-gradient);
    color: #fff!important;
    font-weight: 800;
}

.elite-simple-footer, .elite-simple-options {
    font-size: 12px;
    color: var(--wsg-muted);
}

    .elite-simple-footer a, .elite-simple-options a {
        color: var(--wsg-primary-2);
        font-weight: 800;
    }

@keyframes wsg-spin {
    to {
        transform: rotate(360deg);
    }
}

/* compatibility helpers */
.main-content {
    overflow: hidden;
}

.heading-title {
    text-align: center;
    margin-bottom: 38px;
}

    .heading-title.text-white p {
        color: #c7ded2;
    }

.iq-font-yellow {
    color: var(--wsg-primary-2)!important;
}

.text-white {
    color: #fff!important;
}

.white {
    color: #fff!important;
}

.table-responsive {
    overflow-x: auto;
}

.iq-mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.iq-mb-20 {
    margin-bottom: 20px;
}

.iq-mb-25 {
    margin-bottom: 25px;
}

.iq-mt-20 {
    margin-top: 20px;
}

.iq-mt-25 {
    margin-top: 25px;
}

.iq-mt-35 {
    margin-top: 35px;
}

.iq-ml-15 {
    margin-left: 15px;
}

select.form-control, select.form-select {
    appearance: auto;
}

select option {
    background: #fff;
    color: var(--wsg-dark);
}

/* reveal */
[data-wsg-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease,transform 600ms ease;
}

    [data-wsg-reveal].is-revealed {
        opacity: 1;
        transform: none;
    }

[data-wsg-reveal-delay="1"] {
    transition-delay: 80ms;
}

[data-wsg-reveal-delay="2"] {
    transition-delay: 160ms;
}

[data-wsg-reveal-delay="3"] {
    transition-delay: 240ms;
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        scroll-behavior: auto!important;
        transition-duration: .01ms!important;
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
    }

    [data-wsg-reveal] {
        opacity: 1!important;
        transform: none!important;
    }
}

.elite-icon-status-box .elite-input-wrap .form-control {
    padding-right: 50px!important;
}
