*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#070b14;
    --card:rgba(255,255,255,.04);
    --border:rgba(255,255,255,.08);
    --text:#ffffff;
    --muted:#9ca3af;
    --purple:#7c5cff;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:Inter,sans-serif;
    overflow-x:hidden;
}

/* Glow Background */

body::before{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    background:#7c5cff;
    filter:blur(180px);
    opacity:.15;
    top:-250px;
    left:-200px;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#22d3a5;
    filter:blur(180px);
    opacity:.08;
    bottom:-250px;
    right:-150px;
    z-index:-1;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 8%;
    position:sticky;
    top:0;
    backdrop-filter:blur(20px);
    z-index:100;
}

.logo{
    font-size:1.2rem;
    font-weight:700;
}

.nav-btn{
    background:var(--purple);
    padding:16px 28px;
    border-radius:18px;
    text-decoration:none;
    color:white;
    font-weight:600;
}

/* HERO */

.hero{
    max-width:950px;
    margin:auto;
    text-align:center;
    padding:140px 20px;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,.05);
    border:1px solid var(--border);
    border-radius:999px;
    margin-bottom:30px;
}

.hero h1{
    font-size:clamp(4rem,8vw,6rem);
    line-height:1;
    margin-bottom:20px;
}

.hero h2{
    font-size:clamp(1.5rem,4vw,2.8rem);
    color:var(--muted);
    margin-bottom:30px;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:var(--muted);
    font-size:1.1rem;
    line-height:1.9;
}

.cta{
    display:inline-block;
    margin-top:50px;
    background:var(--purple);
    color:white;
    text-decoration:none;
    padding:20px 40px;
    border-radius:20px;
    font-weight:700;
    box-shadow:0 0 60px rgba(124,92,255,.4);
}

/* SECTION */

section{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    font-size:3rem;
    font-weight:700;
    margin-bottom:60px;
}

.section-title small{
    display:block;
    font-size:1rem;
    font-weight:400;
    color:var(--muted);
    margin-top:12px;
}

/* CARDS */

.card,
.website-card,
.feature-card,
.bonus-card,
.pricing-card,
.faq-item{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    backdrop-filter:blur(20px);
}

/* BEFORE AFTER */

.before-after{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    padding:40px;
}

.card h3{
    margin-bottom:25px;
}

.card li{
    color:var(--muted);
    margin-bottom:15px;
}

/* ROADMAP */

.steps{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.step{
    padding:25px 35px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
}

/* WEBSITE GRID */

.website-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.website-card{
    display:block;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
}

.website-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.website-card h3{
    padding:25px 25px 10px;
}

.website-card p{
    padding:0 25px 30px;
    color:var(--muted);
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.feature-card{
    padding:35px;
}

.feature-card p{
    color:var(--muted);
    margin-top:15px;
}

/* BIG STATEMENT */

.statement{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.statement h1{
    font-size:clamp(4rem,7vw,6rem);
    line-height:1.1;
}

.purple{
    color:#a78bfa;
}

.statement p{
    margin-top:40px;
    color:var(--muted);
    font-size:1.2rem;
}

/* BONUS */

.bonus-card{
    padding:50px;
}

/* FAQ */

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    padding:30px;
    margin-bottom:20px;
}

.faq-question{
    font-size:1.2rem;
    font-weight:600;
}

/* PRICING */

.pricing-card{
    max-width:600px;
    margin:auto;
    padding:70px;
    text-align:center;
    box-shadow:0 0 100px rgba(124,92,255,.2);
}

.old-price{
    text-decoration:line-through;
    color:var(--muted);
}

.price{
    font-size:6rem;
    font-weight:800;
    margin:20px 0;
}

.pricing-card li{
    margin-bottom:15px;
    list-style:none;
    color:var(--muted);
}

.buy-btn{
    display:block;
    margin-top:40px;
    background:var(--purple);
    color:white;
    text-decoration:none;
    padding:22px;
    border-radius:20px;
    font-weight:700;
}

/* FOOTER */

footer{
    padding:120px 8%;
    text-align:center;
    color:var(--muted);
}

/* MOBILE */

@media(max-width:768px){

.hero{
    padding-top:100px;
}

.before-after{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:3.5rem;
}

.section-title{
    font-size:2rem;
}

.statement h1{
    font-size:3rem;
}

.price{
    font-size:4rem;
}

.pricing-card{
    padding:40px;
}

}
.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}
.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s;

    color:#9ca3af;

    margin-top:0;

}


.faq-item.active .faq-answer{

    max-height:200px;

    margin-top:20px;

}