
:root{
  --navy:#0a3b75;
  --navy-deep:#062a56;
  --blue:#0a86e8;
  --cyan:#18bef2;
  --ink:#0b2a4c;
  --muted:#64778d;
  --line:#dbe7ef;
  --surface:#f5f9fc;
  --white:#fff;
  --shadow:0 24px 70px rgba(6,42,86,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  background:#eef6fb;
  border-radius:6px;
  padding:2px 6px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:10px clamp(18px,5vw,72px);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(219,231,239,.92);
}
.brand{
  width:min(320px,52vw);
  height:58px;
  display:flex;
  align-items:center;
}
.brand img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
.nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:750;
}
.nav a{color:#405973}
.nav a:hover{color:var(--blue)}
.menu-button{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 15px;
  color:var(--blue);
  font-weight:850;
}

.hero{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:0.94fr 1.06fr;
  gap:56px;
  align-items:center;
  min-height:78vh;
  padding:clamp(74px,9vw,130px) clamp(20px,6vw,88px);
  background:
    radial-gradient(circle at 85% 18%, rgba(24,190,242,.15), transparent 30%),
    linear-gradient(180deg,#fff,#f8fbfd);
}
.hero:after{
  content:"";
  position:absolute;
  right:-240px;
  top:-230px;
  width:650px;
  height:650px;
  border-radius:50%;
  border:1px solid rgba(10,134,232,.08);
}
.hero-copy,.hero-visual{position:relative;z-index:2}
.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  color:var(--blue);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.eyebrow:before{
  content:"";
  width:28px;
  height:2px;
  background:var(--cyan);
}
h1,h2,h3{margin:0;line-height:1.07}
h1{
  font-size:clamp(44px,6vw,80px);
  letter-spacing:-.05em;
}
h2{
  font-size:clamp(37px,4.7vw,60px);
  letter-spacing:-.04em;
}
.hero-copy>p{
  font-size:clamp(17px,1.55vw,21px);
  color:var(--muted);
  max-width:680px;
  margin:24px 0 30px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.button{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 23px;
  border-radius:14px;
  font-weight:850;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
}
.button.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--blue) 72%,var(--cyan));
  box-shadow:0 13px 30px rgba(10,134,232,.18);
}
.button.secondary{
  background:#fff;
  border-color:var(--line);
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:32px;
}
.hero-points span{
  padding:7px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  font-weight:800;
  color:#546c82;
}

.hero-card{
  position:relative;
  padding:14px;
  border-radius:30px;
  border:1px solid rgba(219,231,239,.95);
  background:linear-gradient(180deg,#fff,#f6fbff);
  box-shadow:var(--shadow);
}
.hero-card img{
  width:100%;
  border-radius:22px;
}
.hero-caption{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.caption-chip{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.caption-chip strong{
  display:block;
  font-size:12px;
  color:var(--navy);
  letter-spacing:.12em;
}
.caption-chip span{
  display:block;
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
}

.section{
  padding:clamp(72px,8vw,116px) clamp(20px,6vw,88px);
}
.section-heading{
  max-width:780px;
  margin-bottom:44px;
}
.section-heading p{
  color:var(--muted);
  font-size:18px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  min-height:360px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  transition:.22s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:48px;
}
.card-number{
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  color:var(--cyan);
}
.service-mark{
  font-size:10px;
  font-weight:900;
  letter-spacing:.13em;
  padding:7px 9px;
  border-radius:999px;
  background:#eef7fd;
  color:var(--blue);
}
.card h3{
  font-size:28px;
  letter-spacing:-.025em;
}
.card p{
  color:var(--muted);
  min-height:102px;
}
.service-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:18px 0 24px;
}
.service-tags span{
  font-size:10px;
  font-weight:800;
  padding:6px 8px;
  border:1px solid var(--line);
  border-radius:999px;
}
.card a{
  font-weight:850;
  color:var(--navy);
}
.card a span{color:var(--cyan)}
.featured{
  background:linear-gradient(155deg,#062d58,#084779);
  color:#fff;
  border:none;
}
.featured p{color:#d3e1ec}
.featured a{color:#fff}
.featured .service-mark{
  background:rgba(255,255,255,.10);
  color:#7de0ff;
  border:1px solid rgba(255,255,255,.12);
}
.featured .service-tags span{
  border-color:rgba(255,255,255,.17);
  color:#d8e7f2;
}

.split-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  background:var(--surface);
}
.about-copy p{
  margin:0 0 18px;
  color:#536a81;
  font-size:18px;
}
.about-copy strong{color:var(--navy)}

.dark-section{
  color:#fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(24,190,242,.18), transparent 30%),
    linear-gradient(135deg,#051e3c,#083867 64%,#0a4c84);
}
.dark-section .eyebrow{color:#78ddfb}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.feature{
  padding:25px;
  border-radius:20px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
.feature-symbol{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(24,190,242,.14);
  color:#6edbfb;
  font-size:21px;
  margin-bottom:22px;
}
.feature h3{font-size:21px}
.feature p{
  color:#d2e0eb;
  margin-bottom:0;
}

.coverage{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}
.coverage>div>p{
  color:var(--muted);
  font-size:17px;
}
.panel{
  padding:28px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 50px rgba(6,42,86,.07);
}
label{display:block}
label>span{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#526982;
}
input,select,textarea{
  width:100%;
  font:inherit;
  color:var(--ink);
  background:#fbfdff;
  border:1px solid var(--line);
  border-radius:12px;
  outline:none;
  padding:14px 15px;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--cyan);
  box-shadow:0 0 0 4px rgba(24,190,242,.10);
}
.coverage .button{
  width:100%;
  margin-top:14px;
}
.form-result{
  min-height:22px;
  margin:12px 0 0;
  color:#62768c;
  font-size:13px;
}

.contact{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:56px;
  background:linear-gradient(180deg,#fbfdff,#f4f9fc);
}
.contact-copy>p{
  color:var(--muted);
  font-size:17px;
}
.contact-list{
  display:grid;
  gap:10px;
  margin-top:30px;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.contact-icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:12px;
  background:#edf7fd;
  color:var(--blue);
  font-weight:900;
  font-size:12px;
}
.contact-item small{
  display:block;
  color:#708298;
  font-size:11px;
  font-weight:750;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.contact-item strong{
  display:block;
  color:var(--ink);
  font-size:14px;
  margin-top:2px;
  word-break:break-word;
}
.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.contact .panel>label{
  margin-bottom:14px;
}

footer{
  display:grid;
  grid-template-columns:260px 1fr auto;
  align-items:center;
  gap:34px;
  padding:28px clamp(20px,6vw,88px);
  background:linear-gradient(135deg,#051f3f,#072e59);
  color:#d7e5ef;
}
.footer-brand{
  height:58px;
  display:flex;
  align-items:center;
}
.footer-brand img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
.footer-contact{
  display:flex;
  flex-direction:column;
}
.footer-contact strong{
  font-size:14px;
  color:#fff;
}
.footer-contact span{
  font-size:12px;
  color:#a9bdce;
  margin-top:2px;
}
.footer-copy{
  font-size:11px;
  color:#9db2c4;
  white-space:nowrap;
}

@media(max-width:980px){
  .hero,.split-section,.coverage,.contact{
    grid-template-columns:1fr;
  }
  .cards{
    grid-template-columns:1fr;
  }
  .card{
    min-height:auto;
  }
  .feature-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-visual{
    max-width:760px;
  }
  footer{
    grid-template-columns:220px 1fr;
  }
  .footer-copy{
    grid-column:1/-1;
  }
}
@media(max-width:720px){
  .site-header{
    min-height:72px;
    padding:9px 16px;
  }
  .brand{
    width:250px;
    height:50px;
  }
  .menu-button{
    display:inline-flex;
  }
  .nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:72px;
    flex-direction:column;
    align-items:stretch;
    padding:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:17px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .hero{
    padding-top:62px;
  }
  .hero-caption{
    grid-template-columns:1fr;
  }
  .feature-grid{
    grid-template-columns:1fr;
  }
  .field-row{
    grid-template-columns:1fr;
  }
  footer{
    grid-template-columns:1fr;
    gap:16px;
  }
  .footer-brand{
    width:230px;
    height:54px;
  }
}
