:root{
  --red:#a40120;
  --blue:#081f3f;
  --light:#f5f7fb;
  --text:#172033;
  --muted:#657085;
  --white:#ffffff;
  --shadow:0 18px 45px rgba(8,31,63,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--light);
}
a{color:inherit;text-decoration:none}
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(8,31,63,.08);
}
.nav{
  max-width:1120px;
  margin:0 auto;
  padding:16px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--blue);
}
.brand img{width:42px;height:42px}
.nav-links{display:flex;gap:22px;color:var(--blue);font-weight:600}
.hero{
  max-width:1120px;
  margin:0 auto;
  padding:82px 22px 56px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:38px;
  align-items:center;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--red);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
}
h1,h2,h3,p{margin-top:0}
h1{
  color:var(--blue);
  font-size:clamp(40px,6vw,68px);
  line-height:.98;
  margin-bottom:22px;
}
h2{
  color:var(--blue);
  font-size:clamp(28px,4vw,42px);
  margin-bottom:16px;
}
.lead{
  font-size:20px;
  line-height:1.6;
  color:var(--muted);
  max-width:690px;
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.btn{
  padding:15px 22px;
  border-radius:12px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.primary{background:var(--red);color:white}
.secondary{background:white;color:var(--blue);border:1px solid rgba(8,31,63,.16)}
.hero-card{
  background:linear-gradient(145deg,var(--blue),#0d315f);
  color:white;
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.hero-card img{width:170px;max-width:70%;margin-bottom:24px}
.hero-card h2{color:white;margin-bottom:8px}
.hero-card p{color:rgba(255,255,255,.82);line-height:1.55}
.section{
  max-width:1120px;
  margin:0 auto;
  padding:60px 22px;
}
.section-title{text-align:center;margin-bottom:34px}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  background:white;
  border-radius:20px;
  padding:26px;
  box-shadow:0 10px 28px rgba(8,31,63,.08);
  border:1px solid rgba(8,31,63,.06);
}
.icon{font-size:34px;margin-bottom:18px}
.card h3{color:var(--blue);margin-bottom:10px}
.card p{color:var(--muted);line-height:1.55}
.about{
  max-width:1120px;
  margin:34px auto;
  padding:42px 22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  background:white;
  border-radius:30px;
  box-shadow:var(--shadow);
}
.about p{color:var(--muted);line-height:1.65;font-size:18px}
.checklist{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}
.checklist li{
  background:var(--light);
  padding:16px 18px;
  border-radius:14px;
  color:var(--blue);
  font-weight:700;
}
.checklist li::before{content:"✓";color:var(--red);margin-right:10px}
.contact{
  max-width:1120px;
  margin:0 auto;
  padding:70px 22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}
.contact p{color:var(--muted);font-size:18px}
.contact-card{
  background:var(--blue);
  color:white;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-line{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.contact-line:last-child{border-bottom:0}
.contact-line span{color:rgba(255,255,255,.76)}
.footer{
  background:var(--blue);
  color:white;
  text-align:center;
  padding:28px 22px;
}
.footer img{width:52px;display:block;margin:0 auto 10px}
.footer p{margin:0;color:rgba(255,255,255,.72)}
@media (max-width:820px){
  .nav{align-items:flex-start}
  .nav-links{font-size:14px;gap:12px}
  .hero,.about,.contact{grid-template-columns:1fr}
  .hero{padding-top:54px}
  .grid{grid-template-columns:1fr}
  .contact-line{flex-direction:column;gap:6px}
}
