:root{
  --navy:#16325b;
  --navy-deep:#0f2747;
  --blue:#2f5d95;
  --blue-soft:#edf3fb;
  --white:#ffffff;
  --text:#1d2430;
  --muted:#5f6875;
  --border:#d9e1eb;
  --shadow:0 14px 38px rgba(15,39,71,.10);
  --shadow-soft:0 22px 44px rgba(15,39,71,.08);
  --radius:22px;
  --max:1200px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f8fc;
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}

.skip-link:focus{
  left:1rem;
  top:1rem;
  z-index:2000;
  background:#fff;
  color:#000;
  padding:.75rem 1rem;
  border:2px solid #000;
  border-radius:10px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(8px);
}

.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.05rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:1rem;
  min-width:0;
}

.brand-logo{
  width:132px;
  height:auto;
  flex-shrink:0;
}

.brand-text h1{
  margin:0;
  font-size:1.35rem;
  color:var(--navy);
  letter-spacing:.01em;
}

.brand-text p{
  margin:.2rem 0 0;
  color:var(--muted);
  font-size:.96rem;
}

.nav-list{
  list-style:none;
  display:flex;
  gap:1.35rem;
  padding:0;
  margin:0;
}

.nav-list a{
  font-weight:700;
  color:var(--navy);
  padding:.3rem 0;
  position:relative;
}

.nav-list a:hover,
.nav-list a[aria-current="page"]{
  color:var(--blue);
}

.nav-list a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.2rem;
  width:100%;
  height:2px;
  background:var(--blue);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after{
  transform:scaleX(1);
}

/* Shared page sections */
.page-hero{
  background:linear-gradient(135deg, rgba(22,50,91,.98), rgba(35,74,128,.95));
  color:#fff;
  padding:5rem 0 4.2rem;
}

.page-hero-inner{
  max-width:820px;
}

.eyebrow{
  margin:0 0 1rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.93rem;
  font-weight:700;
}

.page-hero h2{
  margin:0 0 1rem;
  font-size:clamp(2.5rem, 5vw, 4.5rem);
  line-height:1.08;
}

.page-hero p{
  margin:0;
  max-width:70ch;
  color:rgba(255,255,255,.92);
  font-size:1.06rem;
}

.section{
  padding:5rem 0;
}

.section-title{
  margin:.55rem 0 1rem;
  font-size:clamp(2rem, 3.2vw, 3rem);
  line-height:1.16;
  color:var(--navy);
}

.section-intro{
  color:var(--muted);
  max-width:62ch;
  margin:0 0 1.25rem;
  font-size:1.05rem;
}

.feature-label{
  margin:0;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:.88rem;
  font-weight:700;
  color:var(--blue);
}

/* General grids/cards */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.3rem;
}

.card{
  background:#fff;
  border:1px solid rgba(21,50,92,.08);
  border-radius:var(--radius);
  padding:1.35rem;
  box-shadow:var(--shadow);
}

.card h3{
  margin:0 0 .6rem;
  color:var(--navy);
  font-size:1.08rem;
}

.card p{
  margin:0;
  color:var(--muted);
}

.panel{
  background:#fff;
  border:1px solid rgba(21,50,92,.08);
  border-radius:28px;
  padding:1.6rem;
  box-shadow:var(--shadow);
}

.image-frame img,
.feature-image{
  width:100%;
  min-height:420px;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:30px;
  box-shadow:var(--shadow);
}

/* Buttons */
.btn{
  display:inline-block;
  padding:1rem 1.45rem;
  border-radius:999px;
  font-weight:700;
  transition:.22s ease;
}

.btn-primary{
  background:#fff;
  color:var(--navy);
  box-shadow:0 12px 30px rgba(0,0,0,.14);
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#eef4ff;
}

.btn-secondary{
  border:2px solid rgba(255,255,255,.88);
  color:#fff;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(2px);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.8rem;
}

/* Contact blocks */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}

.contact-list{
  list-style:none;
  padding:0;
  margin:1rem 0 0;
  display:grid;
  gap:.8rem;
}

.contact-list li{
  color:var(--text);
}

.contact-list strong{
  color:var(--navy);
}

/* Footer */
.site-footer{
  background:linear-gradient(180deg, #102746 0%, #0b1d35 100%);
  color:#fff;
  padding:3.9rem 0 1.4rem;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr 1fr;
  gap:2.5rem;
  align-items:start;
}

.footer-brand{
  max-width:360px;
}

.footer-logo-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1.15rem 1.45rem;
  margin-bottom:1.15rem;
  isolation:isolate;
}

.footer-splash{
  position:absolute;
  background:rgba(255,255,255,.94);
  z-index:1;
  filter:blur(.3px);
}

.footer-splash-one{
  width:170px;
  height:92px;
  left:8px;
  top:14px;
  border-radius:42% 58% 47% 53% / 52% 40% 60% 48%;
  transform:rotate(-7deg);
}

.footer-splash-two{
  width:54px;
  height:54px;
  left:-6px;
  top:26px;
  border-radius:58% 42% 61% 39% / 43% 55% 45% 57%;
}

.footer-splash-three{
  width:40px;
  height:40px;
  right:-4px;
  top:18px;
  border-radius:44% 56% 41% 59% / 61% 37% 63% 39%;
}

.footer-logo{
  position:relative;
  z-index:3;
  width:180px;
  height:auto;
}

.footer-brand h2{
  margin:0 0 .75rem;
  font-size:1.45rem;
}

.footer-brand p{
  margin:0;
  color:rgba(255,255,255,.9);
  line-height:1.7;
}

.footer-links h3,
.footer-contact h3{
  margin:0 0 1rem;
  font-size:1.05rem;
}

.footer-links ul,
.footer-contact ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.75rem;
}

.footer-links a{
  display:inline-flex;
  align-items:center;
  font-weight:600;
  color:rgba(255,255,255,.92);
  transition:transform .2s ease, color .2s ease;
}

.footer-links a::before{
  content:none;
}

.footer-links a:hover{
  transform:translateX(3px);
  color:#fff;
}

.footer-contact li{
  color:rgba(255,255,255,.92);
  line-height:1.6;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:2.35rem;
  padding-top:1rem;
  text-align:center;
  color:rgba(255,255,255,.86);
}

/* Responsive */
@media (max-width:1024px){
  .two-col,
  .card-grid,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .image-frame img,
  .feature-image{
    min-height:360px;
  }
}

@media (max-width:900px){
  .site-header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-list{
    flex-wrap:wrap;
  }

  .section{
    padding:4.2rem 0;
  }

  .page-hero{
    padding:4.5rem 0 3.8rem;
  }
}

@media (max-width:640px){
  .brand-logo{width:112px}
  .section{padding:3.5rem 0}
  .image-frame img,
  .feature-image{
    min-height:260px;
  }
  .footer-logo{width:150px}
}
