```css
/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0d;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

/* ===========================
   BACKGROUND
=========================== */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at top,#7a001d55 0%,transparent 45%),
        radial-gradient(circle at bottom,#30000b 0%,transparent 45%),
        #0b0b0d;
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.02) 1px, transparent 1px);
    background-size:50px 50px;
    z-index:-1;
}

/* ===========================
   NAVBAR
=========================== */

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 8%;
    position:sticky;
    top:0;
    backdrop-filter:blur(14px);
    background:rgba(0,0,0,.25);
    z-index:100;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#ff2f5b;
    letter-spacing:2px;
}

.navButton{
    text-decoration:none;
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    background:#ff2f5b;
    transition:.3s;
}

.navButton:hover{
    transform:translateY(-2px);
    box-shadow:0 0 20px rgba(255,47,91,.45);
}

/* ===========================
   HERO
=========================== */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    width:84%;
    margin:auto;
    padding:60px 0;
}

.heroLeft{
    flex:1;
}

.tag{
    display:inline-block;
    background:#ff2f5b;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:18px;
    font-weight:600;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:22px;
}

.hero p{
    color:#c8c8c8;
    max-width:600px;
    font-size:18px;
}

/* ===========================
   BUTTONS
=========================== */

.buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btnPrimary,
.btnSecondary,
.buyNow,
.planBtn{
    text-decoration:none;
    transition:.3s;
}

.btnPrimary{
    background:#ff2f5b;
    color:#fff;
    padding:16px 34px;
    border-radius:40px;
    font-weight:700;
}

.btnPrimary:hover{
    transform:translateY(-3px);
    box-shadow:0 0 35px rgba(255,47,91,.5);
}

.btnSecondary{
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    padding:16px 34px;
    border-radius:40px;
}

.btnSecondary:hover{
    background:rgba(255,255,255,.08);
}

/* ===========================
   STATS
=========================== */

.stats{
    display:flex;
    gap:45px;
    margin-top:50px;
}

.stats h2{
    color:#ff2f5b;
    font-size:34px;
}

.stats span{
    color:#bcbcbc;
    font-size:14px;
}

/* ===========================
   GLASS CARD
=========================== */

.heroRight{
    width:360px;
}

.glass{
    padding:40px;
    border-radius:28px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    text-align:center;
}

.count{
    color:#d9d9d9;
}

#timer{
    font-size:52px;
    font-weight:700;
    margin:25px 0;
    color:#ff2f5b;
}

.buyNow{
    display:block;
    background:#ff2f5b;
    color:white;
    padding:16px;
    border-radius:50px;
    font-weight:700;
}

.buyNow:hover{
    transform:scale(1.04);
}

/* ===========================
   SECTIONS
=========================== */

section{
    padding:110px 8%;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

/* ===========================
   BENEFITS
=========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    padding:35px;
    border-radius:22px;
    background:#151518;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.card:hover{
    transform:translateY(-8px);
    border-color:#ff2f5b;
    box-shadow:0 20px 50px rgba(255,47,91,.18);
}

.card h3{
    margin-bottom:15px;
    font-size:22px;
}

.card p{
    color:#bcbcbc;
}

/* ===========================
   PRICING
=========================== */

.plans{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.plan{
    width:340px;
    background:#151518;
    border-radius:24px;
    padding:45px;
    position:relative;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.plan:hover{
    transform:translateY(-10px);
}

.premium{
    border:2px solid #ff2f5b;
}

.popular{
    position:absolute;
    top:-16px;
    left:50%;
    transform:translateX(-50%);
    background:#ff2f5b;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.price{
    font-size:48px;
    color:#ff2f5b;
    margin:25px 0;
    font-weight:800;
}

.plan ul{
    list-style:none;
}

.plan li{
    margin-bottom:14px;
    color:#d5d5d5;
}

.planBtn{
    margin-top:35px;
    display:block;
    text-align:center;
    background:#ff2f5b;
    padding:16px;
    border-radius:40px;
    color:#fff;
    font-weight:700;
}

/* ===========================
   FAQ
=========================== */

.accordion{
    max-width:850px;
    margin:auto;
}

.item{
    margin-bottom:18px;
    background:#151518;
    border-radius:16px;
    overflow:hidden;
}

.item button{
    width:100%;
    border:none;
    background:none;
    color:#fff;
    padding:24px;
    font-size:18px;
    text-align:left;
    cursor:pointer;
}

.content{
    display:none;
    padding:0 24px 24px;
    color:#bbbbbb;
}

.item.active .content{
    display:block;
}

/* ===========================
   FOOTER
=========================== */

footer{
    padding:45px;
    text-align:center;
    color:#888;
    border-top:1px solid rgba(255,255,255,.06);
}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:960px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero p{
    margin:auto;
}

.buttons{
    justify-content:center;
}

.stats{
    justify-content:center;
    flex-wrap:wrap;
}

.heroRight{
    width:100%;
    max-width:420px;
}

.hero h1{
    font-size:48px;
}

section h2{
    font-size:34px;
}

}

@media(max-width:600px){

nav{
    padding:20px;
}

.hero{
    width:92%;
}

.hero h1{
    font-size:36px;
}

.price{
    font-size:38px;
}

.stats{
    gap:24px;
}

}
```
