/* ========== Базовые стили ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-red: #ff1744;
    --accent-red-glow: rgba(255, 23, 68, 0.5);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Навигация ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 100px;
    width: auto;
    max-height: none;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========== Hero секция ========== */
.hero {
    position: relative;
    min-height: 70vh;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    text-align: center;
    padding: 20px;
    margin-top: 150px;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    color: var(--accent-red);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 0 20px var(--accent-red-glow);
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-title-white {
    color: #ffffff;
}

.hero-title-gradient {
    background: linear-gradient(180deg, #ffffff 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 60px;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 23, 68, 0.3);
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, var(--accent-red), transparent, var(--accent-red));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero-feature:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.hero-feature:hover::before {
    opacity: 0.3;
}

.hero-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red-glow);
}

.hero-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== Секции ========== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red);
}

/* ========== Каталог ========== */
.catalog {
    background: var(--secondary-dark);
}

.catalog .container {
    position: relative;
}

.catalog-swiper {
    padding: 20px 0;
    width: 100%;
}

.catalog-swiper .swiper-slide {
    height: auto;
}

.catalog-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    height: 420px; /* Фиксированная высота для одинакового размера */
    display: flex;
    flex-direction: column;
    background: var(--primary-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.product-card:hover {
    border-color: var(--accent-red);
    box-shadow:
        0 0 20px var(--accent-red-glow),
        0 0 40px var(--accent-red-glow),
        inset 0 0 20px var(--accent-red-glow);
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--secondary-dark);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-badge.small {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    background: var(--accent-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--accent-red-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-price {
    display: inline-block;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--accent-red-glow);
}

/* Кнопки навигации Swiper */
.catalog-prev,
.catalog-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    min-width: 50px;
    min-height: 50px;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: var(--accent-red);
    border: none;
    color: var(--text-primary) !important;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--accent-red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.catalog-prev {
    left: -40px;
}

.catalog-next {
    right: -40px;
}

/* Скрываем стандартные стрелки Swiper */
.catalog-prev::after,
.catalog-next::after {
    display: none !important;
}

/* Настраиваем иконки FontAwesome */
.catalog-prev i,
.catalog-next i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.catalog-prev:hover,
.catalog-next:hover {
    background: var(--text-primary);
    color: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

/* Скрываем кнопки на мобильных */
@media (max-width: 768px) {
    .catalog-prev,
    .catalog-next {
        display: none;
    }
}

.catalog-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

.catalog-footer.top {
    margin-bottom: 15px;
}

.all-products-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--accent-red-glow);
    white-space: nowrap;
}

.all-products-btn:hover {
    background: var(--accent-red);
    box-shadow: 0 0 40px var(--accent-red-glow);
    transform: translateY(-3px);
}

.all-products-btn i {
    font-size: 1.2rem;
}

/* ========== Преимущества ========== */
.benefits {
    background: var(--primary-dark);
}

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

.benefits-grid-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px auto 0;
    max-width: 800px;
}

.benefit-card {
    background: var(--secondary-dark);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red-glow);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== Наука ========== */
.science {
    background: var(--secondary-dark);
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.science-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-red);
    text-shadow: 0 0 20px var(--accent-red-glow);
}

.science-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.science-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.science-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    text-shadow: 0 0 20px var(--accent-red-glow);
    min-width: 80px;
}

.point-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.point-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.science-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.wave-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-red-glow);
    animation: wave 3s ease-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 1s;
}

.wave:nth-child(3) {
    animation-delay: 2s;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ========== Контакты ========== */
.contact {
    background: var(--primary-dark);
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 40px;
    background: var(--secondary-dark);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 150px;
}

.social-link i {
    font-size: 2.5rem;
}

.social-link span {
    font-weight: 500;
}

.social-link:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 40px var(--accent-red-glow);
    transform: translateY(-5px);
}

/* ========== Отзывы ========== */
.reviews {
    background: var(--secondary-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--primary-dark);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red-glow);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 20px var(--accent-red-glow);
}

.review-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.review-stars {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== Подвал ========== */
.footer {
    background: var(--secondary-dark);
    padding: 60px 0 25px;
    border-top: 1px solid rgba(255, 23, 68, 0.2);
}

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

.footer-brand h4,
.footer-nav h4,
.footer-contacts h4,
.footer-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand .footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red-glow);
    transform: translateY(-3px);
}

.footer-nav ul,
.footer-contacts ul,
.footer-info ul {
    list-style: none;
}

.footer-nav li,
.footer-info li {
    margin-bottom: 12px;
}

.footer-contacts li {
    margin-bottom: 15px;
}

.footer-nav a,
.footer-info a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-info a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contacts i {
    color: var(--accent-red);
    width: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-red);
}

/* ========== Анимации ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Адаптивность ========== */
@media (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .logo img {
        height: 50px;
        max-height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 20px;
        text-align: center;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 23, 68, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .science-content {
        grid-template-columns: 1fr;
    }

    .science-visual {
        min-height: 300px;
    }

    .wave-animation {
        width: 250px;
        height: 250px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        padding: 20px 25px;
        min-width: 120px;
    }

    section {
        padding: 60px 0;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-feature {
        max-width: 100%;
        padding: 25px 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid-centered {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .benefits-grid,
    .benefits-grid-centered {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        justify-content: center;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contacts li {
        justify-content: center;
    }
}

/* ========== Корзина в навигации ========== */
.nav-cart-link {
    position: relative !important;
    display: flex;
    align-items: center;
    gap: 8px !important;
}

.nav-cart-link::after {
    display: none !important;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 0 10px var(--accent-red-glow);
}

/* ========== Уведомление о добавлении в корзину ========== */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-dark);
    border: 2px solid var(--accent-red);
    color: var(--text-primary);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 30px var(--accent-red-glow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification i {
    color: #4caf50;
    font-size: 1.2rem;
}

.cart-notification span {
    font-weight: 500;
}

/* ========== Кнопка заказа на главной ========== */
.product-info-footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.product-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 16px;
    border: 2px solid var(--accent-red);
    background: transparent;
    color: var(--accent-red);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-red-glow);
}

.product-order-btn:hover {
    background: var(--accent-red);
    color: #ffffff;
    box-shadow: 0 0 20px var(--accent-red-glow);
}

/* ========== Политика конфиденциальности ========== */
.privacy-section {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-red), #ff5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-updated {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.privacy-block {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 23, 68, 0.1);
}

.privacy-block h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.privacy-block h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--accent-red);
}

.privacy-block p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.privacy-block ul li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.privacy-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 1.2rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 40px;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-block {
        padding: 20px;
    }

    .privacy-block h2 {
        font-size: 1.3rem;
    }
}

/* ========== Модальное окно ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--secondary-dark);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 23, 68, 0.2);
    box-shadow: 0 0 40px rgba(255, 23, 68, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 23, 68, 0.1);
    color: var(--accent-red);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-red), #ff5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
}
