    @font-face {
        font-family: 'Inter';
        src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
        font-weight: 100 900;
        font-style: normal;
        font-display: swap;
    }


    :root {
        --green: #A6FF3D;
        --green-dark: #8DF928;
        --green-dim: rgba(166, 255, 61, 0.15);
        --green-dim2: rgba(166, 255, 61, 0.08);
        --bg: #0A0E07;
        --bg-card: #11160C;
        --card: #FFFFFF0B;
        --card2: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.035) 100%);
        --border: rgba(166, 255, 61, 0.18);
        --border-soft: #FFFFFF1F;
        --text: #F4F7F5;
        --text-muted: rgba(255, 255, 255, 0.6);
        --text-dim: rgba(255, 255, 255, 0.4);
        --btn-gradient: linear-gradient(105.3deg, #A6FF3D 0%, #8DF928 100%);
        --radius-lg: 24px;
        --radius: 16px;
        --radius-sm: 12px;
        --radius-xs: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased
    }

    html,
    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block
    }

    a {
        color: inherit;
        text-decoration: none
    }

    button {
        font-family: inherit;
        cursor: pointer
    }

    /* PRELOADER */
    #preloader {
        position: fixed;
        inset: 0;
        background: #0A0E07;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity .5s ease, visibility .5s ease
    }

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    .preloader-inner {
        position: relative;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .preloader-logo {
        width: 32px;
        height: 32px;
        background: var(--btn-gradient);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .preloader-ring {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(166, 255, 61, 0.15);
        border-top-color: #A6FF3D;
        animation: spin .9s linear infinite
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    /* ANIMATIONS */
    @keyframes pulse-green {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(166, 255, 61, .5)
        }

        50% {
            box-shadow: 0 0 0 10px rgba(166, 255, 61, 0)
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateX(20%) translateY(0)
        }

        50% {
            transform: translateX(20%) translateY(-12px)
        }
    }

    @keyframes glow {

        0%,
        100% {
            filter: drop-shadow(0 0 30px rgba(166, 255, 61, .2))
        }

        50% {
            filter: drop-shadow(0 0 50px rgba(166, 255, 61, .4))
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s cubic-bezier(.25, .8, .25, 1), transform .7s cubic-bezier(.25, .8, .25, 1)
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .reveal-left {
        opacity: 0;
        transform: translateX(-32px);
        transition: opacity .7s cubic-bezier(.25, .8, .25, 1), transform .7s cubic-bezier(.25, .8, .25, 1)
    }

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(32px);
        transition: opacity .7s cubic-bezier(.25, .8, .25, 1), transform .7s cubic-bezier(.25, .8, .25, 1)
    }

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .reveal-scale {
        opacity: 0;
        transform: scale(.96);
        transition: opacity .7s cubic-bezier(.25, .8, .25, 1), transform .7s cubic-bezier(.25, .8, .25, 1)
    }

    .reveal-scale.visible {
        opacity: 1;
        transform: scale(1)
    }

    .delay-1 {
        transition-delay: .08s
    }

    .delay-2 {
        transition-delay: .16s
    }

    .delay-3 {
        transition-delay: .24s
    }

    .delay-4 {
        transition-delay: .32s
    }

    .delay-5 {
        transition-delay: .4s
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px
    }

    /* BUTTONS */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 11px 20px;
        border-radius: var(--radius-xs);
        font-size: 14px;
        font-weight: 600;
        border: none;
        transition: transform .2s ease, box-shadow .2s ease;
        white-space: nowrap;
        cursor: pointer
    }

    .btn:hover {
        transform: translateY(-1px)
    }

    .btn:active {
        transform: translateY(0)
    }

    .btn-primary {
        background: var(--btn-gradient);
        color: #0B1A00;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(141, 249, 40, .25)
    }

    .btn-primary:hover {
        box-shadow: 0 8px 32px rgba(141, 249, 40, .45)
    }

    .btn-secondary {
        background: rgba(255, 255, 255, .06);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .1)
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, .1)
    }

    .btn-outline {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .15)
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, .05);
        border-color: rgba(255, 255, 255, .3)
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: var(--radius-sm)
    }

    /* HEADER */
    header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(10, 14, 7, .85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-soft)
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        gap: 24px
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        background: var(--btn-gradient);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .logo-icon svg {
        width: 14px;
        height: 14px
    }

    .logo-text {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        letter-spacing: -.3px
    }

    .logo-text span {
        color: var(--green)
    }

    nav {
        display: flex;
        align-items: center;
        gap: 4px
    }

    nav a {
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: var(--radius-xs);
        transition: color .2s, background .2s
    }

    nav a:hover {
        color: #fff;
        background: rgba(255, 255, 255, .04)
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 14px
    }

    .lang-toggle {
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted)
    }

    .lang-toggle button {
        background: none;
        border: none;
        color: var(--text-muted);
        font-weight: 600;
        font-size: 13px;
        padding: 4px 6px;
        transition: color .2s
    }

    .lang-toggle button.active {
        color: #fff
    }

    .lang-toggle .sep {
        color: rgba(255, 255, 255, .2);
        padding: 0 2px
    }

    /* BURGER */
    .burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
        background: none;
        border: none
    }

    .burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform .3s, opacity .3s
    }

    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px)
    }

    .burger.open span:nth-child(2) {
        opacity: 0
    }

    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 7, .98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-soft);
        padding: 20px 24px;
        z-index: 99;
        flex-direction: column;
        gap: 4px
    }

    .mobile-menu.open {
        display: flex
    }

    .mobile-menu a {
        color: var(--text-muted);
        font-size: 16px;
        font-weight: 500;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-soft)
    }

    .mobile-menu a:last-of-type {
        border-bottom: none
    }

    .mobile-menu .btn {
        margin-top: 12px;
        width: 100%
    }

    .mobile-menu .btn-primary {
        color: black
    }

    /* HERO */
    .hero {
        position: relative;
        overflow: hidden;
        padding: 60px 0 40px;
        background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(141, 249, 40, .10) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 100% 30%, rgba(166, 255, 61, .08) 0%, transparent 60%)
    }

    .hero-inner {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 24px;
        align-items: center;
        min-height: 540px
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(166, 255, 61, .08);
        border: 1px solid rgba(166, 255, 61, .25);
        border-radius: 999px;
        padding: 6px 14px 6px 10px;
        font-size: 12px;
        font-weight: 500;
        color: var(--green);
        margin-bottom: 28px
    }

    .hero-badge-dot {
        width: 6px;
        height: 6px;
        background: var(--green);
        border-radius: 50%;
        animation: pulse-green 2s infinite
    }

    .hero h1 {
        font-size: clamp(40px, 5.2vw, 64px);
        font-weight: 900;
        line-height: 1.02;
        letter-spacing: -2.5px;
        margin-bottom: 28px
    }

    .hero h1 .green {
        background: var(--btn-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .hero-desc {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 480px
    }

    .hero-desc strong {
        color: #fff;
        font-weight: 600
    }

    .hero-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap
    }

    .hero-visual {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .hero-athlete {
        position: absolute;
        width: 110%;
        max-width: 620px;
        right: -8%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        animation: glow 4s ease-in-out infinite
    }

    .hero-phone {
        position: relative;
        z-index: 2;
        width: 286px;
        max-width: 100%;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .6));
        animation: float 5s ease-in-out infinite;
        margin-left: auto;
        transform: translateX(20%)
    }

    /* STATS BAR */
    .stats-bar {
        padding: 32px 0
    }

    .stats-grid {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        background: var(--card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-xs);
        flex: 1;
        min-width: 140px
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 26px;
        font-weight: 800
    }

    .stat-num {
        font-size: 12px;
        font-weight: 800;
        color: #fff;
        line-height: 1
    }

    .stat-label {
        font-size: 11px;
        color: var(--text-dim);
        margin-top: 3px;
        line-height: 1.3
    }

    /* SECTION */
    section {
        padding: 32px 0
    }

    .section-title {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 900;
        letter-spacing: -1.8px;
        line-height: 1.05
    }

    .section-subtitle {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 540px
    }

    /* FEATURES */
    .features-inner {
        display: grid;
        grid-template-columns: 1fr 2.2fr;
        gap: 56px;
        align-items: start
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px
    }

    .feature-card {
        background: var(--card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 24px;
        transition: border-color .3s ease, transform .3s ease
    }

    .feature-card:hover {
        border-color: var(--border);
        transform: translateY(-4px)
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--green-dim);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 16px;
        flex-shrink: 0
    }

    .feature-card h3 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #fff
    }

    .feature-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.6
    }

    /* HOW IT WORKS */
    .how-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
        margin-bottom: 40px
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px
    }

    .step-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .035) 100%);
        border-top: 1px solid #FFFFFF1F;
        border-radius: var(--radius);
        padding: 24px 20px;
        position: relative;
        transition: border-color .3s ease, transform .3s ease
    }

    .step-card:hover {
        border-color: var(--border);
        transform: translateY(-4px)
    }

    .step-num {
        font-size: 80px;
        font-weight: 900;
        color: #FFFFFF12;
        line-height: 1;
        margin-bottom: 24px;
        letter-spacing: -3px
    }

    .step-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: transparent;
        border: 1.5px solid var(--green);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 0 24px 0 #A6FF3D38
    }

    .step-card h3 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.3
    }

    .step-card p {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.5
    }

    /* RESCUE */
    .rescue {
        background: var(--bg-card);
        border: 1.5px solid var(--green);
        border-radius: var(--radius-lg);
        padding: 40px;
        margin-top: 40px;
        position: relative;
        overflow: hidden
    }

    .rescue::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(164, 255, 61, .144) 0%, transparent 60%);
        pointer-events: none
    }

    .rescue-inner {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        align-items: center;
        position: relative;
        z-index: 1
    }

    .rescue h2 {
        font-size: clamp(26px, 3.2vw, 38px);
        font-weight: 900;
        letter-spacing: -1.2px;
        margin-bottom: 20px;
        line-height: 1.1
    }

    .rescue h2 .green {
        background: var(--btn-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .rescue p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 380px
    }

    .rescue-flow {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        align-items: stretch
    }

    .rescue-step {
        background: var(--card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        padding: 14px;
        position: relative;
        display: flex;
        flex-direction: column
    }

    .rescue-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--green);
        font-size: 20px;
        font-weight: 700;
        z-index: 2;
        width: 12px;
        text-align: center
    }

    .rescue-step h4 {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 4px
    }

    .rescue-step p {
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.4;
        margin-bottom: 10px
    }

    .rescue-step-img {
        width: 100%;
        aspect-ratio: 1.4/1;
        background: #1F2914;
        border-radius: 8px;
        overflow: hidden;
        margin-top: auto
    }

    .rescue-step-img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .rescue-step-final {
        background: var(--green-dim);
        border: 1px solid rgba(166, 255, 61, .4)
    }

    .rescue-step-final .shield-icon {
        margin: auto;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green)
    }

    .rescue-step-final .shield-icon svg {
        width: 56px;
        height: 56px
    }

    /* RULES */
    .rules-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .rules-block h2 {
        font-size: clamp(26px, 3.2vw, 38px);
        font-weight: 900;
        letter-spacing: -1.2px;
        margin-bottom: 24px
    }

    .rules-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: var(--card);
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--border-soft)
    }

    .rules-table th {
        text-align: left;
        font-size: 12px;
        font-weight: 600;
        color: var(--text-dim);
        padding: 14px 20px;
        border-bottom: 1px solid var(--border-soft);
        background: rgba(255, 255, 255, .02)
    }

    .rules-table td {
        padding: 14px 20px;
        font-size: 13px;
        border-bottom: 1px solid var(--border-soft);
        color: var(--text-muted)
    }

    .rules-table tr:last-child td {
        border-bottom: none
    }

    .rule-status {
        display: inline-flex;
        align-items: center;
        gap: 10px
    }

    .rule-status .ico {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800
    }

    .ico-ok {
        background: rgba(166, 255, 61, .18);
        color: var(--green)
    }

    .ico-warn {
        background: rgba(255, 165, 0, .18);
        color: #FFB347
    }

    .ico-bad {
        background: rgba(255, 80, 80, .18);
        color: #FF7070
    }

    .rules-result {
        color: #fff;
        font-weight: 500
    }

    /* MONEY */
    .money-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px
    }

    .money-card {
        background: var(--card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius);
        padding: 18px 14px;
        text-align: center;
        transition: border-color .3s, transform .3s
    }

    .money-card:hover {
        border-color: var(--border);
        transform: translateY(-3px)
    }

    .money-card .icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: var(--green-dim);
        color: var(--green);
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700
    }

    .money-card.danger .icon {
        background: rgba(255, 80, 80, .15);
        color: #FF7070
    }

    .money-card h4 {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #fff
    }

    .money-card.danger h4 {
        color: #FF7070
    }

    .money-card p {
        font-size: 10px;
        color: var(--text-muted);
        line-height: 1.4
    }

    .money-notes {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    .money-note {
        font-size: 12px;
        color: var(--text-muted);
        padding: 12px 16px;
        background: var(--card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-xs);
        display: flex;
        align-items: center;
        gap: 8px
    }

    .money-note::before {
        content: '✦';
        color: var(--green);
        font-size: 14px
    }

    /* PROMO */
    .promo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .promo-card {
        border-radius: var(--radius-lg);
        padding: 36px;
        position: relative;
        overflow: hidden;
        min-height: 380px;
        display: flex;
        flex-direction: column
    }

    .promo-ref {
        background: linear-gradient(135deg, #131A0C 0%, #1A2410 100%);
        border: 1px solid var(--border-soft)
    }

    .promo-ref-bg {
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
        width: 60%;
        background: url('images/friends.png') center right/cover no-repeat;
        mask-image: linear-gradient(to right, transparent 0%, black 30%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
        pointer-events: none
    }

    .promo-ref>* {
        z-index: 1
    }

    .promo-partner {
        background: var(--card);
        border: 1px solid var(--border-soft)
    }

    .promo-card h2 {
        font-size: clamp(22px, 2.8vw, 30px);
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 14px;
        line-height: 1.15
    }

    .promo-card h2 .green {
        color: var(--green)
    }

    .promo-card>p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 320px
    }

    .partner-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 24px
    }

    .partner-card {
        background: var(--card2);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-sm);
        padding: 14px;
        transition: border-color .3s
    }

    .partner-card:hover {
        border-color: var(--border)
    }

    .partner-card-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: var(--green-dim);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin-bottom: 12px;
        flex-shrink: 0
    }

    .partner-card h4 {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #fff;
        line-height: 1.3
    }

    .partner-card p {
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.4
    }

    .promo-partner .btn {
        margin-top: auto;
        width: 100%
    }

    .promo-ref .btn {
        margin-top: auto;
        align-self: flex-start
    }

    /* FAQ */
    .faq h2 {
        margin-bottom: 32px;
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 900;
        letter-spacing: -1.8px
    }

    .faq-inner {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 24px;
        align-items: stretch
    }

    .faq-image {
        border-radius: var(--radius);
        overflow: hidden;
        background: #0F1408;
        min-height: 320px
    }

    .faq-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: -290px center
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 6px
    }

    .faq-item {
        background: var(--card);
        border: 1px solid var(--border-soft);
        border-radius: var(--radius-xs);
        overflow: hidden;
        transition: border-color .2s
    }

    .faq-item.open {
        border-color: var(--border)
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        gap: 16px;
        user-select: none;
        background: none;
        border: none;
        color: #F4F7F5;
        width: 100%;
        text-align: left;
        transition: color .4s ease
    }

    .faq-question:hover {
        color: var(--green)
    }

    .faq-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        font-size: 18px;
        font-weight: 300;
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .3s
    }

    .faq-item.open .faq-icon {
        transform: rotate(45deg)
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s cubic-bezier(.25, .8, .25, 1)
    }

    .faq-answer-inner {
        padding: 0 20px 18px;
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7
    }

    /* CTA */
    .cta-card {
        position: relative;
        background: url('images/cta-bg.png') center/cover no-repeat, #0A0E07;
        border-radius: var(--radius-lg);
        padding: 80px 40px;
        overflow: hidden;
        min-height: 280px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .cta-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 14, 7, .2) 0%, rgba(10, 14, 7, .5) 100%);
        pointer-events: none
    }

    .cta-content {
        position: relative;
        z-index: 1;
        text-align: center
    }

    .cta-content h2 {
        font-size: clamp(28px, 4.5vw, 48px);
        font-weight: 900;
        letter-spacing: -2px;
        margin-bottom: 28px;
        line-height: 1.1
    }

    .cta-content h2 .green {
        background: var(--btn-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .cta-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap
    }

    /* FOOTER */
    footer {
        background: var(--bg);
        border-top: 1px solid var(--border-soft);
        padding: 56px 0 32px
    }

    .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px
    }

    .footer-brand p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-top: 16px;
        max-width: 240px
    }

    .footer-col h4 {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dim);
        margin-bottom: 16px
    }

    .footer-col a {
        display: block;
        color: var(--text-muted);
        font-size: 13px;
        margin-bottom: 10px;
        transition: color .2s
    }

    .footer-col a:hover {
        color: var(--green)
    }

    .footer-bottom {
        border-top: 1px solid var(--border-soft);
        padding-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .footer-bottom p {
        font-size: 12px;
        color: var(--text-dim)
    }

    /* SCROLL PROGRESS */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 2px;
        background: var(--btn-gradient);
        z-index: 200;
        transition: width .1s linear;
        width: 0
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
        .features-inner {
            grid-template-columns: 1fr;
            gap: 32px
        }

        .features-grid {
            grid-template-columns: repeat(3, 1fr)
        }

        .steps-grid {
            grid-template-columns: repeat(3, 1fr)
        }

        .rescue-inner {
            grid-template-columns: 1fr;
            gap: 32px
        }

        .rescue-flow {
            grid-template-columns: 1fr 1fr
        }

        .rescue-step:nth-child(2)::after {
            display: none
        }

        .footer-main {
            grid-template-columns: 2fr 1fr 1fr 1fr
        }
    }

    @media(max-width:768px) {

        nav,
        .lang-toggle,
        .header-right .btn {
            display: none
        }

        .burger {
            display: flex
        }

        .hero {
            padding: 32px 0
        }

        .hero-inner {
            grid-template-columns: 1fr;
            gap: 32px;
            min-height: auto
        }

        .hero-visual {
            order: -1;
            height: 320px;
            display: block;
            position: absolute;
            z-index: -1;
            right: 0;
            top: 60px;
        }

        .hero-athlete {
            right: 10px;
        }


        .hero h1 {
            font-size: 38px;
            letter-spacing: -1.5px
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px
        }

        .stat-item {
            min-width: auto
        }

        .features-grid {
            grid-template-columns: 1fr
        }

        .feature-icon {
            margin-bottom: 0
        }

        .feature-card {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .feature-card h3 {
            margin-bottom: 0
        }

        .how-header {
            grid-template-columns: 1fr;
            gap: 16px
        }

        .steps-grid {
            grid-template-columns: 1fr 1fr
        }

        .rescue {
            padding: 28px 20px
        }

        .rescue-flow {
            grid-template-columns: 1fr 1fr;
            gap: 12px
        }

        .rescue-step::after {
            display: none !important
        }

        .rules-grid {
            grid-template-columns: 1fr;
            gap: 24px
        }

        .money-cards {
            grid-template-columns: 1fr 1fr
        }

        .promo-grid {
            grid-template-columns: 1fr
        }

        .promo-card {
            padding: 28px 24px;
            min-height: auto
        }

        .promo-ref-bg {
            width: 100%;
            opacity: .3
        }

        .partner-cards {
            grid-template-columns: 1fr
        }

        .partner-card-icon {
            margin-bottom: 0
        }

        .partner-card {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .faq-inner {
            grid-template-columns: 1fr;
            gap: 16px
        }

        .faq-image {
            display: none
        }

        .cta-card {
            padding: 56px 24px
        }

        .footer-main {
            grid-template-columns: 1fr 1fr
        }

        .footer-brand {
            grid-column: 1/-1
        }

        .footer-bottom {
            flex-direction: column;
            gap: 8px;
            text-align: center
        }
    }

    @media(max-width:480px) {
        .hero h1 {
            font-size: 32px
        }

        .hero-buttons {
            width: 59%;

            .btn {
                width: 100%;
            }
        }

        .hero-visual {
            top: 45px;
            right: -50px;
        }

        .hero-athlete {
            position: relative;
            width: 267px;
            max-width: 620px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            animation: glow 4s ease-in-out infinite;
        }

        .hero-phone {
            display: none;
        }

        section {
            padding: 32px 0 !important
        }

        .container {
            padding: 0 12px
        }

        .stats-grid {
            grid-template-columns: 1fr
        }

        .steps-grid {
            grid-template-columns: 1fr
        }

        .promo-card {
            padding: 20px 16px;
            min-height: auto
        }

        .rules-table th,
        .rules-table td,
        .rescue,
        .step-card,
        .feature-card {
            padding: 16px
        }

        .faq-question {
            padding: 16px
        }

        .money-cards {
            grid-template-columns: 1fr 1fr
        }

        .btn-lg {
            padding: 12px 20px;
            font-size: 14px
        }
    }

    @media(max-width:420px) {
        .hero-buttons {
            width: 70%;

            .btn {
                width: 100%;
            }
        }
    }