/* =========================
   GLOBAL RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f7ff;
    color:#111827;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1250px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav-inner{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:32px;
    font-weight:800;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    text-decoration:none;
    color:#374151;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#8b5cf6;
}

/* =========================
   BUTTONS
========================= */

.start-btn,
.primary-btn{

    height:68px;

    padding:0 38px;

    border:none;

    border-radius:22px;

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    color:#fff;

    font-size:25px;

    font-weight:800;

    cursor:pointer;

    box-shadow:0 14px 40px rgba(139,92,246,0.35);

    transition:0.3s;

}

.start-btn:hover,
.primary-btn:hover{

    transform:translateY(-2px);

}

.secondary-btn{

    height:68px;

    padding:0 38px;

    border:none;

    border-radius:22px;

    background:#fff;

    color:#111827;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;

}

.secondary-btn:hover{

    transform:translateY(-2px);

}

/* =========================
   SECTION COMMON
========================= */

.section{
    padding:100px 0;
}

.section-title{
    font-size:60px;
    text-align:center;
    margin-bottom:22px;
}

.section-subtitle{
    max-width:760px;
    margin:auto auto 70px auto;
    text-align:center;
    font-size:22px;
    line-height:1.8;
    color:#6b7280;
}

/* =========================
   GRADIENT TEXT
========================= */

.gradient-text{

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #f97316,
        #8b5cf6
    );

    background-size:300% auto;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:gradientMove 6s linear infinite;

}

@keyframes gradientMove{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:300% center;
    }

}

/* =========================
   FOOTER
========================= */

.footer{
    background:#fff;
    padding:50px 0;
    border-top:1px solid rgba(0,0,0,0.05);
}

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

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

.footer-links a{
    text-decoration:none;
    color:#6b7280;
    font-weight:600;
}

/* =========================
   GLOBAL CARDS
========================= */

.white-card{
    background:#fff;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .section-title{
        font-size:42px;
    }

    .nav-links{
        display:none;
    }

}

@media(max-width:768px){

    .section{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
    }

    .section-subtitle{
        font-size:18px;
    }

    .primary-btn,
    .secondary-btn,
    .start-btn{
        width:100%;
    }

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo img{

    height:42px;

    width:auto;

}

.logo span{

    font-size:32px;

    font-weight:800;

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:#111827;

    font-size:30px;

    cursor:pointer;

}

@media(max-width:768px){

    .menu-toggle{

        display:block;

    }

    .nav-links{

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:#fff;

        display:none;

        flex-direction:column;

        padding:25px;

        gap:18px;

        box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    }

    .nav-links.show-menu{

        display:flex;

    }

    .start-btn{

        width:100%;

    }

}

/* CTA Animation */

.primary-btn{

    position:relative;

    overflow:hidden;

    animation:pulseCTA 2s infinite;

}

.primary-btn::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:60px;

    height:100%;

    background:

    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    animation:shineCTA 3s infinite;

}

@keyframes pulseCTA{

    0%{

        transform:scale(1);

        box-shadow:
        0 0 0 0 rgba(139,92,246,.5);

    }

    70%{

        transform:scale(1.03);

        box-shadow:
        0 0 0 18px rgba(139,92,246,0);

    }

    100%{

        transform:scale(1);

        box-shadow:
        0 0 0 0 rgba(139,92,246,0);

    }

}

@keyframes shineCTA{

    0%{

        left:-120%;

    }

    100%{

        left:130%;

    }

}

.primary-btn{

    font-weight:800;

    letter-spacing:.3px;

}