/* ===== ОСНОВНЫЕ СТИЛИ ТЕМЫ ANTI-UGAR ===== */
:root {
    --primary-dark: #0a0c12;
    --card-bg: #1f2937;
    --card-border: #374151;
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --accent-orange: #F59E0B;
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ХЕДЕР - ПОЛНОСТЬЮ ПЕРЕОПРЕДЕЛЯЕМ ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #0a0c12;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Логотип с названием */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.logo-square {
    width: 45px;
    height: 45px;
    background: #F59E0B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-square:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.5);
}

.logo-letter {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.logo-text span {
    color: #F59E0B;
}

/* ===== НАВИГАЦИЯ - ИСПРАВЛЯЕМ ===== */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

/* Сбрасываем все стили списка */
.nav-list,
.nav-list ul,
.nav-list li {
    display: flex;
    align-items: center;
    gap: 25px !important; /* Увеличенный отступ */
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Убираем все маркеры */
.nav-list li:before,
.nav-list li:after,
.nav-list li::before,
.nav-list li::after {
    display: none !important;
    content: none !important;
}

/* Ссылки навигации */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: none !important;
    border-radius: 40px;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
}

.nav-link:hover {
    color: #F59E0B !important;
    background: rgba(245, 158, 11, 0.15);
    text-decoration: none !important;
}

.nav-link.active {
    color: #F59E0B !important;
    background: rgba(245, 158, 11, 0.25);
    font-weight: 600;
}

/* Ссылка на скачивание */
.nav-link-download {
    background: rgba(16, 185, 129, 0.15);
    color: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-left: 5px;
}

.nav-link-download i {
    margin-right: 8px;
    font-size: 14px;
    color: #10B981;
}

.nav-link-download:hover {
    background: #10B981;
    color: #ffffff !important;
    border-color: #10B981;
}

.nav-link-download:hover i {
    color: #ffffff;
}

/* Кнопки в хедере */
.header .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.header .btn-accent {
    background: #F59E0B;
    color: #ffffff;
}

.header .btn-accent:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.header .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.header .btn-outline:hover {
    border-color: #F59E0B;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
}

/* Блок авторизации */
.header-auth {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.header-auth-link {
    color: #ffffff;
    text-decoration: none !important;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
}

.header-auth-link:hover {
    color: #F59E0B;
}

/* Кнопка мобильного меню */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #3B82F6);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ===== СЕКЦИИ ===== */
section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(59,130,246,0.1);
    color: #60A5FA;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-badge i {
    margin-right: 5px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-title span {
    color: var(--accent-orange);
}

.section-desc {
    color: #d1d5db;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-accent {
    background: var(--accent-orange);
    color: #fff;
}

.btn-accent:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(245,158,11,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #374151;
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    background: rgba(245,158,11,0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #4b5563;
    color: #ffffff;
}

.btn-outline-light:hover {
    border-color: var(--accent-orange);
    background: rgba(245,158,11,0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-pulse-desc {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 16px 30px;
    border-radius: 50px;
    border: 1px solid #374151;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-pulse-desc:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px -5px rgba(245,158,11,0.2);
    transform: scale(1.02);
    color: #ffffff;
}

.btn-pulse-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    margin-top: 4px;
}

/* ===== МЕДИА-ЗАПРОСЫ ===== */
@media (max-width: 1024px) {
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .nav-list {
        gap: 15px !important;
    }
    
    .header .btn span,
    .header-auth-link span {
        display: none;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0a0c12;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 5px !important;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        color: #ffffff !important;
        font-size: 16px;
        justify-content: center;
    }

    .nav-link-download {
        margin-left: 0;
        margin-top: 5px;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header .btn-accent {
        display: none;
    }

    .header-auth {
        margin-left: auto;
        margin-right: 10px;
        gap: 10px;
    }

    .header-auth .btn-outline span,
    .header-auth-link span {
        display: none;
    }

    .header-auth .btn-outline i,
    .header-auth-link i {
        margin: 0;
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .logo-square {
        width: 40px;
        height: 40px;
    }
    
    .logo-letter {
        font-size: 24px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .header-logo {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo-square {
        width: 35px;
        height: 35px;
    }
    
    .logo-letter {
        font-size: 22px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}

/* ===== СЕКЦИЯ СКРИНШОТОВ ПРИЛОЖЕНИЯ ===== */
.app-screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #111827 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.screenshots-slider-wrap {
    position: relative;
    margin-top: 60px;
    padding-bottom: 50px;
}

.screenshots-swiper {
    overflow: hidden;
    padding: 16px 0 48px;
}

/* Карточка скриншота */
.screenshot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: zoom-in;
}

.screenshot-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: var(--card-bg);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.screenshot-card:hover .screenshot-img-wrap {
    box-shadow: 0 12px 48px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

/* Иконка-лупа при наведении */
.screenshot-zoom-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 18, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-zoom-icon i {
    font-size: 40px;
    color: var(--accent-orange);
    filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.9));
}

.screenshot-card:hover .screenshot-zoom-icon {
    opacity: 1;
}

/* Заглушка когда нет изображения */
.screenshot-img-wrap.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: repeating-linear-gradient(
        45deg,
        var(--card-bg) 0px,
        var(--card-bg) 10px,
        #161d2b 10px,
        #161d2b 20px
    );
    border: 2px dashed var(--card-border);
}

.screenshot-img-wrap.no-image::after {
    content: 'Загрузите скриншот';
    position: absolute;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.screenshot-img-wrap.no-image .screenshot-img,
.screenshot-img-wrap.no-image .screenshot-zoom-icon {
    display: none;
}

/* Подпись */
.screenshot-caption {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    transition: color 0.3s;
}

.screenshot-card:hover .screenshot-caption {
    color: var(--text-light);
}

/* Swiper навигация */
.screenshots-prev,
.screenshots-next {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--accent-orange) !important;
    transition: background 0.25s, border-color 0.25s;
    top: 42%;
}

.screenshots-prev::after,
.screenshots-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

.screenshots-prev:hover,
.screenshots-next:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--accent-orange);
}

.screenshots-prev {
    left: -22px;
}

.screenshots-next {
    right: -22px;
}

/* Пагинация */
.screenshots-pagination {
    bottom: 0 !important;
}

.screenshots-pagination .swiper-pagination-bullet {
    background: var(--card-border);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background 0.25s, transform 0.25s;
}

.screenshots-pagination .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    transform: scale(1.4);
}

/* ===== ЛАЙТБОКС ===== */
.ss-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ss-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.ss-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.ss-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ss-lightbox.is-open .ss-lightbox__content {
    transform: scale(1);
}

.ss-lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    display: block;
}

.ss-lightbox__caption {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.ss-lightbox__close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.ss-lightbox__close:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* ===== СЛАЙДЕР PDF-ОТЧЁТА ===== */
.pdf-report-section {
    padding: 100px 0;
    background: var(--primary-dark);
    overflow: hidden;
}

.pdf-slider-wrap {
    position: relative;
    margin-top: 60px;
    padding-bottom: 50px;
}

.pdf-swiper {
    overflow: hidden;
    padding: 16px 0 48px;
}

.pdf-card {
    cursor: zoom-in;
}

.pdf-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    background: var(--card-bg);
    aspect-ratio: 3 / 4;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.pdf-card:hover .pdf-img-wrap {
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.pdf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pdf-card:hover .pdf-img {
    transform: scale(1.05);
}

.pdf-zoom-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 18, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-zoom-icon i {
    font-size: 36px;
    color: var(--accent-orange);
    filter: drop-shadow(0 0 14px rgba(245, 158, 11, 0.9));
}

.pdf-card:hover .pdf-zoom-icon {
    opacity: 1;
}

/* Навигация PDF */
.pdf-prev,
.pdf-next {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--accent-orange) !important;
    transition: background 0.25s, border-color 0.25s;
    top: 42%;
}

.pdf-prev::after,
.pdf-next::after {
    font-size: 14px !important;
    font-weight: 700;
}

.pdf-prev:hover,
.pdf-next:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--accent-orange);
}

.pdf-prev { left: -22px; }
.pdf-next { right: -22px; }

.pdf-pagination {
    bottom: 0 !important;
}

.pdf-pagination .swiper-pagination-bullet {
    background: var(--card-border);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background 0.25s, transform 0.25s;
}

.pdf-pagination .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    transform: scale(1.4);
}

/* ===== СТРАНИЦА 404 ===== */
.error-main {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 64px;
    color: var(--accent-orange);
    margin-bottom: 24px;
    opacity: 0.9;
}

.error-title {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-orange);
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.error-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.error-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .error-title {
        font-size: 80px;
    }

    .error-subtitle {
        font-size: 22px;
    }

    .error-icon {
        font-size: 48px;
    }
}

/* ===== INDEX / FALLBACK СТРАНИЦА ===== */
.content-area {
    padding: 60px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.post-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
}

.post-thumbnail a {
    display: block;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.04);
}

.post-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.post-meta i {
    color: var(--accent-orange);
    margin-right: 4px;
}

.post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #f3f4f6;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.post-title a:hover {
    color: var(--accent-orange);
}

.post-excerpt {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.post-excerpt p {
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: #9ca3af;
}

.no-posts h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.no-posts a {
    color: var(--accent-orange);
    text-decoration: none;
}

.no-posts a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-thumbnail img {
        height: 160px;
    }
}

/* ===== ЮРИДИЧЕСКИЕ СТРАНИЦЫ ===== */
.legal-main {
    background: var(--primary-dark);
    min-height: 100vh;
    padding: 100px 20px 60px;
}

.legal-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-brand {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.legal-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 13px;
    color: #6b7280;
}

.legal-content {
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 14px;
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #e5e7eb;
    margin: 28px 0 10px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .legal-title {
        font-size: 26px;
    }

    .legal-content {
        font-size: 14px;
    }
}