:root{
  --navy:#143b74;
  --text:#1b2330;
  --muted:#5f6b7a;
  --line:#e7edf5;
  --soft:#f5f8fc;
  --card:#ffffff;
  --accent:#edf5ff;
  --shadow:0 20px 50px rgba(14,34,72,.08);
  --radius:22px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:#fff;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{
  width:min(1200px,calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:80px;
  height:auto;
}

.brand-logo{
  display:block;
  width:auto;
  height:52px;
  max-height:52px;
  object-fit:contain;
}


.main-nav{
  display:flex;
  align-items:center;
  gap:2px;
}

.main-nav a{
  padding:34px 18px;
  font-size:14px;
  font-weight:700;
  color:#182230;
  transition:.2s ease;
}

.main-nav a.active,
.main-nav a:hover{
  background:#eef5ff;
  color:#1b5ebf;
}

.mobile-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  width:44px;
  height:44px;
  font-size:20px;
  cursor:pointer;
}

.mobile-nav{
  display:none;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.mobile-nav a{
  display:block;
  padding:14px 20px;
  border-top:1px solid var(--line);
  font-weight:600;
}

.hero{
  padding:64px 0 44px;
  background:
    linear-gradient(180deg, rgba(243,247,253,.9), rgba(255,255,255,1)),
    radial-gradient(circle at top left, rgba(34,101,196,.12), transparent 28%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:38px;
  align-items:center;
}

.hero-copy h1,
.page-hero h1,
h2,
h3{
  font-family:"Playfair Display", Georgia, serif;
  letter-spacing:-.02em;
}

.eyebrow,
.section-label{
  color:var(--navy);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  margin-bottom:12px;
}

.hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(40px,6vw,74px);
  line-height:.98;
}

.lede{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  max-width:680px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--navy);
  color:#fff;
}

.btn-secondary{
  background:#fff;
  border-color:var(--line);
}

.hero-card img{
  border-radius:28px;
  box-shadow:var(--shadow);
}

.hero-card{
  min-height:420px;
  border-radius:28px;
  background:#eef3f9;
  box-shadow:0 20px 50px rgba(14,34,72,.08);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-card img,
.about-image img,
.feature-media img{
  width:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:28px;
}

.section{
  padding:84px 0;
}

.section-soft{
  background:var(--soft);
}

.about-grid,
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.split-grid.reverse{
  grid-template-columns:1fr 1fr;
}

.about-image img,
.feature-media img{
  border-radius:28px;
  box-shadow:var(--shadow);
}

.about-copy h2,
.intro-grid h2,
.feature-copy h2,
.center,
h2{
  font-size:clamp(32px,4vw,52px);
  margin:0 0 16px;
}

.about-copy p,
.rich-text p,
.feature-copy p,
.info-card p,
.timeline-item p,
.cta-copy p,
.page-intro{
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}

.stat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(14,34,72,.04);
}

.stat-card strong{
  display:block;
  font-size:28px;
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  margin-bottom:8px;
}

.stat-card span{
  color:var(--muted);
  font-weight:600;
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:start;
}

.cta-band{
  background:linear-gradient(135deg,#163f7a,#245eb4);
  color:#fff;
}

.cta-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:32px;
  align-items:center;
}

.cta-copy img{
  width:72px;
  margin-bottom:16px;
  filter:none;
}

.cta-copy h2{
  font-size:clamp(34px,4vw,54px);
  margin:0 0 16px;
}

.cta-copy p{
  color:rgba(255,255,255,.86);
}

.cta-card{
  background:#fff;
  color:var(--text);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.fake-form{
  display:grid;
  gap:14px;
}

.fake-form input,
.fake-form textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  font:inherit;
}

.fake-form textarea{
  min-height:140px;
  resize:vertical;
}

.page-hero{
  min-height:430px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:end;
  padding:86px 0 54px;
  position:relative;
  color:#fff;
}

.dark-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(13,28,54,.35), rgba(13,28,54,.72));
}

.page-hero .container{
  position:relative;
  z-index:1;
}

.page-hero h1{
  font-size:clamp(40px,6vw,68px);
  margin:0 0 12px;
}

.page-intro{
  max-width:760px;
  color:rgba(255,255,255,.86);
}

.light{
  color:#dfeafc;
}

.narrow{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.timeline{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.timeline-item{
  display:flex;
  gap:16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 30px rgba(14,34,72,.04);
}

.timeline-item span{
  min-width:68px;
  height:68px;
  border-radius:18px;
  background:var(--accent);
  color:var(--navy);
  display:grid;
  place-items:center;
  font-weight:800;
}

.logo-grid,
.cert-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.two-col-cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(280px, 420px));
  justify-content:center;
  align-items:start;
  gap:28px;
  width:100%;
}

.logo-box,
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  box-shadow:0 10px 30px rgba(14,34,72,.04);
}

.logo-box{
  text-align:center;
  font-weight:800;
  color:var(--navy);
  display:grid;
  place-items:center;
  min-height:120px;
}

.info-card h2,
.info-card h3{
  font-size:30px;
  margin:0 0 12px;
}

.quote{
  font-style:italic;
  font-weight:700;
  color:var(--navy)!important;
}

.site-footer{
  background:#0f213f;
  color:#dce6f2;
  padding-top:58px;
  margin-top:0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .8fr .8fr;
  gap:28px;
  padding-bottom:34px;
}

.footer-logo{
  width:82px;
  margin-bottom:14px;
  filter:none;
}

.site-footer h3,
.site-footer h4{
  font-family:"Playfair Display", Georgia, serif;
  margin:0 0 14px;
  font-size:28px;
  color:#fff;
}

.site-footer p,
.footer-links a{
  color:#dce6f2;
  line-height:1.8;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.copyright{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0 24px;
  color:rgba(255,255,255,.72);
  font-size:14px;
}

.center{
  text-align:center;
}

@media (max-width: 960px){
  .main-nav{display:none}
  .mobile-toggle{display:block}
  .mobile-nav.open{display:block}

  .hero-grid,
  .about-grid,
  .split-grid,
  .intro-grid,
  .cta-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .stats-grid,
  .timeline,
  .logo-grid,
  .cert-grid,
  .two-col-cards{
    grid-template-columns:1fr 1fr;
  }

  .header-inner{min-height:78px}
  .brand img{width:70px}
}

@media (max-width: 640px){
  .container{
    width:min(1200px,calc(100% - 24px));
  }

  .section{
    padding:60px 0;
  }

  .stats-grid,
  .timeline,
  .logo-grid,
  .cert-grid,
  .two-col-cards{
    grid-template-columns:1fr;
  }

  .hero-copy h1,
  .page-hero h1{
    font-size:38px;
  }

  .about-copy h2,
  .intro-grid h2,
  .feature-copy h2,
  .center,
  h2{
    font-size:32px;
  }
}