:root{
  --blue:#0052a8;
  --blue-dark:#003f84;
  --blue-soft:#eaf3ff;
  --red:#e30613;
  --text:#12304f;
  --muted:#5c6d7d;
  --white:#fff;
  --shadow:0 18px 60px rgba(0,63,132,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:#f5f9ff;
}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px clamp(18px,4vw,56px);
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,82,168,.1);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--blue-dark);
}
.brand img{
  width:62px;
  height:62px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 8px 24px rgba(0,63,132,.18);
}
.brand strong{
  display:block;
  font-size:18px;
  line-height:1.05;
  font-weight:900;
}
.brand small{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-weight:700;
}
nav{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:800;
}
nav a{
  color:var(--blue-dark);
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
}
nav a:hover{background:var(--blue-soft)}
.hero{
  padding:34px clamp(16px,4vw,64px) 28px;
  background:
    radial-gradient(circle at top right, rgba(0,82,168,.13), transparent 36%),
    linear-gradient(180deg,#fff 0%,#eef6ff 100%);
}
.hero-inner{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.88fr 1.32fr;
  gap:28px;
  align-items:center;
}
.hero-copy{
  padding:36px;
  border-radius:30px;
  background:rgba(255,255,255,.72);
  box-shadow:var(--shadow);
  border:1px solid rgba(0,82,168,.1);
}
.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  color:var(--red);
  font-weight:950;
}
h1,h2,h3{margin:0;color:var(--blue-dark)}
h1{
  font-size:clamp(44px,6vw,82px);
  line-height:.92;
  letter-spacing:-.05em;
  font-weight:950;
}
h1 span{color:var(--blue)}
.lead{
  margin:22px 0 0;
  font-size:clamp(18px,2vw,23px);
  line-height:1.45;
  color:#25435f;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:950;
  text-decoration:none;
  border:2px solid var(--blue);
}
.button.primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:#fff;
  box-shadow:0 14px 34px rgba(0,82,168,.24);
}
.button.secondary{
  color:var(--blue-dark);
  background:#fff;
}
.hero-visual img{
  width:100%;
  border-radius:30px;
  display:block;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,82,168,.12);
}
.section{
  max-width:1240px;
  margin:0 auto;
  padding:54px clamp(16px,4vw,42px);
}
.section-head{
  max-width:820px;
  margin-bottom:24px;
}
.section-head h2{
  font-size:clamp(34px,5vw,58px);
  line-height:1;
  letter-spacing:-.035em;
}
.section-head p:not(.eyebrow){
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.cards article{
  background:#fff;
  border:1px solid rgba(0,82,168,.12);
  border-radius:24px;
  padding:22px;
  box-shadow:0 10px 34px rgba(0,63,132,.09);
}
.cards h3{
  font-size:22px;
  margin-bottom:12px;
}
.cards ul{
  margin:0;
  padding-left:20px;
  color:#28445d;
  line-height:1.55;
}
.cards li+li{margin-top:7px}
.documents{
  background:#fff;
  border-radius:34px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,82,168,.1);
}
.document-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.document-card{
  background:#f7fbff;
  border:1px solid rgba(0,82,168,.12);
  border-radius:24px;
  padding:18px;
  box-shadow:0 10px 34px rgba(0,63,132,.07);
}
.document-card h3{
  font-size:26px;
  margin:0 0 14px;
}
.document-card img{
  width:100%;
  display:block;
  border-radius:18px;
  box-shadow:0 12px 32px rgba(0,63,132,.16);
  border:1px solid rgba(0,82,168,.14);
  background:#fff;
  margin-bottom:16px;
}
.contact-card{
  display:flex;
  gap:24px;
  align-items:center;
  background:linear-gradient(135deg,#fff,#eef6ff);
  border:1px solid rgba(0,82,168,.12);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.contact-card img{
  width:132px;
  height:132px;
  border-radius:24px;
  object-fit:cover;
}
.contact-card h2{
  font-size:clamp(30px,4vw,46px);
}
.contact-card p{
  font-size:18px;
  color:#28445d;
  line-height:1.5;
}
footer{
  text-align:center;
  padding:28px;
  color:var(--muted);
  border-top:1px solid rgba(0,82,168,.1);
}
@media (max-width:960px){
  .hero-inner{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .site-header{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
  nav{
    width:100%;
    overflow:auto;
    gap:8px;
  }
  .hero-copy{padding:24px}
  .cards,.document-grid{grid-template-columns:1fr}
  .contact-card{
    flex-direction:column;
    align-items:flex-start;
  }
}
