:root{
  --navy:#0f3553;
  --navy2:#0b2a43;
  --red:#b22b2b;
  --bg:#f5f7fb;
  --text:#0b1220;
  --muted:#556173;
  --card:#ffffff;
  --border:rgba(15, 23, 42, 0.14);
  --shadow:0 18px 45px rgba(2, 10, 20, 0.14);
  --shadow2:0 10px 22px rgba(2, 10, 20, 0.10);
  --max:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.skiplink{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  z-index:9999;
}
.skiplink:focus{left:10px}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(15, 23, 42, 0.08);
  box-shadow:0 6px 18px rgba(2,10,20,0.06);
}
.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brandLogo{
  height:62px;
  width:auto;
  max-width:260px;
  object-fit:contain;
}
.nav{
  display:none;
  gap:22px;
  align-items:center;
  justify-content:center;
  flex:1;
}
.navLink{
  font-size:14px;
  color:#1f2a3a;
  opacity:0.85;
  padding:8px 10px;
  border-radius:10px;
}
.navLink:hover{background:rgba(15,53,83,0.06);opacity:1}
.headerActions{
  display:flex;
  gap:10px;
  align-items:center;
  flex:0 0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  text-align:center;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow2)}
.btn:active{transform:translateY(0)}
.btnSmall{padding:12px 16px;border-radius:12px}
.btnWide{min-width:240px}
.btnFull{width:100%}
.btnIcon{display:inline-flex;align-items:center;justify-content:center}
.btnNavy{
  background:var(--navy);
  color:#fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.15);
}
.btnRed{background:var(--red);color:#fff}
.btnGhost{
  background:#fff;
  border-color:rgba(15, 23, 42, 0.18);
  color:#122031;
}

.hero{
  background:#fff;
}
.heroGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
  padding:42px 0 26px;
}
.heroLogo{
  width:100%;
  max-width:320px;
  height:auto;
  margin:0 0 18px;
}
.heroTitle{
  margin:0;
  font-size:44px;
  line-height:1.02;
  letter-spacing:-0.02em;
  font-weight: 600;
}
.heroBlue{color:var(--navy)}
.heroRed{color:var(--red)}
.heroSub{
  margin:14px 0 20px;
  color:var(--muted);
  max-width:560px;
}
.heroButtons{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
  margin-top:18px;
}
.serviceArea{
  margin-top:14px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#243447;
  font-weight:650;
  font-size:13px;
  opacity:0.85;
}
.pin{color:var(--navy);display:inline-flex}

.heroMedia{
  display:flex;
  justify-content:center;
}
.heroImageWrap{
  position:relative;
  width:100%;
  max-width:640px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.heroImage{
  width:100%;
  height:420px;
  object-fit:cover;
}
.badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background:#fff;
  border:1px solid rgba(15, 23, 42, 0.14);
  border-radius:16px;
  padding:14px 16px;
  box-shadow:0 16px 40px rgba(2,10,20,0.18);
  min-width:220px;
}
.badgeTop{font-size:26px;font-weight:900;color:var(--navy)}
.badgeBottom{font-size:13px;font-weight:700;color:#415269;opacity:0.9}

.section{
  padding:54px 0;
}
.sectionTitle{
  margin:0;
  text-align:center;
  font-size:36px;
  letter-spacing:-0.02em;
}
.sectionLead{
  margin:10px auto 0;
  max-width:720px;
  text-align:center;
  color:var(--muted);
}
.leftTitle{text-align:left}
.leftLead{text-align:left;margin-left:0}

.cardsGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:28px;
}
.card{
  background:var(--card);
  border:1px solid rgba(15, 23, 42, 0.12);
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 42px rgba(2,10,20,0.10);
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(2,10,20,0.12);
}
.cardHeader{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.cardIcon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.cardIconNavy{background:var(--navy)}
.cardIconRed{background:var(--red)}
.cardTitle{
  margin:0;
  font-size:22px;
  letter-spacing:-0.01em;
}
.cardImage{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(15, 23, 42, 0.10);
}
.cardText{
  margin:14px 0 14px;
  color:var(--muted);
}
.list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.check{
  display:inline-block;
  width:18px;
  height:18px;
  border-radius:999px;
  margin-right:10px;
  position:relative;
  top:3px;
}
.check::after{
  content:"";
  position:absolute;
  left:6px;
  top:4px;
  width:6px;
  height:10px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
}
.checkNavy{background:var(--navy)}
.checkRed{background:var(--red)}
.arrow{margin-left:6px}

.getStartedGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:center;
}
.getStartedMedia{
  display:flex;
  justify-content:center;
}
.getStartedImage{
  width:100%;
  max-width:540px;
  height:360px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15, 23, 42, 0.10);
  background:#fff;
}
.contactCard{
  background:#fff;
  border:1px solid rgba(15, 23, 42, 0.12);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 42px rgba(2,10,20,0.10);
}
.contactRow{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:12px 0;
  border-bottom:1px solid rgba(15, 23, 42, 0.08);
}
.contactRow:last-of-type{border-bottom:none}
.contactIcon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(15,53,83,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
}
.contactLabel{font-weight:900}
.contactLink{color:var(--navy);font-weight:800}
.contactPlain{color:#243447;font-weight:700}
.subtle{opacity:0.8;font-weight:650}
.contactButtons{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:14px;
}

.footer{
  background:#0a2236;
  color:#eaf0f7;
  padding:48px 0 18px;
  margin-top:18px;
}
.footerGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.footerLogo{
  height:90px;
  width:auto;
  opacity:0.95;
}
.footerText{
  margin:12px 0 0;
  opacity:0.9;
  max-width:360px;
}
.footerCol{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footerTitle{font-weight:900;margin-bottom:4px}
.footerLink{opacity:0.92}
.footerLink:hover{opacity:1;text-decoration:underline}
.footerSmall{opacity:0.85;font-size:13px}
.footerBottom{
  margin-top:20px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.12);
  display:flex;
  flex-direction:column;
  gap:8px;
  opacity:0.9;
  font-size:13px;
}

@media (min-width: 860px){
  .nav{display:flex}
  .heroGrid{
    grid-template-columns:1.05fr 0.95fr;
    padding:52px 0 34px;
    align-items:center;
  }
  .heroTitle{font-size:56px}
  .heroButtons{flex-direction:row;align-items:center}
  .heroImage{height:380px}
  .cardsGrid{grid-template-columns:1fr 1fr;gap:22px}
  .getStartedGrid{grid-template-columns:1fr 1fr}
  .contactButtons{grid-template-columns:1fr 1fr}
  .footerGrid{grid-template-columns:1.2fr 0.9fr 0.9fr 0.9fr}
  .footerBottom{flex-direction:row;justify-content:space-between;align-items:center}
}

@media (max-width: 859px){
  .brandLogo{
    height:54px;
    max-width:220px;
  }
  .heroLogo{
    max-width:420px;
  }
  .headerActions .btn{
    padding:10px 14px;
    font-size:13px;
  }
}

@media (max-width: 640px){
  .headerInner{
    flex-wrap:wrap;
    justify-content:center;
  }
  .brand{
    width:100%;
    justify-content:center;
  }
  .headerActions{
    width:100%;
    justify-content:center;
  }
  .brandLogo{
    height:58px;
    max-width:260px;
  }
  .heroLogo{
    max-width:100%;
    margin:0 auto 18px;
  }
  .heroTitle{
    font-size:38px;
  }
  .heroButtons{
    width:100%;
  }
  .btnWide{
    min-width:0;
    width:100%;
  }
}