:root{
  --navy-950:#0a1930;
  --navy-900:#0d2142;
  --navy-800:#12305e;
  --blue-600:#1650c9;
  --blue-500:#1f63e8;
  --blue-100:#e8effc;
  --slate-600:#4b5872;
  --slate-400:#8996ac;
  --line:#e2e7f0;
  --bg-soft:#f4f6fb;
  --white:#ffffff;

  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--navy-950);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:var(--font-display); font-weight:600; letter-spacing:-0.01em; color:var(--navy-950);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1340px; margin:0 auto; padding:0 40px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

.eyebrow{
  font-size:13px; font-weight:600; color:var(--blue-600);
  text-transform:uppercase; letter-spacing:0.06em; margin-bottom:14px; display:block;
}

/* ---------- NAV ---------- */
header{position:sticky; top:0; z-index:100; background:var(--white); border-bottom:1px solid var(--line);}
.nav{max-width:1340px; margin:0 auto; padding:16px 40px; display:flex; align-items:center; justify-content:space-between;}
.nav-logo{display:flex; align-items:center; gap:9px;}
.nav-logo img{height:34px; width:auto;}
.nav-logo span{font-family:var(--font-display); font-weight:700; font-size:16px; color:var(--navy-950);}
.nav-links{display:flex; gap:26px; font-size:14.5px; font-weight:500;}
.nav-links a{color:var(--navy-800); padding:6px 0; position:relative;}
.nav-links a:hover{color:var(--blue-600);}
.nav-cta{
  background:var(--blue-600); color:var(--white); font-size:14px; font-weight:600;
  padding:11px 20px; border-radius:6px; transition:background .2s ease;
}
.nav-cta:hover{background:var(--navy-900);}
@media (max-width:920px){ .nav-links{display:none;} }

/* ---------- HERO (photo split) ---------- */
.hero{background:var(--white); padding:0 0 70px;}
.hero-inner{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:var(--navy-950);
  border-radius:0 0 16px 16px;
  overflow:hidden;
}
@media (max-width:860px){ .hero-inner{grid-template-columns:1fr;} }
.hero-copy{padding:64px 56px; color:var(--white);}
.hero-copy h1{font-size:clamp(30px,3.6vw,44px); line-height:1.15; color:var(--white); margin-bottom:20px;}
.hero-copy p.lede{font-size:16.5px; color:#c3cee3; max-width:44ch; margin-bottom:14px;}
.hero-copy p.sub{font-size:15px; color:#93a3c2; max-width:48ch; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.btn-primary{
  background:var(--blue-600); color:var(--white); font-size:14.5px; font-weight:600;
  padding:13px 24px; border-radius:6px; display:inline-block; transition:background .2s ease;
  border:1px solid var(--blue-600);
}
.btn-primary:hover{background:#0f3fa3;}
.btn-outline{
  background:transparent; color:var(--white); font-size:14.5px; font-weight:600;
  padding:13px 24px; border-radius:6px; border:1px solid rgba(255,255,255,0.35);
  display:inline-block; transition:border-color .2s ease, background .2s ease;
}
.btn-outline:hover{background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.6);}
.btn-outline.dark{color:var(--navy-950); border-color:var(--line);}
.btn-outline.dark:hover{background:var(--bg-soft);}

/* ---------- PHOTO PLACEHOLDER ---------- */
.photo-panel{
  position:relative; background:
    linear-gradient(135deg, rgba(22,80,201,0.16), rgba(10,25,48,0.06)),
    repeating-linear-gradient(45deg, rgba(10,25,48,0.035) 0 2px, transparent 2px 14px);
  min-height:280px;
  display:flex; align-items:center; justify-content:center;
  border-left:1px solid var(--line);
}
.photo-panel .ph-icon{
  width:64px; height:64px; border-radius:50%; background:rgba(22,80,201,0.12);
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.photo-panel .ph-label{
  font-size:12.5px; color:var(--slate-600); text-align:center; max-width:180px; font-weight:500;
}
.photo-panel-content{display:flex; flex-direction:column; align-items:center;}
.hero .photo-panel{border-left:1px solid rgba(255,255,255,0.08); min-height:100%;}

/* ---------- WHAT WE DO / CARD GRID ---------- */
.cardgrid-section{padding:80px 0;}
.section-head{max-width:640px; margin:0 auto 48px;}
.section-head.center{text-align:center; margin-left:auto; margin-right:auto;}
.section-head h2{font-size:clamp(26px,3.2vw,34px); margin-bottom:14px;}
.section-head p{color:var(--slate-600); font-size:16px;}

.cardgrid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
@media (max-width:860px){ .cardgrid{grid-template-columns:1fr;} }
.iconcard{
  background:var(--white); border:1px solid var(--line); border-radius:10px; padding:30px 26px;
  transition:box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.iconcard:hover{box-shadow:0 20px 40px -24px rgba(10,25,48,0.2); border-color:var(--blue-500); transform:translateY(-3px);}
.iconcard .icn{
  width:46px; height:46px; border-radius:9px; background:var(--blue-100);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.iconcard h3{font-size:18px; margin-bottom:10px;}
.iconcard p{font-size:14.5px; color:var(--slate-600); margin-bottom:16px;}
.iconcard a{font-size:13.5px; font-weight:600; color:var(--blue-600);}
.iconcard a:hover{text-decoration:underline;}

/* ---------- SPLIT CTA (photo + copy, colored) ---------- */
.split-cta{padding:0 0 80px;}
.split-cta-inner{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:0; border-radius:14px; overflow:hidden;
  background:var(--navy-950);
}
@media (max-width:860px){ .split-cta-inner{grid-template-columns:1fr;} }
.split-cta-copy{padding:56px 52px; color:var(--white);}
.split-cta-copy h2{color:var(--white); font-size:clamp(22px,2.6vw,30px); margin-bottom:16px; max-width:20ch;}
.split-cta-copy p{color:#b9c5dc; font-size:15.5px; margin-bottom:22px; max-width:48ch;}
.split-cta-copy ul{list-style:none; margin-bottom:26px;}
.split-cta-copy li{font-size:14.5px; color:#dbe4f3; padding:6px 0; display:flex; gap:10px; align-items:flex-start;}
.split-cta-copy li::before{content:"✓"; color:#5fa8ff; font-weight:700;}

/* ---------- WHY WORK WITH US (icon row) ---------- */
.iconrow-section{padding:70px 0;}
.iconrow{display:grid; grid-template-columns:repeat(5,1fr); gap:20px; text-align:center;}
@media (max-width:920px){ .iconrow{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .iconrow{grid-template-columns:1fr;} }
.iconrow .item .icn{
  width:52px; height:52px; border-radius:50%; background:var(--blue-100); margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
}
.iconrow .item h4{font-size:15px; margin-bottom:6px;}
.iconrow .item p{font-size:13px; color:var(--slate-600);}

/* ---------- PROCESS STEPS ---------- */
.process-section{padding:70px 0;}
.process-row{
  display:grid; grid-auto-flow:column; grid-auto-columns:1fr; gap:0; align-items:start;
  overflow-x:auto; padding-bottom:8px;
}
@media (max-width:760px){ .process-row{grid-auto-flow:row; grid-auto-columns:unset;} }
.process-step{position:relative; padding:0 14px; text-align:center;}
.process-step .num{
  width:44px; height:44px; border-radius:50%; background:var(--navy-950); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700;
  font-size:14px; margin:0 auto 14px; position:relative; z-index:1;
}
.process-step h4{font-size:14.5px; margin-bottom:6px;}
.process-step p{font-size:12.5px; color:var(--slate-600); max-width:22ch; margin:0 auto;}
.process-connector{
  position:absolute; top:22px; left:50%; width:100%; height:2px; background:var(--line); z-index:0;
}
.process-step:last-child .process-connector{display:none;}

/* ---------- DARK BAND ---------- */
.darkband{background:var(--navy-950); padding:64px 0; border-radius:14px; color:var(--white);}
.darkband-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
@media (max-width:760px){ .darkband-grid{grid-template-columns:1fr 1fr;} }
.darkband .item{text-align:center;}
.darkband .icn{
  width:46px; height:46px; border-radius:10px; background:rgba(255,255,255,0.08); margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
}
.darkband h4{color:var(--white); font-size:15px; margin-bottom:6px;}
.darkband p{color:#9fb0cc; font-size:12.5px;}

/* ---------- BLUE CTA STRIP ---------- */
.bluecta{background:var(--blue-600); border-radius:14px; padding:52px 56px; color:var(--white); display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap;}
.bluecta h2{color:var(--white); font-size:clamp(20px,2.4vw,26px); max-width:26ch;}
.bluecta .btn-outline{border-color:rgba(255,255,255,0.5);}

/* ---------- COMPLIANCE LIST / TWO COL ---------- */
.twocol-section{padding:70px 0;}
.twocol{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
@media (max-width:860px){ .twocol{grid-template-columns:1fr; gap:32px;} }
.checklist{list-style:none;}
.checklist li{font-size:15px; color:var(--navy-800); padding:8px 0; display:flex; gap:10px; align-items:flex-start;}
.checklist li::before{content:"✓"; color:var(--blue-600); font-weight:700;}

/* ---------- STEP-DOT LIST (mission/vision/values style) ---------- */
.pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:44px;}
@media (max-width:760px){ .pillars{grid-template-columns:1fr;} }
.pillar .icn{
  width:42px; height:42px; border-radius:8px; background:var(--blue-100); margin-bottom:14px;
  display:flex; align-items:center; justify-content:center;
}
.pillar h4{font-size:16px; margin-bottom:8px;}
.pillar p{font-size:14px; color:var(--slate-600);}
.pillar ul{list-style:none; margin-top:4px;}
.pillar li{font-size:14px; color:var(--slate-600); padding:3px 0;}

/* ---------- CONTACT FORM ---------- */
.contact-section{padding:70px 0;}
.contact-layout{display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px;}
@media (max-width:900px){ .contact-layout{grid-template-columns:1fr;} }
.contact-form-card{background:var(--bg-soft); border:1px solid var(--line); border-radius:14px; padding:36px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
@media (max-width:520px){ .form-row{grid-template-columns:1fr;} }
.field{display:flex; flex-direction:column; gap:7px;}
.field label{font-size:13px; font-weight:600; color:var(--navy-800);}
.field input, .field select, .field textarea{
  font-family:var(--font-body); font-size:15px; color:var(--navy-950);
  background:var(--white); border:1px solid var(--line); border-radius:7px; padding:12px 13px; resize:vertical;
}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--blue-500); outline:none;}
form button.submit{
  font-size:14.5px; font-weight:600; background:var(--blue-600); color:var(--white);
  padding:14px 26px; border:none; border-radius:7px; cursor:pointer; transition:background .2s ease; margin-top:6px;
}
form button.submit:hover{background:#0f3fa3;}

.contact-info-card{padding:8px;}
.contact-info-card h3{font-size:18px; margin-bottom:18px;}
.info-row{display:flex; gap:14px; padding:16px 0; border-top:1px solid var(--line);}
.info-row:last-child{border-bottom:1px solid var(--line);}
.info-row .icn{
  width:38px; height:38px; border-radius:8px; background:var(--blue-100); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.info-row .lbl{font-size:12px; color:var(--slate-400); font-weight:600; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:3px;}
.info-row .val{font-size:14.5px; color:var(--navy-950);}
.contact-photo{margin-top:22px; border-radius:12px; overflow:hidden;}

/* ---------- BREADCRUMB / PAGE HEAD ---------- */
.page-head{padding:44px 0 8px;}
.crumb{font-size:12.5px; color:var(--slate-400); margin-bottom:14px; display:block;}
.crumb a{color:var(--blue-600);}
.crumb a:hover{text-decoration:underline;}

/* ---------- FOOTER ---------- */
footer{background:var(--navy-950); color:#a9b6cf; padding:60px 0 28px; margin-top:80px;}
.foot-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:36px; margin-bottom:48px;}
@media (max-width:760px){ .foot-grid{grid-template-columns:1fr 1fr; row-gap:32px;} }
.foot-brand{display:flex; align-items:center; gap:9px; margin-bottom:14px;}
.foot-brand img{height:30px; width:auto; filter:brightness(0) invert(1);}
.foot-brand span{font-family:var(--font-display); font-weight:700; color:var(--white); font-size:15px;}
footer .foot-desc{font-size:13.5px; color:#94a3bf; max-width:32ch;}
footer h5{font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:#6f81a3; margin-bottom:15px; font-weight:700;}
footer ul{list-style:none;}
footer li{margin-bottom:9px; font-size:13.5px;}
footer a:hover{color:var(--white);}
.foot-social{
  width:34px; height:34px; border-radius:7px; background:rgba(255,255,255,0.08);
  display:inline-flex; align-items:center; justify-content:center; margin-top:6px;
}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,0.1); padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; color:#7688a8;
}

section.pad{padding:80px 0;}
.section-divider{border-top:1px solid var(--line);}

/* ---------- REAL PHOTOS ---------- */
.photo-img{
  width:100%; height:100%; object-fit:cover; display:block; min-height:280px;
}
.photo-frame{
  border-radius:14px; overflow:hidden; border:1px solid var(--line);
  min-height:280px;
}
.photo-frame .photo-img{min-height:280px;}
.hero-photo{min-height:340px; overflow:hidden;}
.hero-photo .photo-img{min-height:340px; height:100%;}
.split-photo{overflow:hidden;}
.split-photo .photo-img{height:100%; min-height:300px;}

/* ---------- REAL PHOTOS ---------- */
.photo-img{
  width:100%; height:100%; object-fit:cover; display:block; min-height:280px;
}
.hero-inner .photo-img{min-height:340px;}
.contact-photo .photo-img{min-height:220px; max-height:260px;}
