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

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#09090d;
color:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

section{
padding:90px 8%;
}

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

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.85);
backdrop-filter:blur(15px);
z-index:999;
border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
font-size:28px;
font-weight:800;
letter-spacing:1px;
}

.logo span{
color:#b347ff;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:#fff;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#b347ff;
}

.btn{
background:linear-gradient(45deg,#7d2cff,#c14cff);
padding:14px 30px;
border-radius:40px;
font-weight:700;
color:#fff;
transition:.4s;
display:inline-block;
box-shadow:0 0 25px rgba(167,71,255,.4);
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 0 40px #b347ff;
}

.btn2{
border:2px solid #b347ff;
padding:14px 28px;
border-radius:40px;
color:#fff;
margin-left:15px;
transition:.4s;
}

.btn2:hover{
background:#b347ff;
}

/* ===========================
   HERO
=========================== */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
min-height:100vh;
gap:60px;
}

.left{
flex:1;
}

.right{
flex:1;
text-align:center;
}

.right img{
width:85%;
animation:float 4s infinite ease-in-out;
filter:drop-shadow(0 0 25px #7d2cff);
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}
}

.hero h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
}

.hero h1 span{
color:#b347ff;
}

.hero p{
font-size:18px;
color:#d4d4d4;
line-height:1.8;
margin-bottom:35px;
}

.hero-buttons{
margin-bottom:40px;
}

.stats{
display:flex;
gap:40px;
margin-top:20px;
}

.stats div{
background:#15151c;
padding:25px;
border-radius:15px;
text-align:center;
width:150px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.stats div:hover{
transform:translateY(-8px);
}

.stats h2{
font-size:34px;
color:#b347ff;
margin-bottom:8px;
}

/* ===========================
   FEATURES
=========================== */

.features h2,
.course h2,
.pricing h2,
.testimonials h2,
.faq h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#13131b;
padding:40px;
border-radius:20px;
text-align:center;
transition:.4s;
border:1px solid rgba(255,255,255,.08);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 30px rgba(179,71,255,.4);
}

.card i{
font-size:50px;
margin-bottom:20px;
color:#b347ff;
}

.card h3{
margin-bottom:15px;
}

.card p{
color:#cfcfcf;
line-height:1.7;
}

/* ===========================
   CURRICULUM
=========================== */

.list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.list div{
background:#171720;
padding:22px;
border-radius:12px;
font-size:18px;
border-left:5px solid #b347ff;
transition:.3s;
}

.list div:hover{
transform:translateX(8px);
}

/* ===========================
   PRICE
=========================== */

.price-box{
max-width:600px;
margin:auto;
background:#15151d;
padding:60px;
border-radius:25px;
text-align:center;
border:2px solid #b347ff;
box-shadow:0 0 50px rgba(179,71,255,.25);
}

.price-box del{
font-size:28px;
color:#999;
}

.price-box h1{
font-size:80px;
margin:15px 0;
color:#ffd633;
}

.price-box p{
font-size:20px;
margin-bottom:30px;
}

.buy-btn{
display:inline-block;
padding:18px 50px;
background:linear-gradient(45deg,#7d2cff,#c14cff);
border-radius:50px;
font-size:20px;
font-weight:700;
color:#fff;
margin-top:25px;
transition:.4s;
}

.buy-btn:hover{
transform:scale(1.05);
}

#countdown{
font-size:28px;
font-weight:700;
margin:25px 0;
color:#ffd633;
}

/* ===========================
   TESTIMONIAL
=========================== */

.review{
background:#14141c;
padding:35px;
border-radius:20px;
margin:25px auto;
max-width:800px;
text-align:center;
border:1px solid rgba(255,255,255,.08);
}

.review p{
margin:20px 0;
line-height:1.8;
color:#ddd;
}

/* ===========================
   FAQ
=========================== */

.faq-box{
background:#15151d;
padding:25px;
border-radius:15px;
margin-bottom:20px;
border-left:5px solid #b347ff;
}

.faq-box h3{
margin-bottom:12px;
}

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

footer{
background:#050505;
padding:60px;
text-align:center;
}

footer h2{
margin-bottom:15px;
}

footer p{
margin-bottom:30px;
color:#aaa;
}

/* ===========================
   WHATSAPP
=========================== */

.whatsapp{
position:fixed;
bottom:30px;
right:30px;
width:65px;
height:65px;
background:#25D366;
display:flex;
justify-content:center;
align-items:center;
font-size:35px;
color:#fff;
border-radius:50%;
box-shadow:0 0 20px rgba(37,211,102,.5);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.15);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

header{
padding:15px 5%;
}

nav{
display:none;
}

.hero{
flex-direction:column;
text-align:center;
padding-top:120px;
}

.hero h1{
font-size:48px;
}

.stats{
justify-content:center;
flex-wrap:wrap;
}

.right img{
width:100%;
}

section{
padding:70px 5%;
}

.features h2,
.course h2,
.pricing h2,
.testimonials h2,
.faq h2{
font-size:34px;
}

.price-box{
padding:40px 25px;
}

.price-box h1{
font-size:60px;
}
}

@media(max-width:576px){

.hero h1{
font-size:38px;
}

.hero p{
font-size:16px;
}

.btn,
.btn2{
display:block;
margin:12px auto;
}

.stats div{
width:100%;
}

.price-box h1{
font-size:50px;
}

.review{
padding:25px;
}
}