@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Poppins, sans-serif;
    list-style: none;
}

html,
body {
    background-color: #050505;
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(237, 237, 237);
    position: relative;
    animation: pulse 2s infinite;
}

.loading-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(237, 237, 237);
    animation: loadingBar 2s forwards ease-in-out;
}

@keyframes loadingBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-section h1 {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-section p {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.hero-section-buttons {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.nav-left,
.nav-right {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.navbar {
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7vh;
    width: 100%;
    position: fixed;
    background-color: rgba(5, 5, 5, 0.95);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left-a {
    color: rgb(237, 237, 237);
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-right-home,
.nav-right-download,
.nav-right-team,
.nav-right-features {
    color: rgb(237, 237, 237, .75);
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-right-home:hover,
.nav-right-download:hover,
.nav-right-team:hover,
.nav-right-features:hover {
    color: rgb(237, 237, 237);
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding-top: 7vh;
}

.hero-section h1 {
    color: rgb(237, 237, 237);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.2;
}

.hero-section p {
    color: rgb(237, 237, 237, .75);
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-section-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.get-started-btn {
    background-color: rgb(237, 237, 237);
    color: #101010;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.learn-more-btn {
    background-color: transparent;
    color: rgb(237, 237, 237);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    border: 1px solid rgb(237, 237, 237, .3);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.get-started-btn:hover {
    box-shadow: 0 0 10px rgba(237, 237, 237, .5);
    transform: translateY(-5px);
}

.learn-more-btn:hover {
    border-color: rgb(237, 237, 237);
    transform: translateY(-5px);
}

.features-section {
    padding: 5rem 0;
    background-color: #080808;
}

.section-heading {
    text-align: center;
    color: rgb(237, 237, 237);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background-color: #101010;
    border-radius: 10px;
    padding: 2rem;
    width: 350px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #333;
}

.feature-icon {
    background-color: rgba(237, 237, 237, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: rgb(237, 237, 237);
}

.feature-title {
    color: rgb(237, 237, 237);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: rgb(237, 237, 237, .6);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-section {
    padding: 5rem 0;
    background-color: #050505;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background-color: #101010;
    border-radius: 10px;
    padding: 2.5rem;
    width: 300px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
    text-align: center;
}

.pricing-card.featured {
    background-color: #151515;
    border-color: #333;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #333;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-type {
    color: rgb(237, 237, 237);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pricing-price {
    color: rgb(237, 237, 237);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    color: rgb(237, 237, 237, .7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pricing-btn {
    background-color: rgb(237, 237, 237);
    color: #101010;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: block;
    width: 100%;
}

.pricing-btn:hover {
    box-shadow: 0 0 10px rgba(237, 237, 237, .5);
}

.testimonials-section {
    padding: 5rem 0;
    background-color: #080808;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #101010;
    border-radius: 10px;
    padding: 2rem;
    width: 350px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #333;
}

.testimonial-text {
    color: rgb(237, 237, 237, .8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    margin-right: 1rem;
}

.testimonial-name {
    color: rgb(237, 237, 237);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    color: rgb(237, 237, 237, .6);
    font-size: 0.8rem;
}

.faq-section {
    padding: 5rem 0;
    background-color: #050505;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    border-bottom: 1px solid #1a1a1a;
    padding: 1.5rem 0;
}

.faq-question {
    color: rgb(237, 237, 237);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-answer {
    color: rgb(237, 237, 237, .6);
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: #080808;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-heading {
    color: rgb(237, 237, 237);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgb(237, 237, 237, .7);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer {
    background-color: #101010;
    padding: 3rem 0;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    color: rgb(237, 237, 237);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgb(237, 237, 237, .6);
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: rgb(237, 237, 237);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgb(237, 237, 237, .6);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: rgb(237, 237, 237);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    color: rgb(237, 237, 237, .6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .feature-card,
    .pricing-card,
    .testimonial-card {
        width: 100%;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-container {
        flex-direction: column;
    }
}
