:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --accent: #ff0000;
    --accent-hover: #cc0000;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    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;
}

h1,
h2,
h3,
.logo {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 1px;
}

.btn--outline {
    border: 1px solid var(--accent);
    color: var(--text-main);
}

.btn--outline:hover {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    display: inline-block;
    border-radius: 2px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.menu__link:hover {
    color: var(--accent);
}

/* --- FOOTER --- */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-card);
    margin-top: 100px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__title {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--text-main);
}

.footer__text {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer__list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.icon-sm {
    color: var(--accent);
    width: 18px;
}

.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 */
.burger {
    display: none;
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu {
        display: none;
    }

    .burger {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 25px;
        height: 2px;
        background: white;
        margin: 5px 0;
    }
}
/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge__dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    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;
    }
}

.hero__title {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-row {
    display: block;
}

.text-accent {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
    /* Можно добавить эффект контурного текста, если раскомментировать ниже */
    /* color: transparent; */
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

.btn--primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* Декор */
.hero__decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.strategies {
    position: relative;
    padding: 120px 0;
    background: #0f0f0f;
    overflow: hidden;
}

.strategies__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.strategies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.strategy-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.strategy-card__num {
    font-family: 'Syne', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 0, 0, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    transition: var(--transition);
}

.strategy-card:hover .strategy-card__num {
    color: var(--accent);
    opacity: 0.3;
}

.strategy-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
}
.insights {
    padding: 100px 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.insights .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.insights__wrapper {
    position: relative;
    height: 450px;
    width: 450px;
}

.insight-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.3);
    z-index: 5;
}

.insight-circle {
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-card);
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
    padding: 10px;
}

.insight-circle:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.insight-item {
    position: absolute;
}

/* Расстановка по кругу */
.item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item-3 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.item-4 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.insights__info h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .insights .container {
        grid-template-columns: 1fr;
    }

    .insights__wrapper {
        margin: 0 auto;
        width: 320px;
        height: 320px;
    }

    .insight-circle {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
}

.expertise {
    padding: 120px 0;
    background: #0d0d0d;
}

.expertise__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.expertise__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-num {
    display: block;
    font-size: 40px;
    font-family: 'Syne', sans-serif;
    color: var(--accent);
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Аккордеон */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    cursor: pointer;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.accordion-header span {
    font-family: 'Syne', sans-serif;
    color: var(--accent);
    font-weight: 700;
    opacity: 0.5;
}

.accordion-header h4 {
    font-size: 20px;
    flex-grow: 1;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding-left: 45px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    margin-top: 15px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
    color: var(--accent);
}

.accordion-body p {
    color: var(--text-muted);
    font-size: 15px;
}
.cases {
    padding: 100px 0;
    background: var(--bg-dark);
}

.cases__slider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.case-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.case-card:hover {
    transform: scale(1.02);
}

.case-image {
    position: relative;
    height: 250px;
    background: #1a1a1a;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.case-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
}

.case-info {
    padding: 30px;
}

.case-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.case-info p {
    color: var(--text-muted);
    font-size: 14px;
}
/* --- CONTACT SECTION --- */
.contact {
    padding: 100px 0;
    background: #080808;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact__meta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--accent);
    width: 20px;
}

.contact__form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.contact__form input:not([type="checkbox"]) {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.contact__form input:focus {
    border-color: var(--accent);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 4px;
}

.captcha-box label {
    font-size: 14px;
    white-space: nowrap;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    color: var(--text-muted);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.form-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
}

/* --- COOKIE --- */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #141414;
    padding: 20px;
    z-index: 2000;
    border-top: 2px solid var(--accent);
    transition: 0.5s ease;
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* --- MOBILE MENU --- */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-overlay.active {
    left: 0;
}

.mobile-menu {
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 30px;
}

.mobile-menu a {
    font-size: 32px;
    font-family: 'Syne';
    font-weight: 800;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
/* --- СТИЛИ ДЛЯ ВНУТРЕННИХ СТРАНИЦ --- */
.pages {
    padding: 160px 0 100px;
    /* Отступ сверху, чтобы хедер не перекрывал заголовок */
    min-height: 80vh;
}

.pages h1 {
    font-size: clamp(28px, 5vw, 56px);
    margin-bottom: 30px;
    color: var(--text-main);
}

.pages__intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 60px;
}

/* Карточки контактов */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-card__icon i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Syne', sans-serif;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.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;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.accent-link {
    color: var(--accent);
    text-decoration: underline;
}

/* Адаптив для внутренних страниц */
@media (max-width: 768px) {
    .pages {
        padding-top: 120px;
    }

    .contact-card {
        padding: 30px;
    }
}
/* --- ЮРИДИЧЕСКИЕ СТИЛИ (ДОПОЛНЕНИЕ) --- */
.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: none;
    /* Для подзаголовков в тексте оставляем обычный регистр */
}

.legal-list {
    margin-top: 15px;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.contact-card--legal {
    margin-top: 60px;
    max-width: 100%;
}

.contact-card--legal h2 {
    color: var(--text-main);
}
/* --- DISCLAIMER SPECIFIC --- */
.highlight-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    margin-bottom: 50px;
}

.risk-warning {
    border: 1px solid rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.02);
    padding: 30px;
    border-radius: 8px;
}

.risk-warning h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff4d4d;
    /* Чуть более мягкий красный для предупреждений */
}

.icon-inline {
    width: 24px;
    height: 24px;
}

.pages-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}
.legal-list-ordered {
    counter-reset: my-counter;
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.legal-list-ordered li {
    counter-increment: my-counter;
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.legal-list-ordered li::before {
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}