:root {
    --bg-color: #121212;
    --section-bg: #1a1a1a;
    --accent-color: #dfff11;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo__text {
    font-family: 'Space Grotesk', 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;
}

/* Background Animation Elements */
.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 100;
}

.bg-gradient-glow {
    position: fixed;
    top: -10%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(223, 255, 17, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: -1;
    filter: blur(80px);
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.logo__icon {
    width: 12px; height: 12px;
    background: var(--accent-color);
    transform: rotate(45deg);
}

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

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

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

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn--header:hover {
    background: var(--accent-color);
    color: #000;
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    background: var(--section-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer__list li { margin-bottom: 12px; }
.footer__list a { color: var(--text-muted); font-size: 0.9rem; }
.footer__list a:hover { color: var(--text-main); padding-left: 5px; }

.footer__contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer__contact-info svg {
    width: 18px;
    color: var(--accent-color);
}

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

/* Mobile */
.burger { display: none; }

@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
}
/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(223, 255, 17, 0.1);
    border: 1px solid rgba(223, 255, 17, 0.2);
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.badge__dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.text-gradient {
    color: var(--accent-color);
    -webkit-text-stroke: 1px var(--accent-color);
    /* Можно раскомментировать для эффекта контура:
    -webkit-text-fill-color: transparent; */
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn--primary {
    background: var(--accent-color);
    color: #000;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(223, 255, 17, 0.2);
}

.btn--secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

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

.hero__stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-item__label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Visuals & Animations */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__svg {
    width: 100%;
    max-width: 500px;
}

.pulse-circle {
    animation: pulse 4s ease-in-out infinite;
    transform-origin: center;
}

.wave-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 8s linear infinite;
}

.rotate-rect {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Анимация появления при загрузке */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero__content .fade-in:nth-child(1) { animation-delay: 0.1s; }
.hero__content .fade-in:nth-child(2) { animation-delay: 0.3s; }
.hero__content .fade-in:nth-child(3) { animation-delay: 0.5s; }
.hero__content .fade-in:nth-child(4) { animation-delay: 0.7s; }
.hero__content .fade-in:nth-child(5) { animation-delay: 0.9s; }
.hero__visual.fade-in { animation-delay: 1.1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__stats {
        justify-content: center;
    }
}
/* General Section Styling */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 60px;
}

/* About Section Specifics */
.about {
    padding: 120px 0;
    background: var(--section-bg);
}

.about__container {
    text-align: center;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(223, 255, 17, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 255, 17, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(223, 255, 17, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--accent-color);
    box-shadow: 0 0 0 0 rgba(223, 255, 17, 0.3);
    animation: iconPulse 2s infinite ease-out;
}

/* Stop icon pulse on hover, but make sure it has an initial animation */
.about-card:hover .about-card__icon {
    animation-play-state: paused; /* Stop animation on hover */
    box-shadow: 0 0 0 8px rgba(223, 255, 17, 0.2); /* Add a static shadow on hover */
}


@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 255, 17, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(223, 255, 17, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 255, 17, 0.3); }
}

.about-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card__description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .section-title { font-size: 2.0rem; }
    .section-subtitle { margin-bottom: 40px; }
    .about-card { padding: 30px 20px; }
}
.tech {
    padding: 120px 0;
    position: relative;
}

.tech__main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.tech__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.tech-item.active {
    background: rgba(223, 255, 17, 0.05);
    border-color: var(--accent-color);
}

.tech-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    transition: var(--transition);
}

.tech-item.active h3 { color: var(--accent-color); }

.tech-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tech-item i {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--accent-color);
}

.tech-item.active i {
    opacity: 1;
    transform: translateX(0);
}

/* Экран технологий */
.tech-screen {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 400px;
    position: relative;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.tech-screen__scanner {
    position: absolute;
    top: -100%; left: 0; width: 100%; height: 50px;
    background: linear-gradient(180deg, transparent, rgba(223, 255, 17, 0.1), transparent);
    border-bottom: 1px solid var(--accent-color);
    animation: scan 4s linear infinite;
    z-index: 2;
}

@keyframes scan {
    0% { top: -10%; }
    100% { top: 110%; }
}

.tech-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

.tech-info__icon {
    width: 50px; height: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.tech-info__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tech-info__text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.tech-info__meta {
    display: flex;
    gap: 20px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.7;
}

@media (max-width: 992px) {
    .tech__main { grid-template-columns: 1fr; }
    .tech-screen { height: 350px; }
}
.programs {
    padding: 120px 0;
    background: var(--bg-color);
}

.programs__header {
    text-align: center;
    margin-bottom: 80px;
}

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

.program-card {
    background: var(--section-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-card--featured {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: scale(1.05); /* Выделение главной карточки */
    box-shadow: 0 20px 40px rgba(223, 255, 17, 0.3);
}

.program-card--featured .program-card__icon {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}
.program-card--featured .program-card__description,
.program-card--featured .program-card__features li {
    color: rgba(0, 0, 0, 0.7);
}

.program-card--featured .program-card__features li svg {
    color: #000;
}

.program-card--featured .btn--primary {
    background: #000;
    color: var(--accent-color);
}

.program-card--featured .btn--primary:hover {
    background: #333;
    color: var(--accent-color);
}


.program-card__badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--accent-color);
    color: #000;
    padding: 8px 20px;
    border-bottom-left-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.program-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(223, 255, 17, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.program-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-card__description {
    font-size: 0.95rem;
    color: var(--text-muted);
    min-height: 60px; /* Для выравнивания карточек по высоте */
    margin-bottom: 30px;
}

.program-card__features {
    width: 100%;
    margin-bottom: 40px;
}

.program-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.program-card__features li:last-child {
    margin-bottom: 0;
}

.program-card__features svg {
    color: var(--accent-color);
    width: 18px;
}

.btn--full-width {
    width: 100%;
    margin-top: auto; /* Прижимает кнопку к низу */
}
.community {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0a0a 100%);
    overflow: hidden;
}

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

.community__stats {
    display: flex;
    gap: 40px;
    margin: 30px 0 40px;
}

.c-stat {
    display: flex;
    flex-direction: column;
}

.c-stat__val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Space Grotesk', sans-serif;
}

.c-stat__label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Стили карты */
.community__map-container {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.map-wrapper {
    position: relative;
    width: 100%;
}

.world-map {
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(223, 255, 17, 0.05));
}

.map-point__core {
    fill: var(--accent-color);
}

.map-point__pulse {
    fill: var(--accent-color);
    opacity: 0.4;
    animation: pointPulse 2s infinite;
    transform-origin: center;
}

@keyframes pointPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(4); opacity: 0; }
}

.map-tooltip {
    background: var(--accent-color);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.map-point:hover .map-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .community__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .community__stats { justify-content: center; }
    .community__content { order: 2; }
    .community__map-container { order: 1; }
}
.contact {
    padding: 120px 0;
    background: var(--section-bg);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact__details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item__icon {
    width: 50px; height: 50px;
    background: rgba(223, 255, 17, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
}

.contact-item__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item__value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Форма */
.contact__form-wrapper {
    background: #0d0d0d;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(223, 255, 17, 0.02);
}

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

.form-captcha label { font-size: 0.9rem; color: var(--text-muted); }
.form-captcha input { width: 100px !important; }

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-size: 0.9rem;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 100, 0.1);
    color: #00ff64;
    border: 1px solid rgba(0, 255, 100, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(255, 50, 50, 0.1);
    color: #ff3232;
    border: 1px solid rgba(255, 50, 50, 0.2);
}

@media (max-width: 992px) {
    .contact__container { grid-template-columns: 1fr; gap: 60px; }
    .contact__form-wrapper { padding: 30px 20px; }
}
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu__list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu__link {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* Burger Button Styles */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px; height: 20px;
    position: relative;
}

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

.burger::before { top: 0; }
.burger span { top: 9px; }
.burger::after { bottom: 0; }

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px; left: 30px;
    max-width: 400px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 2000;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.cookie-popup__content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-popup__icon { color: var(--accent-color); }

.cookie-popup__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-popup__text a {
    color: var(--text-main);
    text-decoration: underline;
}

.btn--sm { padding: 8px 16px; font-size: 0.8rem; }

@media (max-width: 992px) {
    .burger { display: block; }
    .cookie-popup { left: 20px; right: 20px; max-width: none; bottom: 20px; }
}
/* Legal Pages Styles */
.legal-page {
    padding-top: 140px; /* Отступ под фиксированный хедер */
    padding-bottom: 100px;
    background-color: var(--bg-color);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: clamp(1.6
    /* Refund Policy Styles */
.refund-accent {
    border-color: rgba(0, 150, 255, 0.2);
    background: rgba(0, 150, 255, 0.03);
}

.refund-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.refund-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.refund-card:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.04);
}

.refund-card svg {
    width: 32px; height: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.refund-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.refund-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Steps Styling */
.steps-mini {
    margin-top: 25px;
    display: grid;
    gap: 12px;
}

.step-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.step-num {
    width: 28px; height: 28px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.warning-block--refund {
    background: rgba(255, 50, 50, 0.02);
    border: 1px solid rgba(255, 50, 50, 0.1);
    padding: 30px;
    border-radius: 16px;
}

.warning-block--refund h2 {
    color: #ff3232 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-block--refund svg {
    color: #ff3232;
}

@media (max-width: 600px) {
    .refund-grid { grid-template-columns: 1fr; }
}rem, 4vw, 3rem);
    margin: 15px 0;
}

.last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-content h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-content p {
    margin-bottom: 20px;
}

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

/* Иконочный список */
.legal-list {
    margin: 25px 0;
}

.legal-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-list li svg {
    color: var(--accent-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Простой список */
.legal-list-simple {
    list-style: none;
    padding-left: 20px;
}

.legal-list-simple li {
    position: relative;
    margin-bottom: 10px;
}

.legal-list-simple li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--accent-color);
}

/* Блок контактов */
.contact-info-block {
    margin-top: 60px;
    padding: 40px;
    background: rgba(223, 255, 17, 0.03);
    border: 1px solid rgba(223, 255, 17, 0.1);
    border-radius: 16px;
}

.contact-data {
    list-style: none;
    margin-top: 20px;
}

.contact-data li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-data li svg {
    color: var(--accent-color);
    width: 18px;
}

.contact-data a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-data a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page { padding-top: 100px; }
    .contact-info-block { padding: 25px; }
}
/* Disclaimer Specific Styles */
.badge--warning {
    color: #ffcc00 !important;
    border-color: rgba(255, 204, 0, 0.3) !important;
    background: rgba(255, 204, 0, 0.05) !important;
}

.alert-box {
    display: flex;
    gap: 20px;
    background: rgba(255, 204, 0, 0.03);
    border: 1px solid rgba(255, 204, 0, 0.1);
    padding: 30px;
    border-radius: 12px;
    align-items: center;
}

.alert-box__icon {
    color: #ffcc00;
    flex-shrink: 0;
}

.risk-highlight {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.risk-highlight h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0 !important;
    color: var(--accent-color) !important;
}

.agreement-block {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    align-items: center;
}

.agreement-block svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .alert-box { flex-direction: column; text-align: center; }
}
/* Privacy Policy Specifics */
.terminology-list {
    list-style: none;
    padding: 0;
}

.terminology-list li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.data-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-item svg {
    color: var(--accent-color);
    width: 30px; height: 30px;
    flex-shrink: 0;
}

.legal-list-check {
    list-style: none;
}

.legal-list-check li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.legal-list-check svg {
    color: var(--accent-color);
    width: 18px;
}

.alert-box--security {
    border-left: 4px solid var(--accent-color);
    background: rgba(223, 255, 17, 0.02);
    padding: 25px;
    border-radius: 0 12px 12px 0;
}

.policy-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 10px;
}

.policy-mail:hover { text-decoration: underline; }
/* Privacy Policy Enhancements */
.policy-hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(223, 255, 17, 0.2);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.storage-info {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.storage-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.storage-item__icon {
    color: var(--accent-color);
}

.data-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.data-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-box h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.data-box h3 svg {
    width: 20px;
    color: var(--accent-color);
}

.data-box__list {
    list-style: none;
    font-size: 0.9rem;
}

.data-box__list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.data-box__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 4px; height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(223, 255, 17, 0.2);
}

@media (max-width: 768px) {
    .data-collection-grid, .storage-info { grid-template-columns: 1fr; flex-direction: column; }
    .policy-hero-card { flex-direction: column; text-align: center; }
}
/* Terms & Conditions Specifics */
.terms-accent {
    border-color: rgba(223, 255, 17, 0.4);
    background: rgba(223, 255, 17, 0.05);
}

.property-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
}

.property-block h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0 !important;
    color: var(--accent-color) !important;
}

.warning-block--terms {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #888;
}

.legal-list-check li i {
    color: #ff4444; /* Иконки запрета */
}

@media (max-width: 768px) {
    .property-block { padding: 20px; }
}/* Contact Page Specifics */
.contact-accent {
    border-color: var(--accent-color);
    background: rgba(223, 255, 17, 0.05);
}

.contact-grid-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.contact-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.contact-card-v2:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.contact-card-v2__icon {
    width: 50px;
    height: 50px;
    background: rgba(223, 255, 17, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-card-v2__info h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.contact-card-v2__info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-card-v2__link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    font-style: normal;
    word-break: break-all;
}

a.contact-card-v2__link:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .contact-grid-page {
        grid-template-columns: 1fr;
    }
    .contact-card-v2 {
        padding: 20px;
    }
}