/* ===== RESET ===== */

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

html{
scroll-behavior:smooth;
}

body{
background:#07111f;
color:white;
overflow-x:hidden;
}

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

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(7,17,31,.95);
backdrop-filter:blur(10px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
font-size:30px;
font-weight:700;
color:#00d084;
}

nav a{
text-decoration:none;
color:white;
margin-left:25px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#00d084;
}

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

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 30px;
background:
linear-gradient(
rgba(7,17,31,.85),
rgba(7,17,31,.95)
),
url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44');
background-size:cover;
background-position:center;
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:2.6rem;
    font-weight:600;
    letter-spacing:1px;
    line-height:1.2;
    text-transform:uppercase;
    max-width:850px;
    margin:0 auto 20px;
}

.hero p{
font-size:1.2rem;
opacity:.9;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:16px 35px;
background:#00d084;
color:white;
text-decoration:none;
font-weight:600;
border-radius:12px;
transition:.3s;
}

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

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

.stats{
padding:90px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:#0e1d31;
padding:30px;
border-radius:20px;
text-align:center;
transition:.4s;
border:1px solid rgba(255,255,255,.05);
}

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

.card h2{
color:#00d084;
margin-bottom:10px;
font-size:2rem;
}

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

.section{
padding:100px 8%;
}

.section-title{
font-size:2.7rem;
text-align:center;
margin-bottom:50px;
}

/* ===== PROGRESS ===== */

.progress-container{
background:#16263e;
height:35px;
border-radius:40px;
overflow:hidden;
}

.progress{
height:100%;
width:100%;
background:linear-gradient(
90deg,
#00d084,
#00b86f
);
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;
}

/* ===== CALCULATOR ===== */

.calculator{
max-width:650px;
margin:auto;
background:#0e1d31;
padding:40px;
border-radius:25px;
}

.calculator input{
width:100%;
padding:16px;
margin:15px 0;
border:none;
border-radius:10px;
font-size:1rem;
}

.calculator button{
padding:15px 25px;
background:#00d084;
border:none;
color:white;
font-size:1rem;
border-radius:10px;
cursor:pointer;
}

.result{
margin-top:20px;
font-size:1.3rem;
color:#00d084;
}

/* ===== CHART ===== */

canvas{
background:white;
padding:20px;
border-radius:20px;
}

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

footer{
background:#040c17;
padding:50px;
text-align:center;
margin-top:50px;
color:#aaa;
}

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

@media(max-width:768px){

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

nav{
display:none;
}

.section-title{
font-size:2rem;
}

}
/* ===== SUKUK 2027 ===== */

.issuance-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-bottom:40px;
}

.issuance-card{
background:#0e1d31;
padding:30px;
border-radius:20px;
text-align:center;
border:1px solid rgba(255,255,255,.05);
transition:.4s;
}

.issuance-card:hover{
transform:translateY(-8px);
}

.issuance-card h3{
margin-bottom:15px;
font-size:1.1rem;
color:#ccc;
}

.issuance-card span{
display:block;
font-size:2rem;
font-weight:700;
color:#00d084;
}

.issuance-description{
background:#0e1d31;
padding:35px;
border-radius:20px;
max-width:900px;
margin:auto;
line-height:1.8;
}

.issuance-description h3{
margin-bottom:15px;
color:#00d084;
}
.flow-container{
display:flex;
justify-content:center;
align-items:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.flow-card{
background:#0e1d31;
color:white;
padding:25px;
border-radius:20px;
min-width:220px;
text-align:center;
border:1px solid rgba(255,255,255,.05);
box-shadow:0 10px 25px rgba(0,0,0,.25);
transition:.3s;
}

.flow-card:hover{
transform:translateY(-8px);
}

.center{
background:linear-gradient(135deg,#0f766e,#14b8a6);
color:white;
}

.flow-arrow{
font-size:3rem;
font-weight:bold;
color:#00d084;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.15);}
100%{transform:scale(1);}
}

.flow-projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:50px;
}

.project-card{
background:#0e1d31;
color:white;
padding:25px;
border-radius:15px;
text-align:center;
font-weight:600;
border:1px solid rgba(255,255,255,.05);
box-shadow:0 10px 25px rgba(0,0,0,.25);
transition:.3s;
}

.project-card:hover{
transform:translateY(-5px);
}
/* ===== HERO STATS ===== */

.hero-stats{
display:flex;
justify-content:center;
gap:40px;
margin:35px 0;
flex-wrap:wrap;
}

.hero-stats div{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
padding:20px 30px;
border-radius:15px;
border:1px solid rgba(255,255,255,0.1);
min-width:150px;
}

.hero-stats h3{
font-size:2rem;
color:#00d084;
margin-bottom:5px;
}

.hero-stats p{
margin:0;
font-size:0.95rem;
opacity:0.85;
}
.dashboard{
padding:120px 8%;
background:#f8fafc;
min-height:100vh;
text-align:center;
}

.dashboard h1{
margin-bottom:50px;
}

.dashboard-cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:white;
padding:30px;
width:250px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card h3{
margin-bottom:15px;
color:#64748b;
}

.card p{
font-size:2rem;
font-weight:bold;
color:#00d084;
}
.dashboard{
    min-height:100vh;
    padding:120px 8%;
    text-align:center;

    background:
    linear-gradient(
        135deg,
        #07111f 0%,
        #0f172a 50%,
        #111827 100%
    );

    color:white;
}

.dashboard h1{
    font-size:3rem;
    margin-bottom:60px;
    color:white;
}

.dashboard-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* ===== CARTES INDEX ===== */

.stats .card{
    background:#0e1d31;
    padding:30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);
    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.stats .card h2{
    color:#00d084;
    font-size:2.5rem;
    margin-bottom:15px;
}

.stats .card p{
    color:#d1d5db;
    font-size:1rem;
    line-height:1.5;
    font-weight:400;
}
 .contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:16px;
    border:none;
    border-radius:12px;
    background:#0e1d31;
    color:white;
    font-size:1rem;
    border:1px solid rgba(255,255,255,.08);
}

.contact-form button{
    padding:16px;
    border:none;
    border-radius:12px;
    background:#00d084;
    color:white;
    font-weight:600;
    cursor:pointer;
}
    .tech-title{
    display:flex;
    justify-content:center;
    margin-bottom:60px;
}

.tech-title h2{
    padding:20px 40px;
    border-radius:50px;
    background:rgba(0,255,200,0.08);
    border:1px solid rgba(0,255,200,0.3);
    backdrop-filter:blur(10px);

    color:white;
    font-size:2rem;
    font-weight:700;

    box-shadow:
        0 0 15px rgba(0,255,200,0.2),
        0 0 40px rgba(0,255,200,0.1);

    text-align:center;
}
.invest-demo{
    max-width:700px;
    margin:auto;
    padding:100px 20px;
}

.sukuk-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(0,208,132,.3);
    border-radius:20px;
    padding:40px;
    text-align:center;
}

.sukuk-card input{
    width:100%;
    padding:15px;
    margin:20px 0;
    border-radius:10px;
}
.hero-invest{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 500px;
    gap:60px;
    align-items:center;
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}

.hero-left h1{
    font-size:4rem;
    line-height:1.1;
    color:white;
}

.hero-left h1 span{
    color:#00d084;
}

.hero-left p{
    color:#bfc9d1;
    font-size:1.2rem;
    margin-top:25px;
    max-width:700px;
}

.badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:30px;
    border:1px solid rgba(0,208,132,.4);
    background:rgba(0,208,132,.1);
    color:#00d084;
    margin-bottom:30px;
}

.features{
    display:flex;
    gap:30px;
    margin-top:40px;
    color:white;
    flex-wrap:wrap;
}

.invest-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(0,208,132,.25);
    border-radius:24px;
    padding:40px;
    backdrop-filter:blur(15px);
    box-shadow:0 0 50px rgba(0,208,132,.15);
}

.invest-card h2{
    color:white;
    margin-bottom:30px;
}

.stats{
    display:flex;
    justify-content:space-between;
    margin-bottom:30px;
}

.stats div{
    text-align:center;
}

.stats span{
    display:block;
    color:#8c98a4;
}

.stats strong{
    color:white;
    font-size:1.3rem;
}

.progress{
    height:12px;
    background:#13243a;
    border-radius:30px;
    overflow:hidden;
    margin:15px 0;
}

.progress-bar{
    width:53%;
    height:100%;
    background:linear-gradient(
        90deg,
        #00d084,
        #00ffb3
    );
}

.invest-card input{
    width:100%;
    padding:18px;
    margin-top:25px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.15);
    background:#09111f;
    color:white;
}

.invest-card button{
    width:100%;
    margin-top:20px;
    padding:18px;
    border:none;
    border-radius:12px;
    font-size:1rem;
    font-weight:700;
    color:white;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        #00d084,
        #00b4ff
    );
}

#wallet-status{
    margin-top:20px;
    color:#00d084;
    text-align:center;
}
input[type="file"]{
    width:100%;
    padding:15px;
    margin:10px 0 20px;
    border:1px solid rgba(0,208,132,.3);
    border-radius:10px;
    background:#020814;
    color:white;
}