:root{
  --yellow:#ffd200;
  --blue:#0646b8;
  --dark:#07111f;
  --muted:#5f6b7a;
  --white:#ffffff;
  --soft:#f6f8fb;
  --border:#e6e9ef;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--white);
  color:var(--dark);
  padding-bottom:86px;
}

.topbar{
  min-height:92px;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:16px 7%;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 8px 24px rgba(0,0,0,.14);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--blue);
  text-decoration:none;
}

.logo-circle{
  width:62px;
  height:62px;
  border-radius:50%;
  background:var(--blue);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:1000;
  letter-spacing:.5px;
  box-shadow:0 8px 18px rgba(6,70,184,.28);
}

.brand h2{
  font-size:27px;
  line-height:1.05;
  font-weight:1000;
  text-transform:uppercase;
}

.brand span{
  display:block;
  margin-top:4px;
  font-size:14px;
  font-weight:900;
  color:#173b72;
}

.menu-btn{
  display:none;
  background:var(--blue);
  color:var(--white);
  border:0;
  border-radius:14px;
  width:52px;
  height:48px;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}

.main-menu{
  display:flex;
  align-items:center;
  gap:8px;
}

.main-menu a{
  color:var(--dark);
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  padding:13px 15px;
  border-radius:999px;
  transition:.2s ease;
}

.main-menu a:hover{
  background:var(--blue);
  color:var(--white);
}

.hero{
  min-height:calc(100vh - 92px);
  background:linear-gradient(90deg,rgba(7,17,31,.88),rgba(7,17,31,.68),rgba(7,17,31,.35)),url('https://images.unsplash.com/photo-1625047509168-a7026f36de04?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay{
  min-height:calc(100vh - 92px);
  display:flex;
  align-items:center;
  padding:70px 7%;
}

.hero-content{
  max-width:850px;
  color:var(--white);
}

.eyebrow{
  color:var(--yellow);
  font-size:16px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
}

.dark-text{color:var(--blue)}

.hero h1{
  font-size:64px;
  line-height:1.05;
  font-weight:1000;
  letter-spacing:-1px;
  text-transform:uppercase;
  text-shadow:0 5px 14px rgba(0,0,0,.42);
}

.hero-text{
  font-size:23px;
  line-height:1.65;
  margin:24px 0 28px;
  max-width:760px;
}

.hero-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:62px;
  padding:18px 24px;
  border-radius:18px;
  font-size:20px;
  font-weight:1000;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(0,0,0,.24);
  transition:.2s ease;
}

.btn:hover{transform:translateY(-2px)}
.blue{background:var(--blue);color:var(--white)}
.yellow{background:var(--yellow);color:var(--dark)}

.trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.trust div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  padding:16px;
  font-size:16px;
  font-weight:900;
  backdrop-filter:blur(8px);
}

.section{
  padding:78px 7%;
  text-align:center;
}

.section-heading{
  max-width:850px;
  margin:0 auto 34px;
}

.section h2{
  font-size:42px;
  line-height:1.15;
  margin-bottom:14px;
}

.section p{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.white{background:var(--white)}
.yellow-bg{background:var(--yellow)}
.dark{background:var(--dark);color:var(--white)}
.dark p{color:#d8dee8}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:28px;
}

.card{
  display:block;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:26px;
  padding:30px;
  min-height:235px;
  text-align:left;
  text-decoration:none;
  color:var(--dark);
  box-shadow:0 14px 35px rgba(7,17,31,.10);
  transition:.2s ease;
}

.card:hover{
  transform:translateY(-4px);
  border-color:var(--blue);
  box-shadow:0 20px 42px rgba(7,17,31,.16);
}

.icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:18px;
}

.card h3{
  color:var(--blue);
  font-size:23px;
  margin-bottom:12px;
}

.card p{
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}

.split-section{
  background:var(--soft);
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:38px;
  align-items:center;
  text-align:left;
}

.split-text h2{font-size:42px;margin-bottom:16px}
.split-text p{font-size:19px;line-height:1.75;color:var(--muted)}

.features{
  display:grid;
  gap:16px;
}

.features div{
  background:var(--white);
  border-radius:22px;
  padding:22px;
  display:flex;
  align-items:center;
  gap:18px;
  box-shadow:0 12px 28px rgba(7,17,31,.09);
}

.features strong{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--blue);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.features span{font-size:19px;font-weight:900}

.area-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  max-width:920px;
  margin:0 auto;
}

.area-list span{
  background:var(--white);
  color:var(--dark);
  border-radius:999px;
  padding:14px 20px;
  font-size:17px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.contact-box{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer{
  background:#030913;
  color:#c9d1df;
  text-align:center;
  padding:24px 7%;
  font-size:15px;
}

.fixed-buttons{
  position:fixed;
  left:4%;
  right:4%;
  bottom:16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  z-index:200;
}

.fixed-buttons a{
  text-align:center;
  text-decoration:none;
  padding:18px 10px;
  border-radius:999px;
  font-size:19px;
  font-weight:1000;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.fixed-call{background:var(--blue);color:var(--white)}
.fixed-msg{background:var(--dark);color:var(--white)}

@media(max-width:980px){
  .menu-btn{display:block}
  .main-menu{
    display:none;
    position:absolute;
    left:5%;
    right:5%;
    top:88px;
    background:var(--white);
    border-radius:22px;
    padding:14px;
    box-shadow:0 18px 40px rgba(0,0,0,.22);
  }
  .main-menu.show{display:grid;gap:6px}
  .main-menu a{padding:16px 18px;border-radius:14px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .split-section{grid-template-columns:1fr;text-align:center}
}

@media(max-width:700px){
  .topbar{min-height:84px;padding:13px 5%}
  .logo-circle{width:52px;height:52px;font-size:15px}
  .brand h2{font-size:20px}
  .brand span{font-size:12px}
  .hero,.hero-overlay{min-height:calc(100vh - 84px)}
  .hero-overlay{padding:46px 5%;align-items:flex-start}
  .hero h1{font-size:40px}
  .hero-text{font-size:19px}
  .hero-actions{display:grid;grid-template-columns:1fr;width:100%}
  .btn{width:100%;font-size:19px;padding:17px}
  .trust{grid-template-columns:1fr}
  .section{padding:60px 5%}
  .section h2,.split-text h2{font-size:32px}
  .grid{grid-template-columns:1fr}
  .card{min-height:auto}
  .contact-box{display:grid;grid-template-columns:1fr}
  .fixed-buttons{left:3%;right:3%;bottom:12px;gap:9px}
  .fixed-buttons a{font-size:17px;padding:16px 8px}
}
