*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#F6FAFF;
color:#1f2937;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
position:fixed;
width:100%;
z-index:1000;
}

.logo img{
height:50px;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#0F172A;
font-weight:500;
}

.btn-invest{
background:#FF4D00;
color:white;
border:none;
padding:10px 20px;
border-radius:25px;
cursor:pointer;
}

.hero{
height:100vh;
background:url("hero.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:white;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
135deg,
rgba(77,168,218,0.8),
rgba(30,58,138,0.9)
);
}

.hero-content{
position:relative;
max-width:900px;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
}

.hero span{
color:#FFD166;
}

.hero-buttons{
margin-top:20px;
}

.btn-primary{
background:#4DA8DA;
padding:14px 28px;
border-radius:30px;
color:white;
text-decoration:none;
margin-right:10px;
}

.btn-secondary{
background:white;
color:#0F172A;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
}

.hero-stats{
margin-top:60px;
display:flex;
justify-content:center;
gap:60px;
}

section{
padding:100px 80px;
text-align:center;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
margin-top:40px;
}

.trust-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.trust-card:hover{
transform:translateY(-10px);
}

.produk-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.produk-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.produk-card:hover{
transform:translateY(-10px);
}

.produk-card img{
width:100%;
height:200px;
object-fit:cover;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
border-radius:15px;
}

.artikel-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.artikel-card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.cta{
background:#1E3A8A;
color:white;
}

footer{
background:#0F172A;
color:white;
text-align:center;
padding:40px;
}

footer img{
height:40px;
margin-bottom:10px;
}