
:root {
    --primary: #8867ff;
    --secondary: #ff2f74;
    --accent: #48ff00;
    --dark: #0a0a1a;
    --light: #f0f0ff;
    --text: #e0e0ff;
    --bg-gradient: linear-gradient(135deg, var(--dark) 0%, #0f0f16 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background: var(--bg-gradient);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--primary);
    box-shadow: 0 4px 20px rgba(110, 68, 255, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--light);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--accent);
    margin: 5px;
    transition: all 0.3s;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(110, 68, 255, 0.4);
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 136, 0.4);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('https://plus.unsplash.com/premium_photo-1692049123825-8d43174c9c5c?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.about {
    background: rgba(26, 26, 58, 0.7);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.product {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.product-img {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.product-img:hover img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(110, 68, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.pricing {
    text-align: center;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(26, 26, 58, 0.7);
    padding: 2rem;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 1px solid var(--primary);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(110, 68, 255, 0.3);
}

.price {
    font-size: 2.5rem;
    color: var(--accent);
    margin: 1rem 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(110, 68, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.reviews {
    position: relative;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease;
}

.review {
    min-width: 100%;
    padding: 2rem;
    background: rgba(26, 26, 58, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.review-rating {
    color: var(--secondary);
    margin: 0.5rem 0;
}

.review-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.review-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
}

.review-nav-btn.active {
    background: var(--accent);
    opacity: 1;
    transform: scale(1.2);
}

.faq {
    background: rgba(26, 26, 58, 0.7);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(110, 68, 255, 0.3);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    margin-top: 1rem;
}

.contact-form {
    background: rgba(26, 26, 58, 0.7);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
}

.sec{
    padding-top: 120px;
}

.sec p, li{
    color: var(--text);
}

.form-group textarea {
    min-height: 150px;
    resize: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--dark);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(110, 68, 255, 0.3);
    border: 1px solid var(--accent);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 58, 0.9);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner p {
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-banner-btns {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.cookie-accept {
    background: var(--primary);
    color: var(--light);
    border: none;
}

.cookie-accept:hover {
    background: var(--secondary);
}

.cookie-decline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

.cookie-decline:hover {
    color: var(--accent);
    border-color: var(--accent);
}

footer {
    background: rgba(10, 10, 26, 0.9);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid var(--primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-links h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(110, 68, 255, 0.3);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 999;
    border-bottom: 1px solid var(--primary);
    }

    .nav-links.active {
    transform: translateY(0);
    }

    .burger {
    display: block;
    }

    .burger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active div:nth-child(2) {
    opacity: 0;
    }

    .burger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
    font-size: 2.5rem;
    }

    h2 {
    font-size: 2rem;
    }

    section {
    padding: 3rem 1.5rem;
    }

    .hero {
    min-height: 70vh;
    }

    .product {
    flex-direction: column;
    }

    .pricing-cards {
    flex-direction: column;
    align-items: center;
    }

    .popup-content {
    padding: 2rem 1.5rem;
    margin: 0 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.parallax {
    background-attachment: fixed;
}
