@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    background: #0b0b0b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

header.container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.logo svg {
    width: 100%;
    height: auto;
    display: block;
    fill: #8b68cc;
    stroke: #8b68cc;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #8b68cc;
    color: #0b0b0b;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 160ms ease;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.btn:hover {
    background: #a88ae0;
}

.center-text {
    text-align: center;
    color: #8b68cc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.center-text h1 {
    font-size: clamp(2.8rem, 7vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.center-text p {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.faq {
    margin: 60px auto;
    max-width: 800px;
    width: calc(100% - 40px);
    position: relative;
    z-index: 2;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #8b68cc;
    font-size: 2.5em;
}

.faq_item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq_question {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 1.15rem;
}

.faq_question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 160ms ease;
    color: #8b68cc;
}

.faq_question.active::after {
    transform: rotate(180deg);
}

.faq_answer {
    padding: 0 15px;
    max-height: 0;
    margin-bottom: 10px;
    overflow: hidden;
    transition: max-height 180ms ease;
}

.faq_answer p {
    font-size: 1.05rem;
    color: #ffffff;
    opacity: 0.7;
    line-height: 1.6;
    padding-bottom: 15px;
}

.faq_item.active .faq_answer p {
    opacity: 0.7;
}

.cta-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4rem 2rem;
    background: #0b0b0b;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #8b68cc;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.cta-container p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.footer {
    background: #090909;
    padding: 4rem 0;
    width: 100%;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(139, 104, 204, 0.1);
    flex-shrink: 0;
}

.footer_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer_logo h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.footer_logo h2 span {
    color: #8b68cc;
}

.footer_links {
    display: flex;
    gap: 3rem;
}

.footer_links a {
    color: #ffffff;
    opacity: 0.7;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 160ms ease, opacity 160ms ease;
}

.footer_links a:hover {
    opacity: 1;
    color: #8b68cc;
}

.footer p {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.3;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .logo {
        width: 40px;
    }
    header.container {
        padding: 1.5rem;
    }
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    .center-text h1 {
        font-size: 2.5rem;
    }
    .center-text p {
        font-size: 1.2rem;
    }
    .faq h2,
    .cta-container h2 {
        font-size: 2.2rem;
    }
    .faq {
        margin: 40px auto;
    }
    .faq_question {
        padding: 10px;
        font-size: 1.05rem;
    }
    .faq_answer {
        padding: 0 10px;
    }
    .faq_answer p {
        padding-bottom: 10px;
        font-size: 0.95rem;
    }
    .footer_links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis-stopped {
    overflow: hidden;
}
