*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#050816;
color:white;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1280px;
margin:auto;
}

.header{
position:absolute;
width:100%;
z-index:999;
padding:25px 0;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:22px;
font-weight:800;
}

.logo-icon{
width:45px;
height:45px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(
135deg,
#7c3aed,
#ec4899
);
font-weight:900;
}

.nav-btn{
padding:15px 28px;
border-radius:14px;
text-decoration:none;
color:white;
font-weight:700;
background:linear-gradient(
135deg,
#7c3aed,
#ec4899
);
}

.hero{
position:relative;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:700px;
height:700px;
background:#7c3aed;
filter:blur(220px);
opacity:.25;
top:-200px;
right:-100px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
}

.launch-badge{
display:inline-block;
padding:10px 20px;
border-radius:50px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.1);
margin-bottom:30px;
}

.hero-left h1{
font-size:47px;
font-weight:900;
line-height:1.05;
margin-bottom:25px;
}

.hero-left h1 span{
background:linear-gradient(
135deg,
#60a5fa,
#ec4899
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-left p{
font-size:20px;
line-height:1.8;
color:#b4b4b4;
margin-bottom:30px;
}

.hero-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-bottom:40px;
}

.feature-item{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:18px;
border-radius:16px;
}

.feature-item i{
color:#22c55e;
margin-right:10px;
}

.price-row{
display:flex;
align-items:center;
gap:20px;
margin-bottom:20px;
}

.old-price{
font-size:32px;
color:#777;
text-decoration:line-through;
}

.new-price{
font-size:72px;
font-weight:900;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
}

.primary-btn{
padding:18px 36px;
border-radius:16px;
text-decoration:none;
font-weight:700;
color:white;
background:linear-gradient(
135deg,
#7c3aed,
#ec4899
);
}

.secondary-btn{
padding:18px 36px;
border-radius:16px;
text-decoration:none;
font-weight:700;
color:white;
border:1px solid rgba(255,255,255,.15);
}

.hero-trust{
display:flex;
gap:30px;
color:#a5a5a5;
}

.bundle-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:30px;
border-radius:30px;
backdrop-filter:blur(25px);
position:relative;
}

.bundle-card img{
width:100%;
display:block;
}

.bundle-badge{
position:absolute;
top:20px;
right:20px;
padding:10px 18px;
border-radius:50px;
background:#22c55e;
font-weight:700;
}

/* ===================================
TRUST SECTION
=================================== */

.section-label{
text-align:center;
letter-spacing:2px;
font-size:13px;
color:#7c3aed;
margin-bottom:40px;
font-weight:700;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.trust-box{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:35px;
text-align:center;
border-radius:24px;
font-size:30px;
font-weight:800;
backdrop-filter:blur(15px);
transition:.4s;
}

.trust-box:hover{
transform:translateY(-10px);
}

.trust-box span{
display:block;
font-size:15px;
color:#b4b4b4;
margin-top:10px;
font-weight:500;
}


/* ===================================
COMMON SECTION HEADER
=================================== */

.section-header{
max-width:800px;
margin:auto;
text-align:center;
margin-bottom:60px;
}

.mini-badge{
display:inline-block;
padding:10px 20px;
border-radius:50px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
margin-bottom:20px;
font-size:14px;
font-weight:700;
}

.mini-badge.purple{
background:rgba(124,58,237,.2);
}

.section-header h2{
font-size:58px;
font-weight:900;
line-height:1.15;
margin-bottom:20px;
}

.section-header p{
font-size:18px;
color:#b4b4b4;
line-height:1.8;
}


/* ===================================
PROBLEM SECTION
=================================== */
.problem-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.problem-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:24px;
transition:.4s;
}

.problem-card:hover{
transform:translateY(-10px);
}

.problem-icon{
font-size:45px;
margin-bottom:20px;
}

.problem-card h3{
margin-bottom:15px;
font-size:22px;
}

.problem-card p{
color:#b4b4b4;
line-height:1.8;
}


/* ===================================
SOLUTION SECTION
=================================== */

.solution-section{
background:linear-gradient(
180deg,
transparent,
rgba(124,58,237,.08)
);
}

.solution-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.solution-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:45px;
border-radius:30px;
backdrop-filter:blur(20px);
position:relative;
overflow:hidden;
transition:.4s;
}

.solution-card:hover{
transform:translateY(-12px);
}

.solution-number{
font-size:60px;
font-weight:900;
color:#7c3aed;
margin-bottom:20px;
}

.solution-card h3{
font-size:26px;
margin-bottom:15px;
}

.solution-card p{
color:#b4b4b4;
line-height:1.8;
}


/* ===================================
RESPONSIVE
=================================== */

@media(max-width:991px){

.trust-grid,
.problem-grid,
.solution-grid{
grid-template-columns:1fr;
}

.section-header h2{
font-size:38px;
}

}   

/* ===================================
INCLUDED SECTION
=================================== */

.included-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.included-card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:40px;

transition:.4s;

backdrop-filter:blur(20px);

position:relative;

overflow:hidden;
}

.included-card::before{

content:'';

position:absolute;

width:250px;

height:250px;

background:#7c3aed;

filter:blur(120px);

opacity:.15;

top:-100px;

right:-100px;
}

.included-card:hover{

transform:translateY(-12px);

border-color:#7c3aed;
}

.included-icon{

font-size:55px;

margin-bottom:25px;
}

.included-card h3{

font-size:24px;

margin-bottom:15px;
}

.included-card p{

color:#b4b4b4;

line-height:1.8;
}


/* ===================================
CATEGORY SECTION
=================================== */

.category-section{

background:
linear-gradient(
180deg,
rgba(124,58,237,.05),
transparent
);
}

.category-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;
}

.category-item{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

padding:22px;

text-align:center;

border-radius:18px;

font-weight:600;

transition:.3s;
}

.category-item:hover{

transform:translateY(-8px);

background:rgba(124,58,237,.15);

border-color:#7c3aed;
}


/* ===================================
RESPONSIVE
=================================== */

@media(max-width:991px){

.included-grid{
grid-template-columns:1fr;
}

.category-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:576px){

.category-grid{
grid-template-columns:1fr;
}

}
/* ===================================
PREVIEW SECTION
=================================== */
.preview-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.preview-card{
overflow:hidden;
border-radius:24px;
border:1px solid rgba(255,255,255,.08);
transition:.4s;
background:rgba(255,255,255,.04);
}

.preview-card:hover{
transform:translateY(-10px);
}

.preview-card img{
width:100%;
display:block;
}


/* ===================================
WHY SECTION
=================================== */
.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.why-card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

padding:35px;

border-radius:28px;

transition:.4s;
}

.why-card:hover{

transform:translateY(-10px);

border-color:#7c3aed;
}

.why-icon{

font-size:50px;

margin-bottom:20px;
}

.why-card h3{

margin-bottom:15px;

font-size:22px;
}

.why-card p{

line-height:1.8;

color:#b4b4b4;
}


/* ===================================
VALUE STACK
=================================== */

.value-box{

max-width:850px;

margin:auto;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

padding:50px;

border-radius:30px;

backdrop-filter:blur(20px);
}

.value-row{

display:flex;

justify-content:space-between;

padding:20px 0;

border-bottom:1px solid rgba(255,255,255,.08);

font-size:20px;
}

.value-row.total{

font-size:28px;

font-weight:800;

color:#7c3aed;

border:none;
}


/* ===================================
RESPONSIVE
=================================== */

@media(max-width:991px){

.preview-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr;
}

.value-row{
font-size:16px;
}

.value-row.total{
font-size:22px;
}

}
.preview-card{
height:520px;
overflow:hidden;
}

.preview-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* ==========================
BONUS SECTION
========================== */

.bonus-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.bonus-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:25px;
text-align:center;
backdrop-filter:blur(20px);
transition:.4s;
}

.bonus-card:hover{
transform:translateY(-10px);
}

.bonus-icon{
font-size:40px;
margin-bottom:20px;
}

.bonus-card h3{
margin-bottom:15px;
}

.bonus-card span{
display:block;
margin-top:15px;
color:#8b5cf6;
font-weight:700;
}

/* ==========================
TESTIMONIALS
========================== */

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.testimonial-card{
background:rgba(255,255,255,.05);
padding:35px;
border-radius:25px;
border:1px solid rgba(255,255,255,.08);
}

.testimonial-card h4{
margin-top:20px;
color:#ffd700;
}

/* ==========================
PRICING
========================== */

.pricing-box{
max-width:700px;
margin:auto;
text-align:center;
background:linear-gradient(
135deg,
#6d28d9,
#8b5cf6
);
padding:60px;
border-radius:35px;
}

.pricing-badge{
display:inline-block;
padding:10px 25px;
background:#fff;
color:#111;
font-weight:700;
border-radius:50px;
margin-bottom:25px;
}

.old-price{
font-size:30px;
text-decoration:line-through;
opacity:.6;
margin-right:15px;
}

.new-price{
font-size:50px;
font-weight:800;
}

.pricing-box ul{
list-style:none;
margin:40px 0;
}

.pricing-box ul li{
padding:10px 0;
}

.buy-now-btn{
display:inline-block;
padding:18px 40px;
background:#fff;
color:#111;
font-weight:700;
border-radius:60px;
text-decoration:none;
}

/* ==========================
URGENCY
========================== */
.urgency-box{
background:#ff3b30;
padding:40px;
border-radius:25px;
text-align:center;
}

/* ==========================
FAQ
========================== */

.faq-container{
max-width:900px;
margin:auto;
}

.faq-item{
margin-bottom:20px;
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
overflow:hidden;
}

.faq-question{
width:100%;
padding:25px;
background:rgba(255,255,255,.04);
border:none;
color:#fff;
font-size:18px;
text-align:left;
cursor:pointer;
}

.faq-answer{
display:none;
padding:25px;
background:rgba(255,255,255,.02);
}

/* ==========================
FOOTER
========================== */

/* =========================
   PREMIUM FOOTER 2026
========================= */

.premium-footer {

    position: relative;
    padding: 120px 20px 40px;

    background:
    radial-gradient(circle at top left,
    rgba(124,58,237,.18),
    transparent 35%),

    radial-gradient(circle at top right,
    rgba(59,130,246,.18),
    transparent 35%),

    #020617;

    overflow: hidden;
}

.footer-container{
    max-width:1200px;
    margin:auto;
}


/* CTA CARD */

.footer-cta-card{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    padding:40px;

    margin-bottom:80px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(25px);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.cta-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    color:#cbd5e1;

    font-size:14px;

    margin-bottom:15px;
}

.footer-cta-card h2{

    color:#fff;

    font-size:36px;

    margin-bottom:12px;
}

.footer-cta-card p{

    color:#94a3b8;

    max-width:650px;

    line-height:1.7;
}

.footer-cta-btn{

    padding:16px 32px;

    text-decoration:none;

    color:white;

    font-weight:700;

    border-radius:14px;

    background:linear-gradient(
    135deg,
    #7c3aed,
    #2563eb
    );

    transition:.4s;
}

.footer-cta-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 30px rgba(124,58,237,.4);
}



/* GRID */

.footer-grid{

    display:grid;

    grid-template-columns:
    1.5fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;
}

.footer-column h4{

    color:#fff;

    margin-bottom:20px;

    font-size:18px;
}

.footer-logo{

    color:white;

    font-size:28px;

    margin-bottom:20px;
}

.footer-desc{

    color:#94a3b8;

    line-height:1.8;
}

.footer-column ul{

    list-style:none;
}

.footer-column li{

    margin-bottom:14px;

    color:#94a3b8;
}

.footer-column a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;
}

.footer-column a:hover{

    color:white;

    padding-left:6px;
}



/* BOTTOM BAR */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    padding-top:30px;

    border-top:
    1px solid rgba(255,255,255,.08);
}

.social-links{

    display:flex;

    gap:12px;
}

.social-links a{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:12px;

    text-decoration:none;

    background:rgba(255,255,255,.05);

    transition:.3s;
}

.social-links a:hover{

    transform:translateY(-4px);

    background:
    rgba(124,58,237,.25);
}

.copyright{

    color:#94a3b8;
}

.footer-legal{

    display:flex;
    gap:18px;
}

.footer-legal a{

    color:#94a3b8;
    text-decoration:none;
}

.footer-legal a:hover{

    color:white;
}



/* RESPONSIVE */

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;
}

.footer-cta-card{

flex-direction:column;
text-align:center;
}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;
gap:40px;
}

.footer-bottom{

flex-direction:column;
text-align:center;
}

.footer-cta-card h2{

font-size:28px;
}

}
/* ==========================
SCROLL ANIMATION
========================== */

.hidden{
opacity:0;
transform:translateY(70px);
transition:.8s;
}

.show{
opacity:1;
transform:translateY(0);
}

/* ==========================
COUNTDOWN BAR
========================== */

.countdown-bar{

position:fixed;

top:0;

left:0;

width:100%;

background:#8b5cf6;

padding:12px;

text-align:center;

font-weight:700;

z-index:9998;

}

/* ==========================
WHATSAPP
========================== */

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

text-decoration:none;

z-index:9999;

box-shadow:0 15px 40px rgba(0,0,0,.3);

}

/* ==========================
LOADER
========================== */

.loader{

position:fixed;

width:100%;

height:100vh;

background:#050816;

top:0;

left:0;

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

}

.loader-circle{

width:80px;

height:80px;

border:5px solid #8b5cf6;

border-top-color:transparent;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

.loader-hide{

opacity:0;

visibility:hidden;

transition:.6s;

}

/* ==========================
POPUP
========================== */

.exit-popup{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:rgba(0,0,0,.8);

display:none;

align-items:center;

justify-content:center;

z-index:99999;

}

.exit-popup.active{

display:flex;

}

.popup-content{

background:#111827;

padding:40px;

border-radius:25px;

max-width:450px;

text-align:center;

position:relative;

}

.popup-close{

position:absolute;

top:10px;

right:15px;

border:none;

background:none;

font-size:30px;

color:#fff;

cursor:pointer;

}

.popup-btn{

display:inline-block;

margin-top:20px;

padding:14px 30px;

background:#8b5cf6;

border-radius:50px;

color:#fff;

text-decoration:none;

}

/* ==========================
MOBILE BUY BAR
========================== */

.mobile-buy-bar{

display:none;

}

@media(max-width:768px){

.mobile-buy-bar{

position:fixed;

bottom:0;

left:0;

width:100%;

background:#8b5cf6;

padding:15px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:9999;

}

.mobile-buy-bar a{

background:#fff;

padding:10px 20px;

border-radius:30px;

text-decoration:none;

color:#111;

font-weight:700;

}

.bonus-grid,
.testimonial-grid{

grid-template-columns:1fr;

}

.pricing-box{

padding:30px;

}

.new-price{

font-size:50px;

}

}
/* ==========================
GLASSMORPHISM
========================== */

.problem-card,
.solution-card,
.included-card,
.why-card,
.bonus-card,
.testimonial-card{

backdrop-filter: blur(25px);

-webkit-backdrop-filter: blur(25px);

background: rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

}


/* ==========================
ANIMATED BACKGROUND
========================== */

body{

background:#060816;

overflow-x:hidden;

}

body::before{

content:"";

position:fixed;

width:600px;

height:600px;

background:#7c3aed;

filter:blur(180px);

opacity:.18;

top:-150px;

left:-150px;

z-index:-1;

animation:float1 12s infinite alternate;

}

body::after{

content:"";

position:fixed;

width:500px;

height:500px;

background:#2563eb;

filter:blur(180px);

opacity:.18;

bottom:-100px;

right:-100px;

z-index:-1;

animation:float2 14s infinite alternate;

}

@keyframes float1{

100%{

transform:translate(200px,100px);

}

}

@keyframes float2{

100%{

transform:translate(-150px,-80px);

}

}


/* ==========================
PREMIUM CURSOR
========================== */

body{

cursor:crosshair;

}


/* ==========================
TRUST BADGES
========================== */

.badges-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.badge-card{

padding:30px;

text-align:center;

font-weight:700;

border-radius:20px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

}


/* ==========================
SALES POPUP
========================== */

.sales-popup{

position:fixed;

left:20px;

bottom:20px;

background:#111827;

padding:15px 20px;

border-radius:15px;

z-index:9999;

box-shadow:0 20px 50px rgba(0,0,0,.4);

animation:slideIn .8s ease;

}

@keyframes slideIn{

from{

transform:translateY(100px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}


/* ==========================
HOVER EFFECTS
========================== */

.preview-card:hover,
.included-card:hover,
.why-card:hover,
.bonus-card:hover{

transform:translateY(-10px) scale(1.03);

}


/* ==========================
PREMIUM BUTTONS
========================== */

.primary-btn,
.buy-now-btn{

position:relative;

overflow:hidden;

}

.primary-btn::before,
.buy-now-btn::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.3),
transparent
);

transition:.7s;

}

.primary-btn:hover::before{

left:100%;

}

.buy-now-btn:hover::before{

left:100%;

}


/* ==========================
RESPONSIVE
========================== */

@media(max-width:768px){

.badges-grid{

grid-template-columns:1fr 1fr;

}
.hero-grid {
    /* display: grid; */
    grid-template-columns: 2fr 2fr;
    align-items: center;
    gap: 80px;
    display: flex;
    flex-direction: column;
}

}
body{
    padding-top:60px;
}
section{
    padding-bottom: 70px;
    padding-top: 70px;
}