
:root{
--green:#17954a;
--gold:#d4af37;
--blue:#0a5ea8;
--navy:#071b33;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Montserrat,sans-serif;background:#f7fbfd;color:#222}
.container{width:90%;max-width:1300px;margin:auto}
header{
position:fixed;width:100%;top:0;
background:rgba(255,255,255,.92);
backdrop-filter:blur(12px);
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:1000}
.nav{display:flex;justify-content:space-between;align-items:center;padding:12px 0}
.logo{height:75px}
.nav a{text-decoration:none;margin-left:25px;color:var(--navy);font-weight:700}

.hero{
height:100vh;
background:
linear-gradient(rgba(7,27,51,.55),rgba(7,27,51,.65)),
url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=2000') center/cover;
display:flex;justify-content:center;align-items:center;text-align:center;color:white}
.hero-content{max-width:900px}
.hero h1{font-size:4rem;margin-bottom:20px}
.hero p{font-size:1.2rem;line-height:1.8}

.btn{
display:inline-block;margin-top:25px;
padding:16px 34px;
border-radius:50px;
background:linear-gradient(135deg,var(--gold),#f7d86a);
color:#111;text-decoration:none;font-weight:800}

.stats{
display:grid;grid-template-columns:repeat(4,1fr);
gap:25px;padding:80px 0}
.stats div{
background:white;padding:30px;border-radius:20px;text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08)}
.stats h2{color:var(--green)}

.title{text-align:center;font-size:2.8rem;margin-bottom:40px}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;margin-bottom:80px}
.card{
background:white;padding:35px;border-radius:24px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s}
.card:hover{transform:translateY(-10px)}
.icon{font-size:3rem;margin-bottom:15px}
.card h3{margin-bottom:12px;color:var(--blue)}

.band{
background:linear-gradient(135deg,var(--green),var(--blue));
color:white;text-align:center;padding:100px 0}
.band h2{font-size:3rem;margin-bottom:20px}

.about{padding:90px 0}
.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px}
.features div{
background:white;padding:25px;border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-weight:700}

.contact{
padding:100px 20px;
text-align:center;
background:#eef8f3}
.contact h2{font-size:3rem}

footer{
background:var(--navy);
color:white;
text-align:center;
padding:25px}

@media(max-width:768px){
.hero h1{font-size:2.5rem}
.stats{grid-template-columns:repeat(2,1fr)}
.nav div{display:none}
}
