*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#081120;
color:white;
overflow-x:hidden;
line-height:1.6;
}

/* =========================
HEADER
========================= */

.top-header{
position:fixed;
top:0;
left:0;
width:100%;
background:#ffffff;
padding:18px;
text-align:center;
z-index:9999;
border-bottom:1px solid #e5e7eb;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.top-header h2{
color:#0a84ff;
font-size:42px;
font-weight:900;
letter-spacing:4px;
margin:0;
text-transform:uppercase;
}

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

.hero{
position:relative;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 20px 40px;
background:linear-gradient(135deg,#0a84ff,#001f3f);
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.3);
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
font-size:1.1rem;
margin-bottom:30px;
color:#d9e8ff;
}

.hero-btn{
display:inline-block;
padding:15px 30px;
background:#00c2ff;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:bold;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-2px);
}

/* =========================
STATS
========================= */

.stats-section{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:60px 20px;
background:#0b1728;
}

.stat-box{
background:#10233c;
padding:30px;
border-radius:15px;
text-align:center;
}

.stat-box h2{
font-size:2rem;
color:#00c2ff;
margin-bottom:10px;
}

.stat-box p{
color:#d3dff5;
}

/* =========================
FORM
========================= */

.join-section{
padding:70px 20px;
}

.form-container{
width:100%;
max-width:500px;
margin:auto;
background:#10233c;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.form-container h2{
text-align:center;
margin-bottom:15px;
}

.form-container p{
text-align:center;
margin-bottom:20px;
color:#d3dff5;
}

form{
display:flex;
flex-direction:column;
gap:15px;
}

input,
select{
padding:15px;
border:none;
border-radius:12px;
outline:none;
background:#0b1728;
color:white;
font-size:15px;
}

.phone-row{
display:flex;
gap:10px;
}

.phone-row select{
width:45%;
}

.phone-row input{
width:55%;
}

button{
padding:16px;
border:none;
border-radius:50px;
background:#00c2ff;
color:white;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

button:hover{
opacity:.9;
}

.today-count-box{
margin-top:10px;
text-align:center;
font-weight:bold;
}

/* =========================
VCF SECTION
========================= */

.daily-vcf-section{
padding:70px 20px;
}

.daily-vcf-box{
width:100%;
max-width:700px;
margin:auto;
background:#10233c;
padding:40px;
border-radius:20px;
text-align:center;
}

.daily-vcf-box h2{
margin-bottom:15px;
}

.daily-vcf-box p{
margin-bottom:20px;
color:#d3dff5;
}

.vcf-notice{
margin-bottom:20px;
padding:12px;
background:rgba(255,193,7,0.1);
border:1px solid rgba(255,193,7,0.3);
border-radius:10px;
color:#ffd166;
font-size:14px;
line-height:1.5;
}

/* =========================
TRUST SECTION
========================= */

.trust-section{
padding:70px 20px;
text-align:center;
max-width:1200px;
margin:auto;
}

.trust-section h2{
margin-bottom:40px;
}

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

.trust-card{
background:#10233c;
padding:30px;
border-radius:20px;
}

.trust-card h3{
margin-bottom:15px;
color:#00c2ff;
}

.trust-card p{
color:#d3dff5;
}

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

footer{
padding:30px;
text-align:center;
background:#06101d;
color:#d3dff5;
}

/* =========================
MODALS
========================= */

.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
display:none;
justify-content:center;
align-items:center;
padding:20px;
z-index:99999;
}

.modal-content{
background:#10233c;
padding:35px;
border-radius:20px;
text-align:center;
max-width:400px;
width:100%;
}

.modal-content h2{
margin-bottom:15px;
}

.modal-content p{
margin-bottom:20px;
color:#d3dff5;
}

.modal-btn{
display:inline-block;
padding:15px 30px;
background:#00c2ff;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:bold;
margin-bottom:10px;
}

#closeModal,
#closeTaskModal{
background:#1e3352;
}

/* =========================
LIVE POPUP
========================= */

#livePopup{
position:fixed;
left:20px;
bottom:20px;
display:none;
z-index:9999;
}

.popup-card{
background:linear-gradient(135deg,#0a84ff,#00c6ff);
padding:10px 14px;
border-radius:12px;
font-size:14px;
font-weight:600;
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

/* =========================
TOAST
========================= */

#toast{
position:fixed;
top:20px;
right:20px;
background:#1e90ff;
color:white;
padding:14px 20px;
border-radius:10px;
font-weight:600;
z-index:99999;
opacity:0;
transform:translateY(-20px);
transition:.4s;
}

#toast.show{
opacity:1;
transform:translateY(0);
}

#toast.error{
background:#ff3b30;
}

#downloadTimer{
margin-top:10px;
font-weight:bold;
color:#00c2ff;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.hero{
padding:110px 20px 50px;
}

.hero h1{
font-size:2rem;
}

.hero p{
font-size:1rem;
}

.stats-section{
grid-template-columns:1fr;
}

.phone-row{
flex-direction:column;
}

.phone-row select,
.phone-row input{
width:100%;
}

.form-container{
padding:25px;
}

.daily-vcf-box{
padding:25px;
}

.trust-grid{
grid-template-columns:1fr;
}

.top-header h2{
font-size:20px;
}

}

/* HOW IT WORKS SECTION */

.how-section{
padding:70px 20px;
text-align:center;
}

.how-section h2{
margin-bottom:40px;
font-size:2rem;
}

.how-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}

.how-card{
background:#10233c;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
}

.how-card h3{
margin-bottom:15px;
color:#00c2ff;
}

.how-card p{
line-height:1.6;
color:#d3dff5;
}

.download-note{
margin-top:15px;
margin-bottom:20px;
color:#00c2ff;
font-weight:600;
font-size:14px;
}

.privacy-check{
display:flex;
align-items:flex-start;
gap:10px;
font-size:14px;
color:#d3dff5;
line-height:1.5;
}

.privacy-check input{
margin-top:3px;
}

.privacy-check a{
color:#00c2ff;
text-decoration:none;
}

.privacy-check a:hover{
text-decoration:underline;
}

/* SHARE SECTION */

.share-section{
padding:70px 20px;
text-align:center;
max-width:800px;
margin:auto;
}

.share-section h2{
margin-bottom:20px;
font-size:2rem;
}

.share-text{
margin-bottom:20px;
color:#d3dff5;
}

.share-box{
background:#10233c;
padding:25px;
border-radius:15px;
max-width:600px;
margin:0 auto 20px;
text-align:left;
line-height:1.8;
color:#ffffff;
border:1px solid rgba(255,255,255,0.08);
}

#copyShareBtn{
padding:15px 30px;
background:#00c2ff;
color:white;
border:none;
border-radius:50px;
font-weight:bold;
cursor:pointer;
}

.community-goal{
margin-top:20px;
padding:12px;
background:rgba(0,194,255,0.1);
border:1px solid rgba(0,194,255,0.3);
border-radius:12px;
text-align:center;
font-size:15px;
font-weight:600;
color:#00c2ff;
line-height:1.6;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.whatsapp-share-btn{
display:inline-block;
margin-top:15px;
padding:15px 30px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:50px;
font-weight:bold;
}

.secondary-btn{
display:inline-block;
margin-top:15px;
background:transparent;
border:2px solid #00c2ff;
color:#00c2ff;
}

.secondary-btn:hover{
background:#00c2ff;
color:white;
}


/* ===========================
   MODERN HEADER
=========================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:72px;
    background:#081423;
    display:flex;
    align-items:center;
    padding:0 15px;
    box-sizing:border-box;
    z-index:9999;
    box-shadow:0 3px 15px rgba(0,0,0,.25);
justify-content:flex-start;
gap:8px;
}

.menu-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    margin-right:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:6px;
    margin-left:-6px;
    text-decoration:none;
    color:inherit;
}

.logo-area:link,
.logo-area:visited,
.logo-area:hover,
.logo-area:active{
    text-decoration:none;
    color:inherit;
}

.site-logo{
    width:54px;
    height:54px;
    object-fit:contain;
}

.logo-text{
    font-size:20px;
    font-weight:900;
    color:#ffffff;
}

.logo-text span{
    color:#00B8FF;
}


/* ===========================
   SIDEBAR
=========================== */

.sidebar{

position:fixed;

top:0;

left:-300px;

width:280px;

height:100%;

background:#081423;

transition:.35s;

z-index:10000;

display:flex;

flex-direction:column;

box-shadow:5px 0 20px rgba(0,0,0,.4);

}

.sidebar.active{

left:0;

}

.sidebar-top{

display:flex;

justify-content:space-between;

align-items:center;

padding:22px;

border-bottom:1px solid rgba(255,255,255,.08);

}

.sidebar-top h2{

color:white;

font-size:24px;

}

.sidebar-top span{

color:#00b8ff;

}

#closeSidebar{

background:none;

border:none;

color:white;

font-size:28px;

cursor:pointer;

}

.sidebar a{

padding:18px 25px;

color:white;

text-decoration:none;

font-size:17px;

transition:.25s;

}

.sidebar a:hover{

background:#10233c;

padding-left:35px;

}

.sidebar-bottom{

margin-top:auto;

padding:20px;

}

.join-community{

display:block;

background:#00b8ff;

text-align:center;

padding:14px;

border-radius:10px;

font-weight:bold;

color:white !important;

}


/* ===========================
   OVERLAY
=========================== */

#overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.5);

display:none;

z-index:9998;

}

#overlay.active{

display:block;

}


/* Push page below header */

body{

padding-top:70px;

}

/* ==========================
DOWNLOAD POPUP
========================== */

.download-popup{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);

display:flex;
align-items:center;
justify-content:center;

opacity:0;
visibility:hidden;

transition:.3s;

z-index:99999;

}

.download-popup.show{

opacity:1;
visibility:visible;

}

.download-card{

background:#fff;

width:90%;
max-width:360px;

padding:35px 25px;

border-radius:18px;

text-align:center;

animation:popupScale .3s ease;

}

.download-icon{

font-size:58px;

margin-bottom:15px;

}

.download-card h2{

margin:0;

font-size:24px;

color:#222;

}

.download-card p{

margin-top:12px;

font-size:15px;

line-height:1.6;

color:#666;

}

.spinner{

width:38px;
height:38px;

border:4px solid #ddd;

border-top:4px solid #00c853;

border-radius:50%;

margin:22px auto 0;

animation:spin .8s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@keyframes popupScale{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}


/* ================= BENEFIT SECTION ================= */

.benefit-section{

padding:70px 20px;
background:#081120;
text-align:center;

}

.benefit-section h2{

font-size:32px;
margin-bottom:40px;
color:#fff;

}


.benefit-grid{

max-width:1000px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;

}


.benefit-card{

background:#10233c;
padding:30px 25px;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;

}


.benefit-card:hover{

transform:translateY(-5px);

}


.benefit-card h3{

color:#00c2ff;
font-size:20px;
margin-bottom:15px;

}


.benefit-card p{

color:#d6e7ff;
line-height:1.7;

}



/* ================= WHY VIEWS MATTER ================= */


.views-section{

padding:70px 20px;
max-width:900px;
margin:auto;
text-align:center;

}


.views-section h2{

font-size:32px;
margin-bottom:25px;

}


.views-section p{

color:#d6e7ff;
font-size:17px;
line-height:1.8;
margin-bottom:25px;

}


.views-section h3{

margin-bottom:20px;

}


.views-section ul{

list-style:none;
padding:0;
text-align:left;
max-width:500px;
margin:25px auto;

}


.views-section li{

background:#10233c;
margin-bottom:12px;
padding:15px 20px;
border-radius:12px;
color:#d6e7ff;
border:1px solid rgba(255,255,255,.08);

}



/* MOBILE */

@media(max-width:768px){

.benefit-section h2,
.views-section h2{

font-size:26px;

}


.benefit-card{

padding:25px 20px;

}


.views-section{

padding:50px 20px;

}

}