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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #0a0c12;
    color: #eef2f5;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: clamp(14px, 2vw, 16px);
}

.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: #ff00c1;
    z-index: -1;
    animation: glitch-offset 0.3s infinite linear alternate-reverse;
}

.glitch::after {
    color: #00fff9;
    z-index: -2;
    animation: glitch-offset2 0.2s infinite linear alternate-reverse;
}

@keyframes glitch-offset {
    0% {
        left: -2px;
        top: 1px;
    }

    100% {
        left: 2px;
        top: -1px;
    }
}

@keyframes glitch-offset2 {
    0% {
        left: 3px;
        top: -1px;
    }

    100% {
        left: -3px;
        top: 1px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
    position: sticky;
    top: 0;
    background: rgba(10, 12, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    flex-wrap: wrap;
}

.logo-icon {
    position: relative;
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #00ffff;
    border-radius: 10px;
    transform: rotate(45deg);
    box-shadow: 0 0 15px cyan;
    z-index: 2;
}

.earth {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #ffffff, #00ffff);
    border-radius: 50%;
    box-shadow: 0 0 15px cyan;
    animation: rotate 10s linear infinite;
    z-index: 3;
}

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

    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    display: flex;
    align-items: center;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: normal;
    flex-wrap: wrap;
}

.cyber-part {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.x-part {
    color: #ffffff;
    font-size: 1.4em;
    margin: 0 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    display: inline-block;
    vertical-align: middle;
}

.pert-part {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.nav-links {
    display: flex;
    gap: clamp(20px, 4vw, 36px);
    font-weight: 600;
    flex-wrap: wrap;
}

.nav-links a {
    color: #c0d4dd;
    text-decoration: none;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
    font-size: clamp(14px, 2vw, 16px);
}

.nav-links a:hover {
    color: #00ffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    box-shadow: 0 0 8px cyan;
    transition: 0.2s;
}

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

/* Бургер-меню (три полоски) */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #00ffff;
    border-radius: 3px;
    transition: 0.3s;
    box-shadow: 0 0 8px cyan;
}


.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Мобильное меню (выпадающее) */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16, 24, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    z-index: 99;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.mobile-menu a {
    color: #c0d4dd;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.2s;
    text-align: center;
}

.mobile-menu a:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.btn {
    display: inline-block;
    padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 32px);
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
}

.btn-primary {
    background: #00ffff;
    color: #0a0c12;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    background: #00e6e6;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    transform: scale(1.03);
}

.btn-outline {
    border: 1.5px solid #00ffff;
    color: #00ffff;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.5);
}


.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    padding: 14px 28px;
    border-radius: 60px;
    background: #00ffff;
    color: #0a0c12;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transition: 0.2s;
    font-size: clamp(14px, 2.5vw, 16px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-btn:hover {
    background: #00e6e6;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    transform: scale(1.05);
}

.floating-btn i {
    font-size: 18px;
}


.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(16, 24, 30, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    flex-wrap: wrap;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    color: #b0c8d0;
    font-size: clamp(13px, 2vw, 14px);
    flex: 1;
}

.cookie-text a {
    color: #00ffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.cookie-text a:hover {
    text-shadow: 0 0 8px cyan;
    border-bottom-color: #00ffff;
}

.cookie-btn {
    padding: 8px 24px;
    background: #00ffff;
    color: #0a0c12;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    font-size: clamp(13px, 2vw, 14px);
}

.cookie-btn:hover {
    background: #00e6e6;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: clamp(40px, 8vw, 60px) 0 clamp(40px, 8vw, 80px);
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 400px;
    min-width: 280px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border-left: 4px solid #00ffff;
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 18px);
    font-weight: 600;
    margin-bottom: 24px;
    color: #aaffff;
    font-size: clamp(12px, 2vw, 14px);
}

.hero h1 {
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-highlight {
    color: #00ffff;
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 8px 12px -8px rgba(0, 255, 255, 0.3);
}

.hero p {
    font-size: clamp(16px, 3vw, 18px);
    color: #b0c8d0;
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    gap: clamp(20px, 4vw, 30px);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: #00ffff;
    font-size: 20px;
}

.hero-visual {
    flex: 1 1 300px;
    min-width: 250px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}


.services,
#services {
    padding: clamp(40px, 8vw, 60px) 0;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: clamp(28px, 6vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title span {
    color: #00ffff;
}

.section-desc {
    color: #a0b8c0;
    max-width: 600px;
    margin-bottom: clamp(40px, 8vw, 60px);
    font-size: clamp(16px, 3vw, 18px);
}

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

.service-card {
    background: rgba(16, 24, 30, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    padding: clamp(24px, 5vw, 36px) clamp(16px, 4vw, 24px);
    transition: 0.3s;
}

.service-card:hover {
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: clamp(24px, 5vw, 30px);
    color: #00ffff;
}

.service-card h3 {
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 16px;
}

.service-card p {
    color: #b0c8d0;
    margin-bottom: 20px;
    font-size: clamp(14px, 2.5vw, 16px);
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0d8e0;
    font-size: clamp(13px, 2.3vw, 15px);
}

.service-features i {
    color: #00ffff;
    font-size: 14px;
}

.extra-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0 60px;
}

.extra-card {
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 30px) clamp(15px, 3vw, 20px);
    text-align: center;
    transition: 0.2s;
}

.extra-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
}

.extra-card i {
    font-size: clamp(30px, 6vw, 40px);
    color: #00ffff;
    margin-bottom: 20px;
    display: block;
}

.extra-card h4 {
    font-size: clamp(18px, 3.5vw, 20px);
    margin-bottom: 12px;
}

.extra-card p {
    color: #a0b8c0;
    font-size: clamp(13px, 2.3vw, 14px);
}

.how-section {
    background: rgba(0, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: clamp(30px, 6vw, 50px);
    padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 40px);
    margin: 40px 0;
}

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

.step {
    text-align: center;
}

.step-num {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border: 2px solid #00ffff;
    color: #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(20px, 4vw, 24px);
    margin: 0 auto 20px;
    box-shadow: 0 0 15px cyan;
}

.step h4 {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 10px;
}

.step p {
    font-size: clamp(13px, 2.3vw, 14px);
    color: #b0c8d0;
}

#pricing {
    scroll-margin-top: 80px;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.price-card {
    background: rgba(16, 24, 30, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    padding: clamp(20px, 4vw, 30px);
    transition: 0.3s;
}

.price-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.price-card.popular {
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.popular-badge {
    display: inline-block;
    background: #00ffff;
    color: #0a0c12;
    padding: 4px 16px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.price-value {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 800;
    color: #00ffff;
    margin: 20px 0;
}

.price-value small {
    font-size: clamp(12px, 2vw, 16px);
    color: #8aa0aa;
}

.price-card .btn {
    display: none;
}

#about {
    scroll-margin-top: 80px;
}

.about {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: clamp(30px, 6vw, 50px);
    padding: clamp(30px, 6vw, 50px) clamp(20px, 5vw, 40px);
    margin: 60px 0;
}

.about-text {
    flex: 2 1 300px;
}

.about-text p {
    font-size: clamp(14px, 2.5vw, 16px);
}

.about-stats {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-size: clamp(32px, 6vw, 42px);
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 15px cyan;
    line-height: 1;
}

.stat-label {
    color: #b0d0da;
    margin-top: 8px;
    font-size: clamp(12px, 2vw, 14px);
}

#contact {
    scroll-margin-top: 80px;
}

.cta {
    text-align: center;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 30px);
    background: rgba(0, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: clamp(30px, 6vw, 50px);
    margin: 60px 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00ffff;
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    text-decoration: none;
    padding: clamp(12px, 3vw, 15px) clamp(20px, 5vw, 30px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 60px;
    margin-top: 30px;
    transition: 0.2s;
    cursor: pointer;
    background: transparent;
}

.contact-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.contact-btn i {
    font-size: clamp(18px, 4vw, 24px);
}

/* Текст согласия с политикой */
.consent-text {
    text-align: center;
    margin: 20px 0 15px;
    font-size: clamp(12px, 2.2vw, 14px);
    color: #b0c8d0;
}

.consent-text a {
    color: #00ffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    transition: 0.2s;
}

.consent-text a:hover {
    text-shadow: 0 0 8px cyan;
    border-bottom-color: #00ffff;
}

footer {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: #8098a0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col p {
    font-size: clamp(13px, 2.3vw, 14px);
    margin-bottom: 5px;
}

.footer-col strong {
    color: #fff;
    font-size: clamp(14px, 2.5vw, 16px);
}

.protected-email,
.protected-tg {
    color: #8098a0;
    font-size: clamp(13px, 2.3vw, 14px);
    word-break: break-all;
}

.footer-link {
    color: #00ffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    transition: 0.2s;
    font-size: clamp(13px, 2.3vw, 14px);
}

.footer-link:hover {
    text-shadow: 0 0 8px cyan;
    border-bottom-color: #00ffff;
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .navbar .btn-outline {
        margin-left: auto;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 16px;
    }

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

    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .logo-text {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .price-value {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .navbar .btn-outline {
        padding: 8px 16px;
        font-size: 14px;
    }
}