@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Syne:wght@400;500;600&display=swap');

:root {
    --bg-dark: #07050e;
    --bg-card: #120e20;
    --primary: #7c4dff;
    --primary-glow: rgba(124, 77, 255, 0.4);
    --text-light: #f3efff;
    --text-muted: #8f8aa2;
    --accent: #b388ff;
    --accent-hot: #ff4081;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.glowing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: drift 20s infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 10px;
}

header {
    background-color: rgba(7, 5, 14, 0.95);
    border-bottom: 1px solid rgba(124, 77, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
}

.logo-img {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.hero-media img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(124, 77, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stats {
    background: rgba(18, 14, 32, 0.6);
    border-top: 1px solid rgba(124, 77, 255, 0.1);
    border-bottom: 1px solid rgba(124, 77, 255, 0.1);
    padding: 40px 0;
    margin: 60px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-item p {
    color: var(--text-muted);
}

.social-proof {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.social-proof h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0.6;
}

.brands-grid i {
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.brands-grid i:hover {
    color: var(--accent);
    opacity: 1;
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(124, 77, 255, 0.1);
    text-align: left;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-meta {
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-meta span {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 400;
}

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

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

.feature-asymmetric img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(124, 77, 255, 0.15);
}

.feature-asymmetric h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.services-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
}

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

.service-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(124, 77, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 77, 255, 0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-body {
    padding: 25px;
}

.service-body h3 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 12px;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

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

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

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(124, 77, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.15);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-hot);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.form-section {
    background: rgba(18, 14, 32, 0.8);
    border-top: 1px solid rgba(124, 77, 255, 0.15);
    border-bottom: 1px solid rgba(124, 77, 255, 0.15);
    padding: 80px 0;
}

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

.form-container h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.form-container p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.lead-form input, .lead-form textarea {
    width: 100%;
    background: rgba(7, 5, 14, 0.8);
    border: 1px solid rgba(124, 77, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-light);
    font-family: inherit;
    transition: var(--transition);
}

.lead-form input:focus, .lead-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(179, 136, 255, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    grid-column: span 2;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-checkbox a {
    color: var(--accent);
}

.lead-form button {
    grid-column: span 2;
    width: 100%;
}

.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(124, 77, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: var(--text-light);
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

.trust-layer {
    max-width: 1200px;
    margin: 80px auto 20px auto;
    padding: 0 20px;
}

.trust-box {
    background: rgba(18, 14, 32, 0.4);
    border: 1px solid rgba(124, 77, 255, 0.08);
    border-radius: 8px;
    padding: 30px;
}

.trust-box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

footer {
    background-color: #040308;
    border-top: 1px solid rgba(124, 77, 255, 0.1);
    padding: 40px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: 90%;
    max-width: 600px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.5s ease;
}

.cookie-banner.active {
    transform: translateX(-50%) translateY(0);
}

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

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

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
}

.contact-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    margin: 30px 0;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-details i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.map-wrapper {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(124, 77, 255, 0.2);
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid rgba(124, 77, 255, 0.15);
    }
    nav.active ul {
        display: flex;
    }
    .burger-menu {
        display: block;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .feature-asymmetric {
        grid-template-columns: 1fr;
    }
    .lead-form {
        grid-template-columns: 1fr;
    }
    .form-group-full, .form-checkbox, .lead-form button {
        grid-column: span 1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.premium {
        transform: none;
    }
}