*{box-sizing:border-box}
:root{
  --blue:#1247F4;
  --deep:#0828A8;
  --yellow:#FFD21A;
  --green:#1EA44B;
  --white:#fff;
  --ink:#10204A;
  --soft:#F6F8FF;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:var(--white);
}
img{max-width:100%;display:block}
a{color:inherit}
.wrap{width:min(1120px,calc(100% - 40px));margin:auto}
.narrow{width:min(760px,100%)}
.topbar{
  background:#fff;
  border-bottom:1px solid rgba(16,32,74,.08);
  position:sticky;
  top:0;
  z-index:20;
}
.topbar-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{width:190px;height:auto}
.contact-link{
  text-decoration:none;
  font-weight:800;
  color:var(--blue);
  border:2px solid var(--blue);
  padding:10px 18px;
  border-radius:999px;
}
.hero{
  background:
    radial-gradient(circle at 10% 20%,rgba(255,255,255,.10),transparent 20%),
    linear-gradient(135deg,var(--deep),var(--blue));
  color:#fff;
  overflow:hidden;
}
.hero-grid{
  min-height:640px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:50px;
  padding:56px 0;
}
.eyebrow{
  display:inline-block;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.14em;
  color:var(--yellow);
  margin-bottom:14px;
}
.eyebrow.blue{color:var(--blue)}
.hero h1{
  font-size:clamp(3rem,7vw,6rem);
  line-height:.92;
  margin:0;
  text-transform:uppercase;
  letter-spacing:-.04em;
}
.office{
  margin:16px 0 0;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.08em;
}
.number{
  color:var(--yellow);
  font-size:clamp(4.8rem,11vw,9rem);
  line-height:.85;
  font-weight:1000;
  margin:12px 0;
  letter-spacing:-.06em;
}
.slogan{
  margin:0 0 28px;
  font-size:1.25rem;
  font-weight:800;
  text-transform:uppercase;
}
.cta{
  display:inline-block;
  background:var(--yellow);
  color:var(--deep);
  text-decoration:none;
  font-weight:900;
  padding:15px 22px;
  border-radius:12px;
}
.hero-media img{
  width:100%;
  border-radius:28px;
  box-shadow:0 28px 80px rgba(0,0,0,.28);
}
.identity-strip{
  background:var(--blue);
  overflow:hidden;
  min-height:72px;
  display:flex;
  align-items:center;
}
.identity-strip img{
  width:100%;
  height:78px;
  object-fit:cover;
}
.about{
  padding:90px 0 70px;
  background:#fff;
}
.about h2,.privacy h2{
  font-size:clamp(2rem,5vw,3.5rem);
  line-height:1;
  margin:0 0 22px;
  color:var(--blue);
}
.about p,.privacy p{
  font-size:1.15rem;
  line-height:1.7;
  margin:0;
}
.legal{
  background:var(--soft);
  padding:54px 0;
}
.legal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.legal-grid>div{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(20,50,130,.07);
}
.legal h3{margin:0 0 12px;color:var(--blue)}
.legal p{margin:7px 0;line-height:1.5}
.privacy{padding:70px 0}
footer{
  background:var(--deep);
  color:#fff;
  padding:34px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.footer-inner img{
  width:170px;
  background:#fff;
  border-radius:10px;
  padding:8px;
}
.footer-inner p{
  margin:0;
  font-size:.92rem;
  font-weight:700;
}
@media(max-width:800px){
  .wrap{width:min(100% - 28px,1120px)}
  .topbar-inner{min-height:66px}
  .brand{width:150px}
  .hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
    padding:44px 0;
    gap:34px;
  }
  .hero-copy{text-align:center}
  .hero-media{width:min(560px,100%);margin:auto}
  .legal-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;text-align:center}
}
