@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter";
}

body{
    background-color: #231343;
}

.header{
    width: 97%;
    height: 120px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 0.4rem;
}

.logo img{
    width: 349px;
    height: 88px;
}

.nav{
    width: 50%;
}

.nav ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 26px;
}

.nav ul li a{
    color: #fff;
}

.burger{
    width: 4%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    display: none;
}

.burger div{
    width: 100%;
    height: 4px;
    background-color: #d9d9d9;
}

.hero{
    width: 93%;
    height: 589px;
    border-radius: 50px;
    margin: auto;
    margin-top: 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.22),rgba(0,0,0,0.22)), url(images/hero.png);
    background-size: 100% 120%;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

.hero-text{
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hero-text h2{
    font-size: 68px;
    font-weight: 500;
    width: 60%;
    color: #fff;
}

.hero-text p{
    width: 40%;
    font-size: 22px;
    color: #fff;
}

.hero-text button{
    width: 360px;
    height: 60px;
    background-color: #231343;
    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 11px;
    cursor: pointer;
}

.video{
    width: 95%;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 2rem;
    overflow: hidden;
}

.video h1{
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.video video{
    width: 90%;
    border-radius: 20px;
}

.why{
    width: 93%;
    height: 600px;
    margin: auto;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.why-left{
    width: 409px;
    height: 553px;
    background-image: url(images/how-it-works-hero.png);
    background-size: cover;
    background-position: center;
    border-radius: 26px;
}

.why-right{
    width: 765px;
    height: 435px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.why-right h2{
    font-size: 50px;
    font-weight: 500;
    color: #fff;
}

.why-right p{
    width: 70%;
    font-size: 18px;
    color: #fff;
}

.why-right ul{
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.why-right ul li{
    color: #fff;
    font-size: 20px;
}

.features{
    width: 93%;
    height: 1300px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: auto;
}

.features-img{
    width: 100%;
    height: 481px;
    background-image: url(images/features-img.png);
    background-size: 100% 140%;
    background-position: center;
    border-radius: 32px;
}

.features-cards{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.features-card{
    width: 470px;
    height: 220px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.features-card h2{
    font-size: 43px;
    font-weight: 500;
    color: #fff;
}

.features-card p{
    width: 70%;
    font-size: 21px;
    color: #fff;
}

.packages{
    width: 93%;
    height: 1700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.packages h2{
    font-size: 70px;
    font-weight: 500;
    color: #fff;
}

.packages-cards{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.free{
    width: 88%;
    height: 480px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.free h2{
    font-size: 58px;
}

.free h3{
    font-size: 40px;
    color: #fff;
    font-weight: 500;
}

.free ul{
    width: 100%;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

.free ul li{
    width: 100%;
    font-size: 23px;
    color: #fff;
    border-top: 3px solid #fff;
    padding: 1rem;
}

.free button{
    width: 383px;
    height: 48px;
    background-color: #fff;
    color: #231343;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
}

.packages-card{
    width: 481px;
    height: 489px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.packages-card h2{
    font-size: 58px;
}

.packages-card h3{
    font-size: 40px;
    color: #fff;
    font-weight: 500;
}

.packages-card ul{
    width: 100%;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

.packages-card ul li{
    width: 100%;
    font-size: 23px;
    color: #fff;
    border-top: 3px solid #fff;
    padding: 1rem;
}

.packages-card button{
    width: 383px;
    height: 48px;
    background-color: #fff;
    color: #231343;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
}

.experience{
    width: 100%;
    height: 490px;
    background-image: linear-gradient(rgba(0,0,0,0.47)), url(images/experience.png);
    background-size: 100% 180%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-text{
    width: 70%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.experience-text h2{
    font-size: 50px;
    color: #fff;
    font-weight: 500;
}

.experience-text p{
    width: 70%;
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.experience-text button{
    width: 331px;
    height: 49px;
    border: none;
    border-radius: 20px;
    background-color: #231343;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.footer{
    width: 1200px;
    height: 755px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    margin: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footer-top{
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-top-1{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.footer-logo{
    width: 285px;
    height: 74px;
}

.footer-logo img{
    width: 100%;
    height: 100%;
}

.footer-description{
    width: 309px;
}

.footer-description p{
    font-size: 20px;
    color: #fff;
}

.footer-social-media{
    width: 335px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social-media{
    width: 73px;
    height: 73px;
    background-color: #231343;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social-media i{
    font-size: 40px;
    color: #fff;
}

.footer-top-2{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.footer-top-2 h2{
    font-size: 50px;
    font-weight: 500;
    color: #fff;
}

.footer-top-2 ul{
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.footer-top-2 ul li{
    font-size: 30px;
    color: #fff;
}

.footer-bottom{
    width: 90%;
    height: 15%;
    border-top: 3px solid #d9d9d9;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p{
    width: 80%;
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-top: 1.4rem;
}

.payment{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.47);
    display: none;
}

.payment-card {
    width: 95%;
    max-width: 850px; 
    height: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#paypal-button-container {
    width: 100% !important;
    min-width: 100%;
    margin-top: 15px;
}

#paypal-button-container iframe {
    width: 100% !important;
    min-width: 100% !important;
}

.payment-top{
    width: 90%;
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.payment-top h2{
    font-size: 50px;
    color: #fff;
    font-weight: 500;
}

.payment-top h3{
    font-size: 28px;
    color: #fff;
    font-weight: 500;
}

.payment-body{
    width: 90%;
    height: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.payment-body input{
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 0px;
    border-right: 0px;
    border-radius: 74px;
    outline: none;
    padding-left: 1.7rem;
    color: #fff;
    font-size: 30px;
}

.payment-body input::placeholder{
    color: #fff;
}

.payment-body button{
    width: 100%;
    height: 58px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 0px;
    border-right: 0px;
    border-radius: 74px;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
}

.payment-remove{
    width: 8%;
    height: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
}

.payment-remove button{
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 0px;
    border-right: 0px;
    border-radius: 100%;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
}

.falconai-code{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.47);
    display: none;
}

.falconai-code-card{
    width: 70%;
    height: 400px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.falconai-code-card h2{
    font-size: 44px;
    font-weight: 500;
    color: #fff;
}

.falconai-code-card h1{
    font-size: 72px;
    font-weight: 700;
    color: #fff;
}

.falconai-code-card button{
    width: 40%;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 0px;
    border-right: 0px;
    border-radius: 74px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.falconai-code-remove{
    width: 8%;
    height: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
}

.falconai-code-remove button{
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 0px;
    border-right: 0px;
    border-radius: 100%;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
}

.burger div {
    transition: all 0.3s ease-in-out;
}

.burger.active div:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
}

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

.burger.active div:nth-child(3) {
    transform: translateY(-18px) rotate(-45deg);
}

@media screen and (max-width: 1024px) {
    .header { width: 100%; padding: 0 30px; }
    .logo img { width: 280px; height: auto; }
    .nav { width: 65%; }
    .nav ul { font-size: 20px; }

    .hero-text h2 { font-size: 50px; width: 80%; }
    .hero-text p { width: 60%; }

    .why { height: auto; gap: 30px; }
    .why-left { width: 350px; height: 480px; flex-shrink: 0; }
    .why-right { width: 55%; height: auto; }
    .why-right h2 { font-size: 38px; }

    .features-card { width: 45%; border-radius: 60px; }
    .packages-card { width: 45%; border-radius: 50px; }
    
    .footer { width: 95%; height: auto; padding: 40px; }
}

@media screen and (max-width: 768px) {
    .burger { 
        display: flex !important; 
        position: relative;
        z-index: 1100;
        width: 40px;
    }

    .nav {
        display: none; 
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #231343;
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav.open { display: flex; }
    .nav ul { 
        flex-direction: column; 
        gap: 40px; 
        width: 100%; 
        text-align: center; 
    }
    .nav ul li a { font-size: 30px; }

    .why, .features, .packages, .footer, .experience {
        width: 93% !important;
        height: auto !important;
        padding: 50px 20px !important;
        margin-top: 1.5rem !important;
        border-radius: 30px !important;
    }

    .hero{
        width: 93% !important;
        border-radius: 30px !important;
        height: 400px;
        padding-left: 0.4rem;
        background-size: 130% 100%;
    }

    .hero-text { height: auto; padding-left: 0; text-align: center; align-items: center; }
    .hero-text h2 { width: 100%; font-size: 36px; line-height: 1.2; }
    .hero-text p { width: 98%; font-size: 16px; margin-top: 28px; margin-bottom: 28px; }
    .hero-text button { width: 100%; max-width: 300px; height: 55px; }

    .video{ width: 90%; height: 400px; margin: auto; margin-top: 2rem; }
    .video h1{ font-size: 40px; }

    .why { flex-direction: column; gap: 40px; text-align: center; }
    .why-left { width: 100%; height: 300px; border-radius: 20px; }
    .why-right { width: 100%; height: auto; }
    .why-right h2 { width: 100%; font-size: 38px; }
    .why-right p { width: 100%; margin-top: 28px; font-size: 14px; }
    .why-right ul { height: auto; gap: 15px; align-items: center; margin-top: 28px; }
    .why-right ul li {font-size: 18px;}

    .features-img { height: 220px; border-radius: 20px; margin-bottom: 48px; }
    .features-cards { height: auto; flex-direction: column; gap: 20px; }
    .features-card { width: 100%; height: 200px; padding: 40px 20px; border-radius: 40px; }
    .features-card h2 { font-size: 34px; }
    .features-card p { width: 90%; font-size: 16px; }

    .packages h2 { font-size: 48px; margin-bottom: 40px; text-align: center; }
    .packages-cards { height: auto; flex-direction: column; gap: 25px; }
    .free { width: 100%; height: 440px; border-radius: 40px; justify-content: space-around; }
    .free h2 { font-size: 44px; margin: 40px; }
    .free h3 { font-size: 26px; margin-bottom: 18px; }
    .free ul { width: 100%;  margin-top: 10px; margin-bottom: 10px; }
    .free ul li { font-size: 18px; }
    .free button { width: 90%; margin-bottom: 20px; }
    .packages-card { width: 100%; height: 440px; border-radius: 40px; justify-content: space-around; }
    .packages-card h2 { font-size: 44px; margin: 40px; }
    .packages-card h3 { font-size: 26px; margin-bottom: 18px; }
    .packages-card ul { width: 100%;  margin-top: 10px; margin-bottom: 10px; }
    .packages-card ul li { font-size: 18px; }
    .packages-card button { width: 90%; margin-bottom: 20px; }

    .experience { width: 100%; height: 240px; border-radius: 0px; background-color: red; margin: auto; }
    .experience-text { width: 100%; height: auto; gap: 25px; }
    .experience-text h2 { width: 100%; font-size: 28px; text-align: center; }
    .experience-text p { width: 100%; font-size: 17px; }

    .footer { width: 93%; margin-bottom: 2rem; border-radius: 40px !important; }
    .footer-top { flex-direction: column; height: auto; gap: 50px; text-align: center; }
    .footer-top-1, .footer-top-2 { width: 100%; height: auto; }
    .footer-logo { margin: 0 auto 20px; width: 248px; }
    .footer-description { width: 100%; margin-top: 18px; margin-bottom: 38px; }
    .footer-social-media { width: 80%; justify-content: space-around; margin: auto; }
    .social-media { width: 70px; height: 70px; }
    .footer-top-2 h2 { font-size: 40px; }
    .footer-top-2 ul { height: auto; gap: 20px; margin-top: 18px; }
    .footer-top-2 ul li { font-size: 20px; }
    .footer-bottom { margin-top: 30px; }
    .footer-bottom p { width: 100%; font-size: 22px; }

    .payment-card, .falconai-code-card { 
        width: 95% !important; 
        border-radius: 40px !important;
        padding: 40px 20px !important;
    }
}
