:root {
    /* Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --accent: #f43f5e;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);

    /* Gradients */
    --grad-main: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --grad-accent: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    /* For Lenis */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo__text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--primary);
    color: white;
}

.btn--primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header--scrolled {
    padding: 12px 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

.logo__icon {
    width: 32px;
    height: 32px;
    background: var(--grad-accent);
    border-radius: 8px;
    rotate: 45deg;
}

.header__menu {
    display: flex;
    gap: 32px;
}

.header__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.header__link:hover {
    color: var(--primary);
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #fff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__description {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 15px;
}

.footer__title {
    margin-bottom: 24px;
    font-size: 18px;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: var(--text-muted);
    font-size: 15px;
}

.footer__list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 15px;
}

.footer__contacts svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Adaptive */
@media (max-width: 992px) {
    .header__nav {
        display: none;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__contacts li {
        justify-content: center;
    }
}
.header-padding {
    padding-top: 100px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #fff 0%, #f1f5f9 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Чтобы не мешал кликам по кнопкам */
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 100px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
}

.text-gradient {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn--outline {
    border: 2px solid #e2e8f0;
    color: var(--text-main);
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero__stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__stats {
        gap: 20px;
    }
}
.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.solution-card--featured {
    background: var(--bg-light);
    border: 2px solid var(--primary);
}

.solution-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.solution-card:hover .solution-card__icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.solution-card__title {
    font-size: 22px;
    margin-bottom: 16px;
}

.solution-card__text {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.solution-card__list {
    margin-bottom: 30px;
}

.solution-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.solution-card__list svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
}

.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.solution-card__link svg {
    width: 18px;
    transition: var(--transition);
}

.solution-card__link:hover svg {
    transform: translateX(5px);
}

/* Mobile */
@media (max-width: 992px) {
    .solutions__grid {
        grid-template-columns: 1fr;
    }
}
.process {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.process__steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Центральная линия */
.process__steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    transform: translateX(-50%);
}

.process-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-item__num {
    width: 80px;
    height: 80px;
    background: var(--grad-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.process-item__content {
    width: 40%;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.process-item:hover .process-item__content {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.process-item__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.process-item__text {
    font-size: 15px;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
    .process__steps::before {
        left: 40px;
    }

    .process-item,
    .process-item:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        gap: 30px;
    }

    .process-item__content {
        width: calc(100% - 110px);
    }

    .process-item__num {
        width: 60px;
        height: 60px;
        font-size: 18px;
        flex-shrink: 0;
    }
}
.bg-light-alt {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.blog-card__content {
    padding: 30px;
}

.blog-card__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card__meta svg {
    width: 14px;
    height: 14px;
}

.blog-card__title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-card:hover .blog-card__title {
    color: var(--primary);
}

.blog-card__text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.blog-card__more svg {
    width: 16px;
    transition: var(--transition);
}

.blog-card__more:hover svg {
    transform: translateX(3px);
}

.blog__footer {
    text-align: center;
}

/* Adaptive */
@media (max-width: 992px) {
    .blog__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .blog__grid {
        grid-template-columns: 1fr;
    }
}
.reviews {
    background: var(--bg-white);
    padding-bottom: 150px;
}

.reviews__marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    min-width: 100%;
}

/* Animations */
.marquee-track--left .marquee-content {
    animation: scroll-left 40s linear infinite;
}

.marquee-track--right .marquee-content {
    animation: scroll-right 40s linear infinite;
}

.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 15px));
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-50% - 15px));
    }

    to {
        transform: translateX(0);
    }
}

/* Card Style */
.review-card {
    width: 400px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.review-card__user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-card__user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__user strong {
    display: block;
    font-size: 16px;
    color: var(--text-main);
}

.review-card__user span {
    font-size: 13px;
    color: var(--text-muted);
}

.review-card p {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Mobile adjust */
@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 20px;
    }
}
.contact {
    background: var(--bg-light);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact__info {
    max-width: 500px;
}

.contact__description {
    font-size: 18px;
    color: var(--text-muted);
    margin: 20px 0 40px;
}

.contact__details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item__icon {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-item span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-item strong {
    font-size: 18px;
    color: var(--text-main);
}

.contact__badge {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    color: #065f46;
    font-size: 14px;
}

/* Form Styling */
.contact__form-box {
    background: #fff;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form__group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
}

.form__group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.form__checkbox a {
    text-decoration: underline;
    color: var(--primary);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Messages */
.form-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.form-message--success {
    background: #d1fae5;
    color: #065f46;
}

.form-message--error {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 992px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__form-box {
        padding: 30px;
    }
}
.reviews {
    background: var(--bg-white);
    padding-bottom: 120px;
}

.reviews__marquee-wrapper {
    margin-top: 50px;
    background: var(--bg-light);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    /* Мягкое затухание по краям */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    gap: 100px;
    /* Большой отступ между отзывами */
    flex-shrink: 0;
    min-width: 100%;
    animation: scroll-left 50s linear infinite;
}

.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 50px));
    }
}

.review-simple {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 450px;
    flex-shrink: 0;
}

.review-simple__text {
    font-size: 18px;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    position: relative;
}

.review-simple__author {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .marquee-content {
        gap: 50px;
    }

    .review-simple {
        max-width: 300px;
    }

    .review-simple__text {
        font-size: 16px;
    }
}
/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu--active {
    right: 0;
}

.mobile-menu__close {
    position: absolute;
    top: 30px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__link {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 24px;
    right: 24px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.cookie-popup--show {
    transform: translateY(-130px);
}

.cookie-popup__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-popup p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .cookie-popup__content {
        flex-direction: column;
        text-align: center;
    }
}
/* Стилизация иконок бургера */
.header__burger {
    display: none;
    /* По умолчанию скрыт на десктопах */
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    /* Выше мобильного меню */
}

/* Рисуем центральную линию */
.header__burger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    left: 0;
    top: 9px;
    transition: var(--transition);
}

/* Рисуем верхнюю и нижнюю линии через псевдоэлементы */
.header__burger::before,
.header__burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    left: 0;
    transition: var(--transition);
}

.header__burger::before {
    top: 0;
}

.header__burger::after {
    bottom: 0;
}

/* Эффект трансформации в крестик (когда меню открыто) */
.header__burger--active span {
    transform: scale(0);
}

.header__burger--active::before {
    top: 9px;
    transform: rotate(45deg);
}

.header__burger--active::after {
    top: 9px;
    transform: rotate(-45deg);
}

/* ПОКАЗЫВАЕМ БУРГЕР НА МОБИЛЬНЫХ (до 992px) */
@media (max-width: 992px) {
    .header__burger {
        display: block;
    }

    /* Скрываем обычное меню, если оно еще не скрыто */
    .header__nav {
        display: none;
    }
}
/* Стили для внутренних страниц (Stage 5.2) */
.pages {
    min-height: 80vh;
    padding-top: 160px;
    /* Учет фиксированного хедера */
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-link {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 500;
}

.contact-extra {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
.legal-content {
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.legal-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-main);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 30px;
    list-style: none;
}

.legal-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-muted);
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--grad-accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
}