* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

body {
    background: #05060f;
    color: #fff;
    overflow-x: hidden;
}

.topbar {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 120;
    padding: 0 24px;
}

.topbar__inner {
    max-width: 1060px;
    margin: 0 auto;
    min-height: 62px;
    padding: 8px 14px 8px 14px;
    border: 1px solid rgba(122,135,255,0.22);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(7,10,24,0.88);
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar__left,
.topbar__right,
.topbar__nav {
    display: flex;
    align-items: center;
}

.topbar__left {
    gap: 28px;
}

.topbar__right {
    gap: 18px;
}

.topbar__logo,
.topbar__nav a,
.topbar__login,
.topbar__signup {
    color: #eef1ff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.topbar__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.topbar__logo img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
}

.topbar__nav {
    gap: 28px;
}

.topbar__nav a,
.topbar__login {
    font-weight: 600;
    color: #c4caef;
}

.topbar__nav a:hover,
.topbar__login:hover {
    color: #ffffff;
}

.topbar__signup {
    padding: 11px 18px;
    border: 1px solid rgba(128,140,255,0.28);
    border-radius: 999px;
    font-weight: 700;
    background: linear-gradient(90deg, #5b6cff, #7c5cff);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(92,108,255,0.28);
}

.topbar__signup:hover {
    box-shadow: 0 16px 32px rgba(92,108,255,0.38);
    transform: translateY(-1px);
}

.language-switch {
    position: fixed;
    top: 84px;
    right: 22px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(148,163,255,0.24);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
        rgba(5,6,15,0.82);
    backdrop-filter: blur(16px);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.language-switch__label {
    padding: 0 9px 0 11px;
    color: #8f96bd;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.language-switch__options {
    display: flex;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(0,0,0,0.22);
}

.language-switch a {
    min-width: 40px;
    padding: 9px 11px;
    border-radius: 999px;
    color: #cfd2ff;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.language-switch a:hover,
.language-switch a.active {
    background: linear-gradient(90deg, #5b6cff, #7c5cff);
    color: #fff;
    box-shadow: 0 8px 24px rgba(91,108,255,0.32);
}

@media (max-width: 560px) {
    .topbar {
        padding: 0 12px;
    }

    .topbar__inner {
        min-height: auto;
        padding: 10px 14px;
        border-radius: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .topbar__left,
    .topbar__right {
        width: 100%;
        justify-content: center;
    }

    .topbar__left {
        gap: 18px;
        flex-wrap: wrap;
    }

    .topbar__nav {
        gap: 18px;
    }

    .topbar__logo,
    .topbar__nav a,
    .topbar__login,
    .topbar__signup {
        font-size: 16px;
    }

    .container {
        padding: 205px 20px 32px;
    }

    .language-switch {
        top: 122px;
        right: 12px;
    }

    .language-switch__label {
        display: none;
    }
}

.bg {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(80,100,255,0.15), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0,200,255,0.15), transparent 40%),
        #05060f;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
}

.container {
    text-align: center;
    max-width: 900px;
    padding: 40px 40px 40px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    clear: both;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
    white-space: nowrap;
}

.hero-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    flex: 0 0 14px;
    line-height: 1;
}

.title {
    display: inline-block;
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: left;
}

.grad {
    background: linear-gradient(90deg, #6f7cff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad.blue {
    background: linear-gradient(90deg, #00d4ff, #4f8cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white {
    color: #ffffff;
}

.subtitle {
    font-size: 18px;
    color: #b6b8d6;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.btn {
    min-width: 198px;
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.25s ease;
}

.btn.primary {
    background: linear-gradient(90deg, #5b6cff, #7c5cff);
    color: #fff;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100,120,255,0.4);
}

.btn.secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.15);
}
/* ===== STATS ===== */

.stats {
    padding: 80px 20px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ⬅️ ВСЕГДА 4 В РЯД */
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    padding: 36px 32px;
    border-radius: 26px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #6f7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8a8fb3;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    max-width: 760px;
}

.stat-card {
    min-height: 132px;
}

@media (max-width: 900px) {
    .title {
        text-align: center;
    }
}

/* ===== WHY ===== */

.why {
    padding: 120px 20px;
    text-align: center;
}

.why-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-subtitle {
    color: #a5a8c7;
    font-size: 18px;
    margin-bottom: 60px;
}

.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.why-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.why-card p {
    color: #a5a8c7;
    line-height: 1.6;
}
/* WHY GRID EXTENDED */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card.wide {
    grid-column: span 1;
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-card.wide {
        grid-column: span 2;
    }
}

/* ICONS */

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.gradient.blue {
    background: linear-gradient(135deg, #00d4ff, #4f8cff);
}

.gradient.purple {
    background: linear-gradient(135deg, #7c5cff, #b36bff);
}

.gradient.pink {
    background: linear-gradient(135deg, #ff5cf4, #8b5cf6);
}

.gradient.green {
    background: linear-gradient(135deg, #3cffb0, #2dd4bf);
}

.gradient.cyan {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient.lime {
    background: linear-gradient(135deg, #a3e635, #22c55e);
}
/* SCROLL ANIMATION */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===== PLANS ===== */

.plans {
    padding: 120px 20px;
    text-align: center;
}

.plans-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.plans-subtitle {
    color: #a5a8c7;
    font-size: 18px;
    margin-bottom: 70px;
}

.plans-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background: rgba(255,255,255,0.04);
    border-radius: 28px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #6f7cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price span {
    font-size: 14px;
    color: #a5a8c7;
    -webkit-text-fill-color: initial;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-card li {
    margin-bottom: 12px;
    color: #cfd2ff;
    position: relative;
    padding-left: 20px;
}

.plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

/* FEATURED */

.plan-card.featured {
    background: linear-gradient(
        180deg,
        rgba(120,120,255,0.15),
        rgba(255,255,255,0.04)
    );
    border-color: rgba(120,120,255,0.4);
overflow: visible;
}

.plan-card .badge {
    position: absolute;
    top: -12px;
    right: 24px;

    background: linear-gradient(90deg, #ff7a18, #ffb347);
    color: #000;

    padding: 6px 14px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;

    box-shadow: 0 6px 20px rgba(255,122,24,0.45);
}
/* ===== AUDIENCE ===== */

.audience {
    padding: 120px 20px;
    text-align: center;
}

.audience-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.audience-subtitle {
    color: #a5a8c7;
    font-size: 18px;
    margin-bottom: 70px;
}

.audience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audience-card {
    background: rgba(255,255,255,0.04);
    border-radius: 28px;
    padding: 36px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.audience-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.audience-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.audience-card p {
    color: #a5a8c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* TAGS */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #cfd2ff;
    border: 1px solid rgba(255,255,255,0.08);
}
/* ===== ADVANCED HOVER EFFECT ===== */

.audience-card,
.why-card,
.plan-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* glow */
.audience-card::before,
.why-card::before,
.plan-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(
        400px circle at var(--x, 50%) var(--y, 50%),
        rgba(120,140,255,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* hover state */
.audience-card:hover,
.why-card:hover,
.plan-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(120,140,255,0.5);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

.audience-card:hover::before,
.why-card:hover::before,
.plan-card:hover::before {
    opacity: 1;
    position: relative;
}

/* icon pop */
.audience-card:hover .audience-icon,
.why-card:hover .why-icon {
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0 10px 30px rgba(120,140,255,0.5);
}

.audience-icon,
.why-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* ===== TECH STACK ===== */

.tech {
    padding: 120px 20px;
    text-align: center;
}

.tech-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.tech-subtitle {
    font-size: 18px;
    color: #a5a8c7;
    margin-bottom: 70px;
}

.tech-grid {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.tech-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 28px 20px;
}

.tech-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6f7cff, #00d4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
}

.tech-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.tech-card p {
    font-size: 13px;
    color: #a5a8c7;
}

/* ===== TERMINAL ===== */

.terminal {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(0,0,0,0.4)
    );
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.35);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    margin-left: 10px;
    font-size: 13px;
    color: #cfd2ff;
    opacity: 0.8;
}

.terminal-body {
    padding: 24px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 14px;
    color: #cfd2ff;
    line-height: 1.6;
}
/* ===== SCROLL FADE UP ===== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===== TECH CARD HOVER ===== */

.tech-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.tech-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(
        300px circle at var(--x, 50%) var(--y, 50%),
        rgba(120,140,255,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(120,140,255,0.5);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.tech-card:hover .tech-icon {
    transform: scale(1.15) rotate(-6deg);
}

.tech-icon {
    transition: transform 0.3s ease;
}
.cursor {
    animation: blink 1s steps(2) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
/* ===== SIDE TERMINAL LAYOUT ===== */

.tech-terminal {
    width: 100vw;              /* ⬅️ ВАЖНО */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;        /* ⬅️ ВАЖНО */
    margin-right: -50vw;       /* ⬅️ ВАЖНО */
    margin-top: 100px;
    padding: 0 40px;
}

@media (max-width: 1000px) {
.tech-terminal {
    max-width: 1300px;
    margin: 100px auto 0;
}
}
.terminal-wide {
    width: 100%;
    min-height: 300px;
}
.terminal-text h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.terminal-text p {
    color: #a5a8c7;
    font-size: 18px;
    line-height: 1.6;
}
/* ===== TERMINAL COLORS ===== */

.cmd        { color: #22c55e; }   /* команды */
.flag       { color: #60a5fa; }
.url        { color: #38bdf8; }
.key        { color: #a78bfa; }
.string     { color: #34d399; }
.number     { color: #fbbf24; }
.success    { color: #22c55e; }
.ssh        { color: #60a5fa; }
.comment    { color: #94a3b8; }
.terminal-wide {
    width: 100%;
    max-width: 1400px;         /* ⬅️ вот реальная ширина */
    margin: 0 auto;
}
.terminal-body {
    padding: 36px 48px;
    font-size: 15px;
    line-height: 1.8;
}
.cursor {
    color: #cfd2ff;
    animation: blink 1s steps(2) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
/* ===== FIX TERMINAL TEXT ALIGN ===== */

.terminal,
.terminal-body,
.terminal-body code {
    text-align: left !important;
}
.terminal-body {
    white-space: pre-wrap;
}

.terminal-body code {
    display: block;
}
/* TERMINAL MUST NEVER BE CENTERED */
.tech-terminal,
.terminal,
.terminal-body,
.terminal-body code {
    text-align: left !important;
}
.terminal-wide {
    max-width: 1400px !important;
}
/* ===== PARTICLES BACKGROUND ===== */

#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* весь контент поверх частиц */
.bg,
section {
    position: relative;
    z-index: 1;
}
/* ===== FAQ ===== */

.faq {
    padding: 120px 20px;
    text-align: center;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: #a5a8c7;
    margin-bottom: 70px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* item */

.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(120,140,255,0.4);
}

/* question */

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    color: #cfd2ff;
}

/* icon */

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    color: #a5a8c7;
    line-height: 1.7;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease,
        opacity 0.3s ease;
    opacity: 0;
}

/* active */

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 26px 24px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
html {
    scroll-behavior: smooth;
}
.stat-card.featured {
    transform: translateY(-8px);
    background: linear-gradient(
        180deg,
        rgba(100,120,255,0.25),
        rgba(255,255,255,0.04)
    );
    border-color: rgba(120,140,255,0.4);
}
.stat-card {
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(
        300px circle at var(--x, 50%) var(--y, 50%),
        rgba(120,140,255,0.35),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.stat-value {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-label {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.7;
}
.stat-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;

    background: linear-gradient(90deg, #00d4ff, #6f7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value .percent {
    font-size: 0.6em;
    font-weight: 700;
    opacity: 0.85;

    /* ВАЖНО */
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transform: translateY(-2px);
}
