﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =========================================================
   ROOT
========================================================= */

:root {

    /* COLORS */
    --color-bg: #0A0A0F;
    --color-bg-deep: #000000;

    --color-primary: #B84CFF;
    --color-primary-dark: #9333EA;
    --color-primary-soft: rgba(184, 76, 255, 0.12);

    --color-white: #FFFFFF;

    --color-text: rgba(255, 255, 255, 0.88);
    --color-text-soft: rgba(255, 255, 255, 0.65);
    --color-border: rgba(255, 255, 255, 0.08);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(167, 139, 250, 0.24);

    /* TYPOGRAPHY */
    --font-main: 'Inter', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;

    --hero-title: clamp(5rem, 12vw, 12.5rem);

    /* SPACING */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* RADIUS */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 999px;

    /* SHADOWS */
    --shadow-primary:
        0 10px 40px rgba(184, 76, 255, 0.35);

    --shadow-glass:
        0 8px 32px rgba(0, 0, 0, 0.25);

    /* CONTAINER */
    --container-width: 1600px;

    /* TRANSITIONS */
    --transition:
        0.3s ease;

    /* Z INDEX */
    --z-header: 1000;
}

/* =========================================================
   RESET
========================================================= */

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

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

body {
    font-family: var(--font-main);
    color: var(--color-white);

    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(ellipse at 70% 50%,
            #2A0A4A 0%,
            #0A0014 50%,
            #000000 100%);

    background-attachment: fixed;
}

/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(100% - 2rem, var(--container-width));
    margin-inline: auto;
}

.btn {
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-xl);
    font-weight: 800;
}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    inset: 0 0 auto 0;

    z-index: var(--z-header);

    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 15, 0.35);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.logo-v {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;

    background:
        linear-gradient(135deg,
            var(--color-primary) 0%,
            #7B2FFF 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-rest {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    background: var(--color-primary);
    color: var(--color-white);

    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);

    font-weight: 600;
}

.btn-header:hover {
    transform: translateY(-2px);
}

.lang-switcher {
    display: flex;
    gap: 0.25rem;

    padding: 0.25rem;

    border-radius: var(--radius-sm);

    background: rgba(255, 255, 255, 0.08);
}

.lang-btn {
    background: transparent;
    border: none;

    color: rgba(255, 255, 255, 0.6);

    padding: 0.45rem 0.85rem;

    border-radius: 0.5rem;

    cursor: pointer;

    transition: var(--transition);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    display: flex;
    align-items: flex-start;

    padding:
        5.5rem 0 4rem;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(420px, 0.95fr);

    gap: clamp(1rem, 2vw, 3rem);

    align-items: start;

    padding-top: 4rem;
}

.hero-content {
    max-width: 700px;
    padding-top: clamp(4rem, 8vw, 6rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.9rem 1.8rem;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            rgba(139, 92, 246, 0.22) 0%,
            rgba(139, 92, 246, 0.12) 100%);

    border:
        1px solid rgba(167, 139, 250, 0.32);

    backdrop-filter: blur(16px);

    color: #c8b5ff;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;

    margin-bottom: 3.2rem;

    margin-left: 1rem;

    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-title {
    font-size: var(--hero-title);
    line-height: 0.92;
    letter-spacing: -0.06em;

    display: inline-block;
    padding-right: 0.08em;

    margin-bottom: 2.8rem;

    background:
        linear-gradient(180deg,
            #FFFFFF 0%,
            #9e30e7 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    max-width: 720px;

    color: rgba(255, 255, 255, 0.82);

    line-height: 1.65;

    font-size: clamp(1.2rem, 1.5vw, 1.55rem);

    font-weight: 500;

    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 1.25rem;
}

.btn-primary {
    padding: 1.35rem 3.4rem;

    border-radius: 1rem;

    background:
        linear-gradient(90deg,
            var(--color-primary) 0%,
            var(--color-primary-dark) 100%);

    color: var(--color-white);

    font-size: 1.05rem;

    font-weight: 700;

    box-shadow:
        0 10px 35px rgba(184, 76, 255, 0.35),
        0 0 25px rgba(184, 76, 255, 0.12);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    background: transparent;
    border: none;

    color: var(--color-white);

    cursor: pointer;
}

.play-icon {
    width: 3.5rem;
    height: 3.5rem;

    background: rgba(255, 255, 255, 0.1);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.05);
}

.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    position: relative;
}

.hero-image img {
    width: clamp(120px, 58vw, 980px);

    max-width: none;

    object-fit: contain;

    transform: translate(-140px, -130px);
}

/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;
    margin-top: -45rem;
    padding-bottom: 4rem;
    z-index: 10;
}

.stats-bar {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1.5rem;

    width: min(100%, 780px);

    padding:
        clamp(1.5rem, 4vw, 3rem);

    border-radius: var(--radius-lg);

    background: rgba(167, 139, 250, 0.05);

    border:
        1px solid rgba(167, 139, 250, 0.25);

    backdrop-filter: blur(20px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(184, 76, 255, 0.08);
}

.stat-number {
    font-size: clamp(1.45rem, 3.1vw, 2rem);

    font-weight: 800;
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;

    color: #a78bfa;

    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-soft);
    line-height: 1.5;
}

.stat-item {
    min-width: 0;
}

/* =========================================================
   FEATURES
========================================================= */

.features-section {
    padding: 5rem 0 4rem;
    
}
.features-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;

    margin-bottom: 3.5rem;
}

.features-title {
    position: relative;
    display: inline-block;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.1;

    text-align: center;

    color: #ffffff;

    letter-spacing: -0.03em;

    max-width: 760px;

    margin: 0 auto;
}

.features-title::after {
    content: "";

    display: block;

    width: 110px;
    height: 4px;

    margin: 1.2rem auto 0;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(184, 76, 255, 1),
            transparent);

    box-shadow:
        0 0 25px rgba(184, 76, 255, 0.45);
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;

    gap: 1rem;

    min-height: 100%;

    padding: 2rem 1.5rem;

    border-radius: var(--radius-md);

    background:
        rgba(20, 20, 30, 0.4);

    border:
        1px solid rgba(167, 139, 250, 0.2);

    backdrop-filter: blur(16px);

    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(167, 139, 250, 0.45);

    box-shadow:
        0 0 20px rgba(167, 139, 250, 0.16);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;

    display: grid;
    place-items: center;

    border-radius: 0.85rem;

    background:
        rgba(167, 139, 250, 0.1);

    border:
        1px solid rgba(167, 139, 250, 0.2);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;

    stroke: #a78bfa;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-content h3 {
    margin-bottom: 0.75rem;

    font-size: 1.25rem;
}

.feature-content p {
    color: var(--color-text-soft);
    line-height: 1.7;
}
/* =========================
   PROCESS SECTION
========================= */

.process-section {
    position: relative;

    padding: 5rem 0;
    
}

.process-heading {
    display: flex;
    justify-content: center;

    margin-bottom: 3.5rem;
}

.process-title {
    position: relative;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.1;

    text-align: center;

    color: #ffffff;

    letter-spacing: -0.03em;
}

.process-title::after {
    content: "";

    display: block;

    width: 110px;
    height: 4px;

    margin: 1.2rem auto 0;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(184, 76, 255, 1),
            transparent);

    box-shadow:
        0 0 25px rgba(184, 76, 255, 0.45);
}

.process-wrapper {
    position: relative;

    padding: 3rem;

    border-radius: 36px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.01));

    border:
        1px solid rgba(184, 76, 255, 0.12);

    backdrop-filter: blur(18px);

    overflow: hidden;
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 1.5rem;
}

.process-card {
    position: relative;

    min-height: 360px;

    padding: 2.5rem 2rem;

    border-radius: 30px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.015));

    border:
        1px solid rgba(184, 76, 255, 0.16);

    backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}
.process-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 110px;
    height: 110px;

    margin-bottom: 2rem;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            rgba(184, 76, 255, 0.15),
            rgba(184, 76, 255, 0.05));

    border:
        1px solid rgba(184, 76, 255, 0.22);

    box-shadow:
        0 10px 40px rgba(184, 76, 255, 0.14);
}

.process-icon i {
    font-size: 3rem;

    color: #ffffff;
}

.process-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(184, 76, 255, 0.95);

    font-size: 2rem;

    transform: translateY(-10px);
}

.process-card-title {
    margin-bottom: 1rem;

    font-size: 1.7rem;

    line-height: 1.3;

    font-weight: 700;

    color: #ffffff;
}

.process-card-text {
    max-width: 280px;

    color:
        rgba(255, 255, 255, 0.72);

    line-height: 1.8;

    font-size: 1rem;
}

.process-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(184, 76, 255, 0.4);

    box-shadow:
        0 20px 50px rgba(184, 76, 255, 0.14);
}

.process-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 1.8rem;

    border-radius: 18px;

    font-size: 1.1rem;
    font-weight: 800;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            rgba(184, 76, 255, 1),
            rgba(130, 76, 255, 0.85));

    box-shadow:
        0 10px 30px rgba(184, 76, 255, 0.35);
}

.process-card-title {
    margin-bottom: 1rem;

    font-size: 1.5rem;
    font-weight: 700;

    color: #ffffff;
}

.process-card-text {
    color:
        rgba(255, 255, 255, 0.72);

    line-height: 1.8;

    font-size: 1rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .process-wrapper {
        padding: 2rem 1.2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-arrow {
        display: none;
    }

    .process-card {
        min-height: auto;
    }
}
/* =========================
   SAFETY SECTION
========================= */

.safety-section {
    position: relative;
    overflow: hidden;

    padding: 5rem 0;
    
}
.safety-section::before,
.safety-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.safety-section::before {
    background: #00ff88;
    left: -120px;
    top: 80px;
}

.safety-section::after {
    background: #ff2d75;
    right: -120px;
    top: 120px;
}

.safety-heading {
    display: flex;
    justify-content: center;

    margin-bottom: 3.5rem;
}

.safety-title {
    position: relative;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.1;

    text-align: center;

    color: #ffffff;

    letter-spacing: -0.03em;
}

.safety-title::after {
    content: "";

    display: block;

    width: 110px;
    height: 4px;

    margin: 1.2rem auto 0;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(184, 76, 255, 1),
            transparent);

    box-shadow:
        0 0 25px rgba(184, 76, 255, 0.45);
}

.safety-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2rem;
}

.safety-card {
    position: relative;
    transition: all 0.35s ease;
    z-index: 1;

    padding: 2.5rem;

    border-radius: 32px;

    overflow: hidden;

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);
}
.safety-card:hover {
    transform: translateY(-6px);
    border-color: rgba(170, 120, 255, 0.45);

    box-shadow:
        0 0 30px rgba(170, 120, 255, 0.12),
        0 0 60px rgba(170, 120, 255, 0.08);
}
.safety-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 120px;
    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            rgba(170, 120, 255, 0.9),
            transparent);
}

.safety-positive {
    background:
        linear-gradient(180deg,
            rgba(0, 255, 140, 0.08),
            rgba(0, 255, 140, 0.02));

    border-color:
        rgba(0, 255, 140, 0.12);
}

.safety-negative {
    background:
        linear-gradient(180deg,
            rgba(255, 60, 90, 0.08),
            rgba(255, 60, 90, 0.02));

    border-color:
        rgba(255, 60, 90, 0.12);
}

.safety-card-header {
    display: flex;

    align-items: center;

    gap: 1rem;

    margin-bottom: 2rem;
}

.safety-card-header h3 {
    font-size: 1.7rem;

    font-weight: 700;

    color: #ffffff;
}

.safety-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 18px;

    font-size: 1.3rem;

    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.35);
}
.safety-card.red .safety-icon {
    box-shadow: 0 0 20px rgba(255, 45, 117, 0.35);
}

.positive-icon {
    background:
        rgba(0, 255, 140, 0.15);

    border:
        1px solid rgba(0, 255, 140, 0.25);

    box-shadow:
        0 10px 30px rgba(0, 255, 140, 0.14);
}

.negative-icon {
    background:
        rgba(255, 60, 90, 0.15);

    border:
        1px solid rgba(255, 60, 90, 0.25);

    box-shadow:
        0 10px 30px rgba(255, 60, 90, 0.14);
}

.safety-list {
    display: flex;

    flex-direction: column;

    gap: 1.2rem;

    list-style: none;

    padding: 0;
    margin: 0;
}

.safety-list li {
    position: relative;

    padding-left: 2rem;

    color:
        rgba(255, 255, 255, 0.82);

    line-height: 1.7;

    font-size: 1rem;
}

.safety-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.72rem;

    width: 8px;
    height: 8px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.75);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .safety-card {
        padding: 2rem;
    }
}

@media (max-width: 700px) {

    .safety-grid {
        grid-template-columns: 1fr;
    }
}
.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;

    margin-top: -8px;
    margin-bottom: 42px;
}
/* =========================================================
   PLATFORMS
========================================================= */
.platforms-intro {
    text-align: center;
    max-width: 850px;
    padding: 5rem 0;
    margin: 0 auto -2.5rem;
    
}

.platforms-intro h2 {
    position: relative;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.1;

    text-align: center;

    color: #ffffff;

    letter-spacing: -0.03em;

    margin-bottom: 1.5rem;
}
.platforms-intro h2::after {
    content: "";

    display: block;

    width: 110px;
    height: 4px;

    margin: 1.2rem auto 0;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(184, 76, 255, 1),
            transparent);

    box-shadow:
        0 0 25px rgba(184, 76, 255, 0.45);
}

.platforms-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.platforms-section {
    padding: 0 0 var(--space-2xl);
    padding-bottom: 4rem;
}

.platforms-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 1rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    min-height: 240px;

    padding: 2rem 1rem 1.25rem;

    border-radius: var(--radius-md);

    background:
        rgba(167, 139, 250, 0.05);

    border:
        1px solid rgba(167, 139, 250, 0.2);

    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(184, 76, 255, 0.5);

    background:
        rgba(184, 76, 255, 0.08);
}

.platform-card img {
    width: clamp(90px, 8vw, 140px);
    aspect-ratio: 1;
    object-fit: contain;
}

.platform-btn {
    width: 100%;

    padding: 1rem;

    border-radius: 0.75rem;

    background:
        rgba(184, 76, 255, 0.15);

    border:
        1px solid rgba(184, 76, 255, 0.3);

    color: var(--color-white);

    font-weight: 600;

    transition: var(--transition);
}

.platform-card:hover .platform-btn {
    background: var(--color-primary);
}

/* =========================================================
   RESULTS
========================================================= */

.results-section {
    padding: 5rem 0;
    padding-bottom: var(--space-2xl);

    
}
.results-section .section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}
.results-section .section-title::after {
    content: "";
    display: block;

    width: 90px;
    height: 4px;

    margin: 16px auto 0;

    border-radius: 999px;

    background: linear-gradient(90deg,
            transparent,
            #b46cff,
            transparent);

    box-shadow: 0 0 20px rgba(180, 108, 255, 0.7);
}

.results-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 2rem;
}

.result-card {
    padding: 2rem;

    border-radius: var(--radius-md);

    background: var(--glass-bg);

    border:
        1px solid var(--color-border);
}

.result-card-active {
    border-color:
        rgba(184, 76, 255, 0.4);

    background:
        rgba(184, 76, 255, 0.05);
}
.result-card--before {
    background: linear-gradient(180deg,
            rgba(120, 35, 35, 0.18),
            rgba(25, 15, 15, 0.92));

    border: 1px solid rgba(255, 90, 90, 0.18);

    box-shadow:
        0 0 35px rgba(255, 70, 70, 0.08),
        inset 0 0 25px rgba(255, 70, 70, 0.03);
}

.result-card--after {
    background: linear-gradient(180deg,
            rgba(40, 120, 70, 0.18),
            rgba(12, 22, 16, 0.92));

    border: 1px solid rgba(70, 255, 140, 0.18);

    box-shadow:
        0 0 35px rgba(70, 255, 140, 0.12),
        inset 0 0 25px rgba(70, 255, 140, 0.04);
}

.result-badge {
    display: inline-flex;

    margin-bottom: 1.5rem;

    padding: 0.45rem 0.85rem;

    border-radius: 0.5rem;

    background:
        rgba(255, 255, 255, 0.1);
}
.result-badge--before {
    background: rgba(255, 80, 80, 0.16);
    border: 1px solid rgba(255, 80, 80, 0.35);
    color: #ff8a8a;
    box-shadow: 0 0 18px rgba(255, 80, 80, 0.18);
}

.result-badge--after {
    background: rgba(70, 255, 140, 0.14);
    border: 1px solid rgba(70, 255, 140, 0.35);
    color: #7dffb0;
    box-shadow: 0 0 18px rgba(70, 255, 140, 0.18);
}

.result-card-active .result-badge {
    background: var(--color-primary);
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.result-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.result-stat span {
    font-size: 1.5rem;
    font-weight: 700;
}

.result-stat p {
    color: var(--color-text-soft);
}

.result-arrow {
    font-size: 2rem;
    color: var(--color-primary);
}

.result-growth {
    margin-top: 1.5rem;

    padding: 0.85rem;

    border-radius: 0.75rem;

    background:
        rgba(184, 76, 255, 0.2);

    text-align: center;

    color: var(--color-primary);

    font-weight: 700;
}
.growth-bar {
    width: 100%;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
}

.growth-bar--before {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.growth-bar--after {
    background: linear-gradient(90deg,
            #9b4dff,
            #c86bff);
    color: #fff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
}
/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 5rem 0;
}
.faq-section .section-title {
    position: relative;
    display: inline-block;

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.03em;

    margin: 0 auto;
}

.faq-section .section-title::after {
    content: "";

    display: block;

    width: 110px;
    height: 4px;

    margin: 1.2rem auto 0;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(184, 76, 255, 1),
            transparent);

    box-shadow:
        0 0 25px rgba(184, 76, 255, 0.45);
}

.faq-heading {
    display: flex;
    justify-content: center;
    text-align: center;

    margin-bottom: 3.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 1rem;

    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;

    border-radius: 24px;

    background:
        rgba(20, 20, 30, 0.55);

    border:
        1px solid rgba(167, 139, 250, 0.16);

    backdrop-filter: blur(18px);

    transition: 0.3s ease;
}

.faq-item:hover {
    border-color:
        rgba(184, 76, 255, 0.4);

    box-shadow:
        0 0 25px rgba(184, 76, 255, 0.12);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding: 1.5rem 2rem;

    background: transparent;
    border: none;

    color: #ffffff;

    font-size: 1.2rem;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.faq-question span:first-child {
    line-height: 1.4;
}

.faq-icon {
    flex: 0 0 auto;

    font-size: 2rem;
    line-height: 1;

    color: #ffffff;

    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 2rem;

    color:
        rgba(255, 255, 255, 0.72);

    line-height: 1.7;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;

    padding:
        0 2rem 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    color: #c084fc;
}

@media (max-width: 768px) {

    .faq-section {
        padding: 5rem 0 3.5rem;
    }

    .faq-heading {
        margin-bottom: 2.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.4rem;

        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 1.4rem;

        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding:
            0 1.4rem 1.25rem;
    }
}

@media (max-width: 540px) {

    .faq-section {
        padding: 4rem 0 3rem;
    }

    .faq-list {
        gap: 0.85rem;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-question {
        padding: 1.1rem 1.1rem;

        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.6rem;
    }

    .faq-answer {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}
/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta-section {
    padding: 5rem 0;
}

.footer-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;

    padding: 3rem;

    border-radius: 28px;

    background:
        radial-gradient(circle at 8% 50%,
            rgba(184, 76, 255, 0.22),
            transparent 28%),
        radial-gradient(circle at 90% 0%,
            rgba(184, 76, 255, 0.26),
            transparent 34%),
        rgba(20, 20, 30, 0.55);

    border: 1px solid rgba(184, 76, 255, 0.35);

    box-shadow:
        0 0 35px rgba(184, 76, 255, 0.14),
        inset 0 0 35px rgba(184, 76, 255, 0.05);

    backdrop-filter: blur(18px);
}

.footer-cta-icon {
    width: 118px;
    height: 118px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            rgba(184, 76, 255, 0.95),
            rgba(130, 76, 255, 0.65));

    border: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 0 35px rgba(184, 76, 255, 0.45);
}

.footer-cta-icon i {
    font-size: 3.4rem;
    color: #ffffff;
}

.footer-cta-content h2 {
    margin-bottom: 1rem;

    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;

    color: #ffffff;
    letter-spacing: -0.03em;
}

.footer-cta-content h2 span,
.footer-cta-content strong {
    color: var(--color-primary);
}

.footer-cta-content p {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.1rem;
    line-height: 1.7;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.85rem;

    min-width: 300px;

    padding: 1.35rem 2rem;

    border-radius: 1rem;

    color: #ffffff;
    text-decoration: none;

    font-weight: 700;

    background:
        linear-gradient(135deg,
            rgba(184, 76, 255, 0.95),
            rgba(130, 76, 255, 0.75));

    border: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 0 30px rgba(184, 76, 255, 0.28);

    transition: var(--transition);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 5rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 2fr;
    gap: 4rem;

    padding: 3.5rem 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: -2rem;

    margin-bottom: 1.5rem;
}

.footer-logo-v {
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 900;

    background:
        linear-gradient(135deg,
            var(--color-primary),
            #7B2FFF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-text {
    font-size: 2.4rem;
    font-weight: 800;

    color: #ffffff;
}

.footer-brand p {
    max-width: 360px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 1.05rem;
    line-height: 1.75;

    margin-bottom: 1.5rem;
}

.footer-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    padding: 0.8rem 1rem;

    border-radius: 0.85rem;

    color: rgba(255, 255, 255, 0.68);

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(167, 139, 250, 0.12);
}

.footer-badges i {
    color: #a78bfa;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-column h3 {
    margin-bottom: 0.3rem;

    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 800;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    line-height: 1.4;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-social {
    text-align: center;

    padding-bottom: 3rem;
}

.footer-social p {
    margin-bottom: 1.3rem;

    color: rgba(255, 255, 255, 0.68);

    font-size: 1.05rem;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 1.4rem;
}

.social-link {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 999px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 1.55rem;

    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-telegram {
    box-shadow: 0 0 22px rgba(184, 76, 255, 0.32);
}

.social-instagram {
    box-shadow: 0 0 22px rgba(255, 90, 180, 0.26);
}

.social-youtube {
    box-shadow: 0 0 22px rgba(255, 45, 85, 0.3);
}

.social-x {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.62);
}

.footer-bottom i {
    color: var(--color-primary);

    margin: 0 0.35rem;
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .footer-cta {
        grid-template-columns: auto 1fr;
    }

    .footer-cta-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .footer-cta-section {
        padding: 4rem 0 1.5rem;
    }

    .footer-cta {
        grid-template-columns: 1fr;

        gap: 1.8rem;

        padding: 2rem;

        text-align: center;
    }

    .footer-cta-icon {
        margin: 0 auto;

        width: 92px;
        height: 92px;
    }

    .footer-cta-icon i {
        font-size: 2.7rem;
    }

    .footer-cta-content p {
        margin: 0 auto;

        font-size: 1rem;
    }

    .footer-cta-btn {
        min-width: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 3rem;

        padding: 3rem 0;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }
}

@media (max-width: 540px) {

    .footer-cta {
        padding: 1.5rem;

        border-radius: 22px;
    }

    .footer-cta-content h2 {
        font-size: 1.65rem;
    }

    .footer-cta-btn {
        padding: 1.1rem 1rem;

        font-size: 0.95rem;
    }

    .footer-links {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-column {
        gap: 0.9rem;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 52px;
        height: 52px;

        font-size: 1.35rem;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .platforms-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {

    .platforms-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .hero-grid,
    .cta-block,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .stats-bar {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-arrow {
        transform: rotate(90deg);
        margin-inline: auto;
    }
}

@media (max-width: 768px) {

    .header-row {
        gap: 1rem;
    }

    .platforms-grid,
    .features-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .btn-primary {
        width: 100%;
    }
}

@media (max-width: 540px) {

    .hero-section {
        padding-top: 6rem;
    }

    .hero-title {
        font-size: clamp(3.4rem, 20vw, 5rem);
        letter-spacing: -0.04em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .btn,
    .hero-actions .btn-play {
        width: 100%;
        justify-content: center;
    }

    .btn-play {
        justify-content: center;
    }

    .header-actions {
        gap: 0.55rem;
    }

    .btn-header {
        padding: 0.62rem 1rem;
        font-size: 0.88rem;
    }

    .lang-btn {
        padding: 0.42rem 0.68rem;
        font-size: 0.82rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .stat-number {
        font-size: clamp(1.25rem, 7vw, 1.55rem);
    }

    .platforms-grid,
    .features-grid,
    .process-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
@media (max-width: 900px) {

    .hero-section {
        padding: 6.5rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 2rem;
        align-items: center;
        text-align: center;
    }

    .hero-badge {
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(4rem, 18vw, 7rem);
        line-height: 0.95;
    }

    .hero-text {
        max-width: 620px;
        font-size: clamp(1rem, 3.5vw, 1.25rem);
    }

    .hero-image {
        order: 0;
        justify-content: center;
    }

    .hero-image img {
        width: min(100%, 520px);
        max-width: 100%;
        transform: none;
    }

    .stats-section {
        margin-top: 0;
        padding: 1rem 0 4rem;
    }


}







