:root {
    --bg-dark: #0f1115;
    --bg-card: #1a1d23;
    --accent: #cfff04;
    /* Electric Lime */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--header {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn--header:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(207, 255, 4, 0.3);
}

/* LOGO */
.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo__dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    display: inline-block;
    border-radius: 2px;
    transform: rotate(45deg);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav__link:hover {
    color: var(--accent);
}

/* FOOTER */
.footer {
    background: var(--bg-card);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__title {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer__desc {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 14px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer__contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer__contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* MOBILE NAV */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {

    .nav,
    .btn--header {
        display: none;
    }

    .burger {
        display: block;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}
/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(207, 255, 4, 0.08) 0%, rgba(15, 17, 21, 0) 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
}

.text-accent {
    color: var(--accent);
}

.hero__text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero__btns {
    display: flex;
    gap: 20px;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(207, 255, 4, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visualization */
.hero__viz {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__circle {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(207, 255, 4, 0.2);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

.hero__circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

.viz-card {
    position: absolute;
    background: rgba(26, 29, 35, 0.8);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.viz-card__icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.viz-card__label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.viz-card__value {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
        flex-direction: column;
        padding-bottom: 60px;
    }

    .hero__container {
        flex-direction: column;
    }

    .hero__btns {
        justify-content: center;
    }

    .hero__viz {
        margin-top: 60px;
    }

    .hero__circle {
        width: 300px;
        height: 300px;
    }
}
/* INSIGHTS SECTION */
.insights {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
}

.insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.insight-card.highlight {
    grid-row: span 2;
    background: linear-gradient(135deg, #1a1d23 0%, #0f1115 100%);
    border-color: rgba(207, 255, 4, 0.2);
}

.insight-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.insight-tag {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.insight-card__title {
    font-size: clamp(20px, 2vw, 28px);
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-card__text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.insight-link {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(207, 255, 4, 0.05), transparent);
    pointer-events: none;
}

@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .insight-card.highlight {
        grid-row: span 1;
        min-height: 400px;
    }
}
/* Обновленный круг для стыковки */
.hero__viz {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    /* Отступ для вылета круга вниз */
}

.hero__circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(207, 255, 4, 0.3);
    border-radius: 50%;
    position: absolute;
    bottom: -150px;
    /* Смещаем круг вниз, чтобы он заходил на следующую секцию */
    animation: rotate 25s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(207, 255, 4, 0.1);
}

/* Эффект свечения под кругом */
.hero__circle-glow {
    position: absolute;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
}
.strategies {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #14161a);
    z-index: 1;
}

.strategies__wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.strategy-step {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: start;
}

.strategy-step__num {
    font-size: 80px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(207, 255, 4, 0.3);
    line-height: 1;
}

.strategy-step__title {
    font-size: clamp(28px, 3vw, 42px);
    margin: 15px 0 25px;
    max-width: 600px;
}

.strategy-step__text {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 30px;
}

.strategy-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.strategy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
}

.strategy-card {
    background: rgba(207, 255, 4, 0.05);
    border-left: 3px solid var(--accent);
    padding: 20px;
    display: inline-block;
    font-weight: 600;
}

@media (max-width: 768px) {
    .strategy-step {
        grid-template-columns: 1fr;
    }

    .strategy-step__num {
        font-size: 50px;
    }

    .strategy-list {
        grid-template-columns: 1fr;
    }
}
/* EXPERTISE SECTION */
.expertise {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.exp-card {
    height: 100%;
}

.exp-card__inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px 40px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.exp-card:hover .exp-card__inner {
    background: rgba(207, 255, 4, 0.02);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.exp-card__icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 30px;
}

.exp-card__title {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.exp-card__text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.exp-card__footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-status {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.expertise-cta {
    margin-top: 80px;
    text-align: center;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
/* CASES SECTION */
.cases {
    padding: 120px 0;
    background: #14161a;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-before {
    background: linear-gradient(rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.8)), url('/img/one.jpg') center/cover;
}

.img-after {
    background: linear-gradient(rgba(207, 255, 4, 0.1), rgba(15, 17, 21, 0.9)), url('/img/two.jpg') center/cover;
    width: 50%;
    /* Начальное положение шторки */
    z-index: 2;
    border-right: 2px solid var(--accent);
}

.comparison-content {
    padding: 0 10%;
    width: 100vw;
    /* Фиксируем ширину контента, чтобы он не сжимался */
}

.case-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.case-badge.before {
    background: #333;
    color: #fff;
}

.case-badge.after {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Ползунок */
.comparison-slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: ew-resize;
    outline: none;
    margin: 0;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent);
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(207, 255, 4, 0.5);
}

/* Статистика внизу */
.cases-meta {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
}

.meta-val {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.meta-lab {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .comparison-container {
        height: 400px;
    }

    .cases-meta {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
/* CONTACT SECTION */
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__method {
    display: flex;
    gap: 20px;
    align-items: center;
}

.method__icon {
    width: 50px;
    height: 50px;
    background: rgba(207, 255, 4, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

/* Form Styles */
.contact-form {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.form-captcha {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-captcha label {
    font-size: 14px;
    color: var(--text-muted);
}

.form-captcha input {
    width: 100px !important;
}

.btn--full {
    width: 100%;
    padding: 20px;
    font-size: 18px;
}

/* Checkbox Custom */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.checkbox-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* Status Messages */
.form-status {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    background: rgba(207, 255, 4, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
}

@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 30px;
    }
}
/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid var(--accent);
    padding: 20px 0;
    z-index: 2000;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-popup.active {
    transform: translateY(-100%);
    bottom: 0;
}

.cookie-popup__content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-popup p {
    font-size: 14px;
    color: var(--text-muted);
}

/* MOBILE MENU */
.burger {
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1100;
    display: none;
}

.burger span,
.burger::before,
.burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.burger::before {
    top: 0;
}

.burger span {
    top: 9px;
}

.burger::after {
    bottom: 0;
}

.burger.active span {
    opacity: 0;
}

.burger.active::before {
    transform: translateY(9px) rotate(45deg);
}

.burger.active::after {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .burger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: var(--transition);
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav__link {
        font-size: 24px;
        color: var(--text-main);
    }
}
/* Обновленный круг */
.hero__viz {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    z-index: 1;
    /* Чтобы был над фоном, но под контентом следующей секции если нужно */
}

.hero__circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(207, 255, 4, 0.3);
    border-radius: 50%;
    position: absolute;
    bottom: -250px;
    /* Фиксируем вылет */
    left: 50%;
    transform: translateX(-50%);
    animation: rotate 25s linear infinite;
}

/* Фикс для мобильной версии */
@media (max-width: 768px) {
    .hero__circle {
        width: 280px;
        /* Уменьшаем, чтобы не рвало экран */
        height: 280px;
        bottom: -140px;
    }

    /* Обязательно добавляем родителю или body, чтобы скрыть вылет */
    body,
    html {
        overflow-x: hidden;
    }
}
.comparison-content {
    position: relative;
    z-index: 10;
    /* Поднимаем над всеми слоями */
    padding: 0 10%;
    width: 100%;
    /* Меняем с 100vw на 100% для корректности внутри контейнера */
    pointer-events: none;
    /* Чтобы не мешать работе слайдера */
}

.img-after .comparison-content {
    color: var(--bg-dark);
    /* Черный текст на светлом фоне (лайм) */
}

.img-before .comparison-content {
    color: #ffffff;
    /* Белый текст на темном фоне */
}

.comparison-img h3 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 10px;
}
/* BENTO GRID CASES */
.cases-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    margin-top: 60px;
}

.bento-item {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.bento-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-case {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main-case .bento-item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(207, 255, 4, 0.15), transparent);
    z-index: 0;
}

.bento-item__content {
    position: relative;
    z-index: 1;
}

.case-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 20px;
}

.bento-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-node__val {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.stat-node__label {
    font-size: 14px;
    color: var(--text-muted);
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex-grow: 1;
}

.case-result-mini {
    margin-top: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .cases-bento {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .bento-row {
        grid-template-columns: 1fr;
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, #16191d 0%, #0f1115 100%);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 850px;
    /* Центрируем контент для этой версии */
    margin: 0 auto;
    text-align: center;
}

.hero__btns {
    justify-content: center;
}
.hero {
    perspective: 1000px;
    /* Создает 3D пространство */
    overflow: hidden;
}

.hero__content {
    transform-style: preserve-3d;
}

/* Начальное состояние элементов до загрузки JS (чтобы не было мигания) */
.depth-load {
    opacity: 0;
    will-change: transform, opacity;
}
/* LEGAL PAGES STYLES */
.pages {
    padding: 150px 0 100px;
    background: var(--bg-dark);
    min-height: 80vh;
}

.pages .container {
    max-width: 800px;
    /* Читабельная ширина для текстов */
}

.pages h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 40px;
}

.pages h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-main);
}

.pages p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.pages ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.pages ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}
/* CONTACT CARDS ON PAGES */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    transition: var(--transition);
    text-align: left;
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(207, 255, 4, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.contact-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-link {
    font-weight: 600;
    color: var(--accent);
    font-size: 16px;
    word-break: break-all;
}

.contact-address {
    font-style: normal;
    color: var(--text-main);
    line-height: 1.6;
}

.contact-extra {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

.contact-extra a {
    color: var(--accent);
    text-decoration: underline;
}

/* Адаптив для карточек */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
/* LEGAL PAGE ENHANCEMENTS */
.legal-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.legal-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--accent);
}

.legal-footer-box {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-mini-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 20px !important;
}

.contact-mini-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.contact-mini-list i {
    color: var(--accent);
    width: 20px;
}

.contact-mini-list a {
    color: var(--text-main);
    font-weight: 600;
}

.contact-mini-list a:hover {
    color: var(--accent);
}
.legal-content strong.text-accent {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.legal-content p {
    margin-bottom: 35px;
    /* Увеличиваем расстояние между параграфами */
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    padding-left: 20px;
}

.legal-content p:hover {
    border-left-color: var(--accent);
}
/* LEGAL SECTIONS */
.legal-content section {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 30px;
}

.legal-content section:last-of-type {
    border-bottom: none;
}

.legal-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.5px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 25px;
}

.legal-content strong {
    color: var(--text-main);
}

.text-accent {
    color: var(--accent);
    font-weight: 600;
}
/* Дополнительные стили для юридического контента */
.legal-content h2 {
    margin-top: 45px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--text-main);
}

.legal-content .text-accent {
    font-weight: 700;
}

.legal-footer-box .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(207, 255, 4, 0.1);
    border: 1px solid var(--accent);
    border-radius: 12px;
    margin-top: 20px;
}

.legal-footer-box .contact-link:hover {
    background: var(--accent);
    color: var(--bg-dark);
}
/* LEGAL ORDERED LISTS */
.legal-ordered-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.legal-ordered-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.legal-ordered-list li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: rgba(207, 255, 4, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}