*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,sans-serif;color:#0b1b3f;background:#fff}
a{text-decoration:none}
.container{width:90%;max-width:1200px;margin:auto}

.topbar{background:#081b4b;color:white;font-size:14px;padding:8px 0}
.topbar .container{display:flex;justify-content:space-between}

header{background:white;box-shadow:0 2px 15px rgba(0,0,0,.08);position:sticky;top:0;z-index:99}
.navbar{display:flex;justify-content:space-between;align-items:center;padding:18px 0}
.logo{font-size:28px;font-weight:800;color:#081b4b}
.logo span{color:#7c3aed}
nav a{color:#081b4b;margin-left:28px;font-weight:600}
.quote-btn{background:#7c3aed;color:white!important;padding:12px 22px;border-radius:30px}

.hero{min-height:620px;background:linear-gradient(rgba(8,27,75,.78),rgba(8,27,75,.78)),url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80');background-size:cover;background-position:center;display:flex;align-items:center;text-align:center;color:white}
.hero h1{font-size:56px;max-width:850px;margin:auto;line-height:1.15}
.hero h1 span{color:#8b5cf6}
.hero p{font-size:20px;max-width:760px;margin:22px auto;color:#e8e8e8}
.btn{display:inline-block;padding:14px 30px;border-radius:30px;font-weight:700;margin:10px}
.btn-primary{background:#7c3aed;color:white}
.btn-light{background:white;color:#081b4b}

.section{padding:90px 0}
.section-title{text-align:center;margin-bottom:50px}
.section-title small{color:#7c3aed;font-weight:700}
.section-title h2{font-size:36px;color:#081b4b;margin-top:10px}

.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px}
.card{background:white;padding:30px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.1);transition:.3s}
.card:hover{transform:translateY(-8px)}
.icon{font-size:36px;margin-bottom:15px}
.card h3{margin-bottom:12px;color:#081b4b}
.card p{color:#555;line-height:1.6}

.steps{background:#eef5ff}
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:25px}
.step{background:white;text-align:center;padding:30px;border-radius:14px;box-shadow:0 8px 25px rgba(0,0,0,.08)}
.number{width:50px;height:50px;background:#7c3aed;color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 15px;font-weight:800}

.about{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.about-box{background:#081b4b;color:white;padding:45px;border-radius:18px}
.about-box h2{font-size:34px;margin-bottom:20px}
.about-box p{line-height:1.8;color:#e8e8e8}

.stats{background:linear-gradient(90deg,#081b4b,#7c3aed);color:white;padding:55px 0}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:25px;text-align:center}
.stats h3{font-size:42px}

.pricing{background:#f7f9fc}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:25px}
.price-card{background:white;border-radius:16px;padding:35px;box-shadow:0 10px 30px rgba(0,0,0,.1);text-align:center}
.price-card.featured{border:3px solid #7c3aed;transform:scale(1.03)}
.price{font-size:38px;font-weight:800;color:#7c3aed;margin:20px 0}

.cta{background:#081b4b;color:white;text-align:center;padding:80px 20px}
.cta h2{font-size:38px;margin-bottom:15px}

footer{background:#061028;color:white;padding:60px 0 25px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:35px}
footer h3{margin-bottom:15px}
footer p,footer a{color:#d6d6d6;display:block;margin:8px 0}
.copy{text-align:center;border-top:1px solid rgba(255,255,255,.15);margin-top:35px;padding-top:20px;color:#ccc}

@media(max-width:768px){
.hero h1{font-size:38px}
nav{display:none}
.about{grid-template-columns:1fr}
.footer-grid{grid-template-columns:1fr}
.topbar .container{display:block;text-align:center}
}