*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
color:#111;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
box-shadow:0 2px 15px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:1000;
}

.logo img{
height:60px;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav a{
text-decoration:none;
color:#0B1F3A;
font-weight:500;
}

.cta-btn{
background:#C89B4B;
padding:12px 24px;
border-radius:50px;
}

.hero{
background:
linear-gradient(
135deg,
#071B36 0%,
#0B1F3A 60%,
#10284D 100%
);
color:white;
padding:120px 8%;
}

.hero-proof{
display:flex;
gap:20px;
margin-top:25px;
margin-bottom:35px;
flex-wrap:wrap;
}

.hero-proof span{
font-size:15px;
font-weight:500;
color:#EAEAEA;
}

.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
max-width:1400px;
margin:auto;
}

.hero h1{
font-size:64px;
line-height:1.15;
margin-bottom:25px;
}

.hero p{
font-size:22px;
line-height:1.7;
max-width:650px;
opacity:.9;
}

.badge{
background:#C89B4B;
padding:8px 20px;
border-radius:50px;
display:inline-block;
margin-bottom:20px;
color:#0B1F3A;
font-weight:600;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:20px;
}

.blueprint-card{
background:white;
color:#0B1F3A;
padding:35px;
border-radius:24px;
width:380px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.blueprint-card h3{
text-align:center;
margin-bottom:25px;
font-size:28px;
}

.step{
padding:14px 18px;
background:#F6F7FA;
border-radius:12px;
margin-bottom:12px;
font-weight:500;
}

.arrow{
text-align:center;
font-size:28px;
margin:12px 0;
color:#C89B4B;
font-weight:700;
}

.plan-box{
background:#FFF5E4;
padding:18px;
border-radius:14px;
text-align:center;
font-weight:600;
}

.result-box{
background:#C89B4B;
color:#0B1F3A;
padding:18px;
border-radius:14px;
text-align:center;
font-weight:700;
margin-top:10px;
}

.trust-bar{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:40px 8%;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.trust-item{
text-align:center;
}

.trust-item h3{
font-size:32px;
color:#0B1F3A;
margin-bottom:8px;
}

.trust-item p{
color:#666;
font-size:15px;
}

.gold-btn{
background:#C89B4B;
color:#0B1F3A;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

.outline-btn{
border:2px solid white;
padding:15px 35px;
border-radius:50px;
color:white;
text-decoration:none;
}

.services,
.audit,
.why,
.contact{
padding:100px 8%;
}

.services h2,
.audit h2,
.why h2,
.contact h2{
text-align:center;
margin-bottom:50px;
font-size:42px;
color:#0B1F3A;
}

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

.card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

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

.audit{
background:#F8F9FB;
text-align:center;
}

.audit-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
max-width:900px;
margin:40px auto;
gap:20px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
text-align:center;
}

.contact{
background:#0B1F3A;
color:white;
text-align:center;
padding:120px 8%;
}

.contact p{
margin:25px 0;
font-size:20px;
}

.contact .gold-btn{
display:inline-block;
margin-top:20px;
}

.contact h2{
color:white;
}

footer{
padding:30px;
background:#081527;
color:white;
text-align:center;
}

