*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#222;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ================= NAVBAR ================= */

header{
position:sticky;
top:15px;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.95);
backdrop-filter:blur(15px);
padding:18px 30px;
margin-top:15px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:55px;
width:auto;
}

.logo h2{
font-size:28px;
font-weight:700;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav a:hover,
nav a.active{
color:#ff6b5b;
}

.download-btn{
background:linear-gradient(135deg,#ff6b5b,#ff8f70);
color:#fff;
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
display:inline-flex;
align-items:center;
gap:8px;
}

.download-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 30px rgba(255,107,91,.3);
}

/* ================= HERO ================= */

.hero{
padding:40px 0;
background:linear-gradient(135deg,#fff5f5,#fffdf6);
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
}

.tag{
display:inline-block;
padding:10px 18px;
background:#fff;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
font-size:14px;
font-weight:600;
margin-bottom:25px;
}

.hero-content h1{
font-size:68px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.hero-content h1 span{
background:linear-gradient(135deg,#ff6b5b,#ff9f43);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-content p{
font-size:18px;
line-height:1.9;
color:#666;
margin-bottom:25px;
}

.badges{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-bottom:30px;
}

.badge{
background:white;
padding:12px 18px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.06);
font-size:14px;
font-weight:600;
}

.badge i{
color:#ff6b5b;
margin-right:8px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.play-btn{
background:#ff6b5b;
color:white;
padding:16px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

.watch-btn{
background:white;
color:#222;
padding:16px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.hero-image-area{
display:flex;
justify-content:center;
align-items:center;
}

.hero-image{
width:100%;
max-width:520px;
height:auto;
object-fit:contain;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(-15px);
}
100%{
transform:translateY(0px);
}
}

/* ================= STATS ================= */

.stats{
margin-top:-40px;
position:relative;
z-index:10;
padding-bottom:80px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stat-card{
background:#fff;
padding:35px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.stat-card:hover{
transform:translateY(-8px);
}

.stat-card i{
font-size:40px;
color:#ff6b5b;
margin-bottom:15px;
}

.stat-card h2{
font-size:32px;
margin-bottom:10px;
}

.stat-card p{
color:#666;
}

/* ================= FEATURES ================= */

.features{
padding:100px 0;
}

.section-tag{
display:block;
text-align:center;
color:#ff6b5b;
font-weight:700;
margin-bottom:10px;
letter-spacing:2px;
}

.section-title{
text-align:center;
font-size:48px;
font-weight:800;
margin-bottom:60px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:white;
padding:35px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
border:1px solid #f4f4f4;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon-box{
width:75px;
height:75px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
margin-bottom:20px;
}

.video{
background:#ffe5e5;
color:#ff5b5b;
}

.activity{
background:#fff3d8;
color:#f6a700;
}

.story{
background:#ffe7f0;
color:#ff4d94;
}

.knowledge{
background:#e7fff6;
color:#00b894;
}

.shield{
background:#e6f4ff;
color:#0984e3;
}

.progress{
background:#efe7ff;
color:#6c5ce7;
}

.card h3{
margin-bottom:12px;
font-size:22px;
}

.card p{
line-height:1.8;
color:#666;
}

/* ================= HOW IT WORKS ================= */

.how-it-works{
padding:100px 0;
background:#fafafa;
}

.steps{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
margin-top:50px;
}

.step{
text-align:center;
}

.step-number{
width:70px;
height:70px;
background:#ff6b5b;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:700;
margin:auto;
margin-bottom:15px;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
padding:100px 0;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.testimonial-card{
background:white;
padding:30px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card p{
line-height:1.8;
color:#666;
margin-bottom:20px;
}

.testimonial-card h4{
color:#ff6b5b;
}

/* ================= CTA ================= */

.cta{
padding:100px 0;
}

.cta-box{
background:linear-gradient(135deg,#ff6b5b,#ff8f70);
padding:60px;
border-radius:30px;
display:flex;
justify-content:space-between;
align-items:center;
color:white;
}

.cta-box h2{
font-size:42px;
margin-bottom:10px;
}

.cta-box p{
opacity:.9;
}

/* ================= FOOTER ================= */

footer{
background:#0c1b3b;
padding-top:70px;
color:white;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:30px;
padding-bottom:50px;
}

.footer-grid h4{
margin-bottom:20px;
}

.footer-grid a{
display:block;
color:#ddd;
text-decoration:none;
margin-bottom:10px;
}

.footer-grid p{
color:#ddd;
line-height:1.8;
}

.copyright{
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
padding:20px;
color:#bbb;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.badges{
justify-content:center;
}

.hero-buttons{
justify-content:center;
}

.hero-content h1{
font-size:52px;
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

.feature-grid{
grid-template-columns:1fr 1fr;
}

.steps{
grid-template-columns:1fr 1fr;
}

.testimonial-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

.cta-box{
flex-direction:column;
gap:25px;
text-align:center;
}
}

@media(max-width:768px){

nav{
display:none;
}

.hero-content h1{
font-size:42px;
}

.hero-image{
max-width:320px;
}

.feature-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

.steps{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.section-title{
font-size:34px;
}

.cta-box{
padding:40px 25px;
}

.cta-box h2{
font-size:30px;
}
/* ================= FEATURES PAGE PREMIUM ================= */

.hero{
position:relative;
overflow:hidden;
}

.hero::before{
content:"";
position:absolute;
width:300px;
height:300px;
background:#ff6b5b20;
border-radius:50%;
top:-100px;
right:-100px;
filter:blur(60px);
}

.hero::after{
content:"";
position:absolute;
width:250px;
height:250px;
background:#6c5ce720;
border-radius:50%;
bottom:-80px;
left:-80px;
filter:blur(60px);
}

.hero h1{
max-width:900px;
margin:auto;
}

.hero p{
max-width:700px;
margin:20px auto;
}

/* Feature Cards */

.feature-grid{
margin-top:40px;
}

.card{
position:relative;
overflow:hidden;
}

.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(
90deg,
#ff6b5b,
#ff9f43,
#6c5ce7
);
transform:scaleX(0);
transition:.4s;
}

.card:hover::before{
transform:scaleX(1);
}

.card h3{
font-size:24px;
font-weight:700;
margin-bottom:12px;
}

.card p{
font-size:15px;
}

.card:hover .icon-box{
transform:rotate(10deg) scale(1.1);
}

.icon-box{
transition:.4s;
}

/* Why Choose Section */

.testimonial-card{
text-align:center;
transition:.4s;
}

.testimonial-card i{
background:linear-gradient(
135deg,
#ff6b5b,
#ff9f43
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:15px;
}

.testimonial-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.testimonial-card h3{
font-size:24px;
margin-bottom:15px;
}

/* CTA */

.cta-box{
position:relative;
overflow:hidden;
}

.cta-box::before{
content:"";
position:absolute;
width:300px;
height:300px;
border-radius:50%;
background:rgba(255,255,255,.08);
top:-100px;
right:-100px;
}

.cta-box::after{
content:"";
position:absolute;
width:200px;
height:200px;
border-radius:50%;
background:rgba(255,255,255,.05);
bottom:-80px;
left:-80px;
}

.cta-box h2{
position:relative;
z-index:2;
}

.cta-box p{
position:relative;
z-index:2;
}

.cta-box .download-btn{
position:relative;
z-index:2;
background:white;
color:#ff6b5b;
font-weight:700;
}

.cta-box .download-btn:hover{
background:#fff;
transform:translateY(-5px);
}

/* Floating Animation */

@keyframes floatCard{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(-8px);
}
100%{
transform:translateY(0px);
}
}

.feature-grid .card:nth-child(1){
animation:floatCard 4s infinite;
}

.feature-grid .card:nth-child(2){
animation:floatCard 5s infinite;
}

.feature-grid .card:nth-child(3){
animation:floatCard 6s infinite;
}

.feature-grid .card:nth-child(4){
animation:floatCard 4.5s infinite;
}

.feature-grid .card:nth-child(5){
animation:floatCard 5.5s infinite;
}

.feature-grid .card:nth-child(6){
animation:floatCard 6.5s infinite;
}

/* Section Divider */

.features{
position:relative;
}

.features::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:1px;
background:linear-gradient(
90deg,
transparent,
#ddd,
transparent
);
}

/* Mobile */

@media(max-width:768px){

.hero h1{
font-size:38px !important;
}

.card h3{
font-size:20px;
}

.testimonial-card h3{
font-size:20px;
}

.cta-box h2{
font-size:28px !important;
}
}
}
/* ================= FAQ ================= */

.faq-container{
max-width:900px;
margin:auto;
}

.faq-item{
background:white;
margin-bottom:20px;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.faq-question{
width:100%;
border:none;
background:white;
padding:25px;
font-size:18px;
font-weight:600;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
text-align:left;
}

.faq-question i{
color:#ff6b5b;
transition:.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:.4s ease;
}

.faq-answer p{
padding:0 25px 25px;
color:#666;
line-height:1.8;
}

.faq-item.active .faq-answer{
max-height:300px;
}

.faq-item.active .faq-question i{
transform:rotate(45deg);
}

/* ================= CONTACT PAGE ================= */

.contact-grid{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:40px;
margin-top:50px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:25px;
}

.contact-card{
background:white;
padding:30px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.contact-card:hover{
transform:translateY(-8px);
}

.contact-card i{
font-size:40px;
color:#ff6b5b;
margin-bottom:15px;
}

.contact-card h3{
margin-bottom:10px;
}

.contact-card p{
color:#666;
}

.contact-form-box{
background:white;
padding:40px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box h2{
margin-bottom:25px;
}

.contact-form-box form{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:16px;
border:1px solid #ddd;
border-radius:14px;
font-size:15px;
outline:none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
border-color:#ff6b5b;
}

.submit-btn{
background:linear-gradient(
135deg,
#ff6b5b,
#ff8f70
);
border:none;
padding:16px;
border-radius:50px;
color:white;
font-size:16px;
font-weight:600;
cursor:pointer;
}

.submit-btn:hover{
opacity:.9;
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

}

/* ================= POLICY PAGE ================= */

.policy-card{
background:white;
padding:50px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
line-height:1.9;
}

.policy-card h2{
margin-top:35px;
margin-bottom:15px;
color:#ff6b5b;
}

.policy-card p{
color:#555;
margin-bottom:15px;
}

.policy-card ul{
padding-left:25px;
margin-bottom:20px;
}

.policy-card li{
margin-bottom:10px;
color:#555;
}

@media(max-width:768px){

.policy-card{
padding:25px;
}

}

/* ================= TERMS & CONDITIONS ================= */

.legal-card{
display:flex;
align-items:flex-start;
gap:25px;
background:#f8fafc;
padding:30px;
border-radius:20px;
margin-bottom:25px;
box-shadow:0 8px 25px rgba(0,0,0,.06);
transition:.3s;
border:1px solid #eef2f7;
}

.legal-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.legal-icon{
min-width:70px;
width:70px;
height:70px;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(
135deg,
#ED6956,
#FBBD4C
);
color:white;
font-size:28px;
box-shadow:0 8px 20px rgba(237,105,86,.25);
}

.legal-content{
flex:1;
}

.legal-badge{
display:inline-block;
background:#ED6956;
color:white;
font-size:13px;
font-weight:700;
padding:6px 14px;
border-radius:30px;
margin-bottom:12px;
}

.legal-content h3{
font-size:26px;
font-weight:700;
margin-bottom:15px;
color:#1f2937;
}

.legal-content p{
font-size:16px;
line-height:1.9;
color:#555;
}

.contact-legal{
background:linear-gradient(
135deg,
#fff7f5,
#fffdf6
);
border:2px solid #ED6956;
}

.contact-legal .legal-icon{
background:linear-gradient(
135deg,
#91ADC6,
#97C0C0
);
}

.contact-legal h3{
color:#ED6956;
}

.contact-legal p{
margin-bottom:15px;
}

/* Hero improvements */

.hero h1{
font-size:64px;
font-weight:800;
margin-bottom:10px;
}

.hero p{
font-size:18px;
line-height:1.8;
color:#666;
}

.tag{
display:inline-block;
padding:10px 20px;
background:white;
border-radius:50px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
font-weight:600;
margin-bottom:25px;
}

/* Footer improvements */

.footer-grid h4{
margin-bottom:18px;
font-size:18px;
}

.footer-grid a{
transition:.3s;
}

.footer-grid a:hover{
color:#FBBD4C;
padding-left:5px;
}

/* Legal page spacing */

.features .container{
max-width:1100px;
}

/* Mobile */

@media(max-width:768px){

.legal-card{
flex-direction:column;
padding:25px;
}

.legal-icon{
width:60px;
height:60px;
font-size:24px;
}

.legal-content h3{
font-size:22px;
}

.legal-content p{
font-size:15px;
}

.hero h1{
font-size:40px;
}

}

/* ================= REFUND POLICY ================= */

.refund-notice{
display:flex;
gap:25px;
align-items:flex-start;
background:#fff1f1;
border:2px solid #f3a9b0;
padding:35px;
border-radius:20px;
margin-bottom:30px;
}

.refund-notice-icon{
font-size:60px;
line-height:1;
}

.refund-notice h2{
color:#ED6956;
margin-bottom:15px;
}

.refund-card{
background:#f8fafc;
padding:30px;
border-radius:20px;
margin-bottom:25px;
box-shadow:0 8px 25px rgba(0,0,0,.06);
transition:.3s;
}

.refund-card:hover{
transform:translateY(-5px);
}

.refund-card i{
font-size:30px;
color:#ED6956;
margin-bottom:20px;
}

.refund-card h3{
margin-bottom:15px;
font-size:24px;
}

.refund-card p{
line-height:1.9;
color:#555;
}

.refund-card ul{
padding-left:20px;
margin-top:10px;
}

.refund-card li{
margin-bottom:10px;
line-height:1.8;
}

.refund-contact{
background:linear-gradient(
135deg,
#fff7f5,
#fffdf7
);
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.06);
margin-top:30px;
}

.refund-contact i{
font-size:45px;
color:#ED6956;
margin-bottom:20px;
}

.refund-contact h2{
margin-bottom:15px;
}

.refund-contact p{
line-height:1.9;
color:#555;
}

@media(max-width:768px){

.refund-notice{
flex-direction:column;
}

.refund-card{
padding:25px;
}

}

/* ================= SUPPORT PAGE ================= */

.support-card{
max-width:800px;
margin:auto;
background:white;
padding:50px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.support-icon{
width:100px;
height:100px;
margin:auto;
border-radius:50%;
background:linear-gradient(
135deg,
#ED6956,
#FBBD4C
);
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:40px;
margin-bottom:25px;
}

.support-card h2{
font-size:36px;
margin-bottom:15px;
}

.support-card p{
line-height:1.8;
color:#666;
margin-bottom:25px;
}

.support-email{
background:#f8fafc;
padding:20px;
border-radius:15px;
margin-bottom:30px;
}

.support-email i{
color:#ED6956;
margin-right:10px;
}

.support-email a{
text-decoration:none;
font-weight:600;
color:#222;
font-size:18px;
}

.support-buttons{
display:flex;
justify-content:center;
}

@media(max-width:768px){

.support-card{
padding:30px 20px;
}

.support-card h2{
font-size:28px;
}

.support-email a{
font-size:16px;
word-break:break-word;
}

}