
:root{
  --navy:#0b2239;
  --blue:#0f6f8f;
  --teal:#1aa6a6;
  --sand:#f4efe7;
  --ink:#1d2939;
  --muted:#667085;
  --white:#ffffff;
  --line:#d8e2e7;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--ink);
  line-height:1.65;
  background:#fff;
}
a{color:inherit}
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:1180px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 22px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  color:var(--navy);
  letter-spacing:.2px;
}
.logo-mark{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--teal));
  display:grid;place-items:center;color:white;font-weight:900;
}
.menu{display:flex;gap:22px;align-items:center}
.menu a{text-decoration:none;color:#344054;font-weight:600;font-size:15px}
.menu a:hover{color:var(--blue)}
.cta{
  background:var(--navy);
  color:white!important;
  padding:10px 16px;
  border-radius:999px;
}
.hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(11,34,57,.9),rgba(15,111,143,.62)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color:white;
}
.hero-inner{
  max-width:1180px;
  margin:auto;
  padding:90px 22px;
}
.eyebrow{
  color:#a7f3f0;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:13px;
}
h1{
  font-size:clamp(42px,6vw,76px);
  line-height:1.02;
  margin:12px 0 22px;
  max-width:920px;
}
.hero p{
  font-size:21px;
  max-width:760px;
  color:#e7f4f7;
}
.buttons{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.btn{
  display:inline-block;
  text-decoration:none;
  padding:13px 20px;
  border-radius:999px;
  font-weight:800;
}
.btn.primary{background:white;color:var(--navy)}
.btn.secondary{border:1px solid rgba(255,255,255,.5);color:white}
.section{
  max-width:1180px;
  margin:auto;
  padding:82px 22px;
}
.section.alt{background:var(--sand);max-width:none}
.section.alt .inner{max-width:1180px;margin:auto}
.kicker{color:var(--blue);font-weight:800;text-transform:uppercase;letter-spacing:.1em;font-size:13px}
h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.12;
  color:var(--navy);
  margin:10px 0 18px;
}
.lead{font-size:20px;color:#475467;max-width:850px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:34px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:36px;align-items:center}
.card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  background:white;
  box-shadow:0 12px 36px rgba(16,24,40,.06);
}
.card h3{margin-top:0;color:var(--navy);font-size:22px}
.icon{
  width:48px;height:48px;border-radius:14px;
  background:#e6f7f7;
  display:grid;place-items:center;
  color:var(--blue);
  font-size:24px;
  margin-bottom:18px;
}
.image-card img{
  width:100%;
  border-radius:26px;
  box-shadow:0 22px 55px rgba(11,34,57,.2);
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}
.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  padding:22px;
  border-radius:20px;
}
.stat strong{display:block;font-size:34px}
.band{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;
}
.band h2{color:white}
.band .lead{color:#d9f0f3}
.list{padding-left:20px}
.list li{margin:10px 0}
.footer{
  background:#071827;
  color:#cbd5e1;
  padding:42px 22px;
}
.footer-inner{
  max-width:1180px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer a{color:#cbd5e1;text-decoration:none}
.page-hero{
  background:
    linear-gradient(90deg,rgba(11,34,57,.88),rgba(15,111,143,.58)),
    url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color:white;
  padding:92px 22px;
}
.page-hero .inner{max-width:1180px;margin:auto}
.page-hero h1{font-size:clamp(38px,5vw,64px)}
.contact-box{
  background:var(--navy);
  color:white;
  border-radius:26px;
  padding:34px;
}
.contact-box h3{margin-top:0}
.form{
  display:grid;
  gap:14px;
}
input, textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  font:inherit;
}
textarea{min-height:130px}
button{
  border:0;
  background:var(--blue);
  color:white;
  font-weight:800;
  padding:14px 18px;
  border-radius:999px;
  cursor:pointer;
}
@media(max-width:860px){
  .menu{display:none}
  .grid-3,.grid-2,.stats{grid-template-columns:1fr}
  .hero{min-height:auto}
}
