
:root{
  --navy:#10243a;
  --navy-2:#07192b;
  --navy-3:#18395b;
  --fume:#f1f4f7;
  --fume-2:#e3e9ef;
  --line:rgba(16,36,58,.13);
  --text:#14283f;
  --muted:#607083;
  --white:#fff;
  --accent:#d71928;
  --shadow:0 24px 70px rgba(16,36,58,.12);
  --shadow-strong:0 34px 90px rgba(16,36,58,.20);
  --container:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter","Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit}
.svg-sprite{position:absolute;width:0;height:0;overflow:hidden}
.container{width:min(var(--container),calc(100% - 56px));margin-inline:auto}

.topbar{
  background:var(--navy-2);
  color:#dfe8f2;
  font-size:13px;
  letter-spacing:.2px;
}
.topbar__inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.topbar__left,.topbar__right{display:flex;align-items:center;gap:28px;flex-wrap:wrap}
.topbar span,.topbar a{display:inline-flex;align-items:center;gap:8px;white-space:nowrap}
.topbar svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.8}
.topbar a:hover{color:#fff}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 26px rgba(16,36,58,.06);
}
.nav{
  height:88px;
  display:flex;
  align-items:center;
  gap:30px;
}
.brand img{width:220px;height:auto}
.main-nav{
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:auto;
  color:#243a52;
  text-transform:uppercase;
  font-weight:850;
  font-size:12px;
  letter-spacing:.72px;
}
.main-nav a{
  position:relative;
  padding:35px 0;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:26px;
  width:0;
  height:2px;
  background:var(--navy);
  transition:.25s ease;
}
.main-nav a:hover::after,.main-nav a.active::after{width:100%}
.main-nav a:hover,.main-nav a.active{color:var(--navy)}
.quote-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.45px;
  font-size:12px;
  box-shadow:0 18px 38px rgba(16,36,58,.18);
  transition:.25s ease;
  white-space:nowrap;
}
.quote-btn:hover,.btn--primary:hover{transform:translateY(-2px);background:var(--navy-2)}
.quote-btn span,.btn span{font-size:22px;line-height:0}
.nav-toggle{display:none;margin-left:auto;width:44px;height:44px;border:0;background:transparent;cursor:pointer}
.nav-toggle span{display:block;height:2px;background:var(--navy);margin:7px 0;transition:.25s ease}

.hero{
  position:relative;
  padding:76px 0 46px;
  min-height:720px;
  background:
    radial-gradient(circle at 87% 18%,rgba(24,57,91,.14),transparent 32%),
    linear-gradient(120deg,#ffffff 0%,#ffffff 53%,#edf2f6 53%,#edf2f6 100%);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  right:-220px;
  top:-210px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(16,36,58,.07);
}
.hero__shape{
  position:absolute;
  pointer-events:none;
  opacity:.8;
}
.hero__shape--one{
  width:280px;height:280px;
  left:-140px;bottom:90px;
  border-radius:50%;
  border:42px solid rgba(16,36,58,.08);
}
.hero__shape--two{
  right:7%;
  bottom:94px;
  width:180px;
  height:180px;
  background:linear-gradient(135deg,rgba(16,36,58,.10),rgba(255,255,255,0));
  transform:rotate(45deg);
}
.hero__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,.95fr);
  align-items:center;
  gap:70px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  color:var(--navy-3);
  font-size:13px;
  font-weight:900;
  letter-spacing:1.4px;
  text-transform:uppercase;
}
.kicker span{
  width:34px;
  height:2px;
  background:var(--navy);
}
.hero h1{
  max-width:690px;
  margin:0;
  color:var(--navy);
  font-size:clamp(46px,5.35vw,78px);
  line-height:.98;
  letter-spacing:-2.3px;
  font-weight:950;
}
.hero__lead{
  max-width:620px;
  margin:28px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.82;
}
.hero__actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 25px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.45px;
  text-transform:uppercase;
  transition:.25s ease;
}
.btn--primary{
  background:var(--navy);
  color:#fff;
  box-shadow:0 18px 40px rgba(16,36,58,.18);
}
.btn--secondary{
  color:var(--navy);
  background:#fff;
  border:1px solid rgba(16,36,58,.18);
}
.btn--secondary:hover{
  transform:translateY(-2px);
  border-color:var(--navy);
  box-shadow:0 14px 34px rgba(16,36,58,.10);
}
.hero__mini{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  max-width:670px;
}
.hero__mini div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px;
  box-shadow:0 14px 34px rgba(16,36,58,.06);
}
.hero__mini strong{
  display:block;
  color:var(--navy);
  font-size:18px;
  margin-bottom:5px;
}
.hero__mini span{
  color:var(--muted);
  font-size:12.5px;
  line-height:1.5;
}
.hero__visual{
  position:relative;
  min-height:540px;
}
.visual-card{
  position:absolute;
  inset:20px 0 0 20px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow-strong);
  border:10px solid #fff;
  background:#dce4eb;
}
.visual-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(16,36,58,.05) 40%,rgba(16,36,58,.60) 100%);
}
.visual-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.visual-card__badge{
  position:absolute;
  z-index:2;
  left:28px;
  bottom:26px;
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,.92);
  color:var(--navy);
  padding:13px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  box-shadow:0 20px 44px rgba(16,36,58,.20);
}
.visual-card__badge svg{
  width:22px;height:22px;
  stroke:var(--navy);
  fill:none;
  stroke-width:1.8;
}
.floating-card{
  position:absolute;
  z-index:4;
  background:#fff;
  border:1px solid rgba(16,36,58,.12);
  box-shadow:0 18px 48px rgba(16,36,58,.18);
  border-radius:22px;
}
.floating-card--top{
  right:-18px;
  top:4px;
  padding:22px 28px;
}
.floating-card--top strong{
  display:block;
  color:var(--navy);
  font-size:38px;
  line-height:1;
}
.floating-card--top span{
  color:var(--muted);
  font-size:13px;
}
.floating-card--bottom{
  left:-18px;
  bottom:34px;
  max-width:230px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  font-weight:850;
  color:var(--navy);
}
.floating-card--bottom svg{
  flex:0 0 auto;
  width:38px;
  height:38px;
  stroke:var(--navy);
  fill:none;
  stroke-width:1.5;
}
.trust-strip{
  position:relative;
  z-index:3;
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border:1px solid rgba(16,36,58,.12);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.trust-strip div{
  display:flex;
  align-items:center;
  gap:14px;
  padding:24px 26px;
  border-right:1px solid var(--line);
  font-weight:900;
  color:var(--navy);
  text-transform:uppercase;
  letter-spacing:.45px;
  font-size:13px;
}
.trust-strip div:last-child{border-right:0}
.trust-strip svg{
  width:34px;
  height:34px;
  stroke:var(--navy);
  fill:none;
  stroke-width:1.55;
}

.section{
  padding:92px 0;
}
.section-head{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(320px,.52fr);
  gap:60px;
  align-items:end;
  margin-bottom:38px;
}
.section-head--split{align-items:center}
.eyebrow{
  margin:0 0 12px;
  color:var(--navy-3);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:2px;
}
h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(32px,3.3vw,52px);
  line-height:1.06;
  letter-spacing:-1.1px;
  font-weight:950;
}
.section-head p:last-child{
  color:var(--muted);
  line-height:1.75;
  margin:0;
  font-size:15px;
}
.services{
  background:#fff;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-card{
  position:relative;
  min-height:284px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:30px;
  box-shadow:0 16px 38px rgba(16,36,58,.06);
  overflow:hidden;
  transition:.25s ease;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:auto -80px -90px auto;
  width:210px;
  height:210px;
  border-radius:50%;
  background:rgba(16,36,58,.055);
  transition:.25s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 60px rgba(16,36,58,.12);
  border-color:rgba(16,36,58,.26);
}
.service-card:hover::before{transform:scale(1.22)}
.service-card__number{
  position:absolute;
  right:28px;
  top:24px;
  color:#d5dde6;
  font-size:38px;
  font-weight:950;
  letter-spacing:-1px;
}
.service-card svg{
  width:54px;
  height:54px;
  stroke:var(--navy);
  fill:none;
  stroke-width:1.55;
  margin-bottom:28px;
}
.service-card h3{
  position:relative;
  margin:0 0 14px;
  color:var(--navy);
  font-size:21px;
}
.service-card p{
  position:relative;
  color:var(--muted);
  line-height:1.72;
  font-size:14px;
  margin:0 0 26px;
}
.service-card a{
  position:relative;
  color:var(--navy);
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.service-card a::after{content:" →"}

.about{
  background:linear-gradient(180deg,var(--fume) 0%,#fff 100%);
}
.about__grid{
  display:grid;
  grid-template-columns:.88fr 1fr;
  gap:70px;
  align-items:center;
}
.about__media{
  position:relative;
}
.about__media img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow-strong);
}
.about__media::before{
  content:"";
  position:absolute;
  left:-24px;
  top:28px;
  width:130px;
  height:82%;
  border-radius:26px;
  background:var(--navy);
  z-index:-1;
}
.about__panel{
  position:absolute;
  right:-24px;
  bottom:34px;
  max-width:210px;
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 22px 58px rgba(16,36,58,.18);
}
.about__panel strong{
  display:block;
  color:var(--navy);
  font-size:48px;
  line-height:1;
}
.about__panel span{
  display:block;
  color:var(--muted);
  margin-top:6px;
  line-height:1.45;
  font-weight:750;
}
.about__copy>p:not(.eyebrow){
  color:var(--muted);
  line-height:1.82;
  max-width:650px;
  font-size:16px;
}
.stats-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.stats-grid div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:0 12px 32px rgba(16,36,58,.055);
}
.stats-grid strong{
  display:block;
  color:var(--navy);
  font-size:36px;
  line-height:1;
}
.stats-grid span{
  display:block;
  color:var(--muted);
  margin-top:6px;
  font-size:13px;
  font-weight:800;
}

.process{
  background:#fff;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  counter-reset:steps;
}
.process-step{
  min-height:250px;
  padding:28px;
  border-radius:26px;
  background:linear-gradient(180deg,#fff,var(--fume));
  border:1px solid var(--line);
  position:relative;
}
.process-step span{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-weight:950;
  margin-bottom:28px;
}
.process-step h3{
  color:var(--navy);
  font-size:20px;
  margin:0 0 12px;
}
.process-step p{
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
  margin:0;
}
.process-step::after{
  content:"";
  position:absolute;
  right:-18px;
  top:52px;
  width:18px;
  height:2px;
  background:rgba(16,36,58,.18);
}
.process-step:last-child::after{display:none}

.industries{
  background:var(--fume);
}
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.industry-card{
  position:relative;
  height:335px;
  border-radius:28px;
  overflow:hidden;
  background:#dce4eb;
  box-shadow:0 16px 40px rgba(16,36,58,.10);
}
.industry-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s ease;
}
.industry-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(16,36,58,.05) 35%,rgba(16,36,58,.88) 100%);
}
.industry-card span{
  position:absolute;
  z-index:2;
  left:24px;
  right:24px;
  bottom:22px;
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  font-size:14px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.industry-card svg{
  width:34px;
  height:34px;
  stroke:#fff;
  fill:none;
  stroke-width:1.5;
}
.industry-card:hover img{transform:scale(1.07)}

.cta{
  position:relative;
  background:var(--navy-2);
  color:#fff;
  overflow:hidden;
}
.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(7,25,43,.95) 0%,rgba(7,25,43,.82) 52%,rgba(7,25,43,.40) 100%),
    url('../images/cta-bolts.jpg') center right/cover no-repeat;
}
.cta__grid{
  min-height:330px;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:44px;
}
.cta .eyebrow,.cta h2,.cta p{color:#fff}
.cta h2{
  max-width:760px;
  font-size:clamp(34px,3.5vw,58px);
}
.cta p{
  max-width:620px;
  margin:20px 0 0;
  color:#d9e3ee;
  line-height:1.75;
}

.footer{
  background:#fff;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.25fr 1.1fr .8fr 1fr;
  gap:38px;
  padding:56px 0;
  border-bottom:1px solid var(--line);
}
.footer__brand img{width:210px;margin-bottom:18px}
.footer h3{
  margin:0 0 18px;
  color:var(--navy);
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1px;
}
.footer p,.footer li{
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
}
.footer ul{list-style:none;margin:0;padding:0}
.footer li+li{margin-top:8px}
.footer a:hover{color:var(--navy)}
.footer__bottom{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:26px;
  color:#748395;
  font-size:13px;
}
.footer__bottom nav{
  margin-left:auto;
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.back-to-top{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:#fff;
}

.reveal{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}

@media (max-width:1120px){
  .container{width:calc(100% - 40px)}
  .main-nav{gap:18px}
  .brand img{width:196px}
  .hero__grid{grid-template-columns:1fr;gap:46px}
  .hero__visual{min-height:500px;max-width:760px}
  .section-head,.about__grid{grid-template-columns:1fr;gap:34px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid,.industry-grid{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:860px){
  .topbar__inner{align-items:flex-start;flex-direction:column;padding:10px 0}
  .nav{height:76px}
  .quote-btn{display:none}
  .nav-toggle{display:block}
  .nav-toggle.is-open span:nth-child(1){transform:translateY(9px) rotate(45deg)}
  .nav-toggle.is-open span:nth-child(2){opacity:0}
  .nav-toggle.is-open span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}
  .main-nav{
    position:absolute;
    left:0;right:0;top:76px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:16px 24px 22px;
    background:#fff;
    border-top:1px solid var(--line);
    box-shadow:0 20px 46px rgba(16,36,58,.12);
  }
  .main-nav.is-open{display:flex}
  .main-nav a{padding:14px 0}
  .main-nav a::after{bottom:8px}
  .hero{padding-top:48px;min-height:auto;background:#fff}
  .hero h1{font-size:44px;letter-spacing:-1.4px}
  .hero__visual{min-height:390px}
  .visual-card{inset:0;border-radius:24px;border-width:7px}
  .floating-card--top{right:8px;top:-18px}
  .floating-card--bottom{left:8px;bottom:12px}
  .trust-strip{grid-template-columns:repeat(2,1fr)}
  .trust-strip div:nth-child(2){border-right:0}
  .trust-strip div{padding:20px}
  .hero__mini{grid-template-columns:1fr}
  .section{padding:68px 0}
  .about__media img{height:420px}
  .about__panel{right:18px}
  .cta__grid{grid-template-columns:1fr;padding:54px 0;min-height:auto}
  .footer__bottom{align-items:flex-start;flex-direction:column;padding:22px 0}
  .footer__bottom nav{margin-left:0}
}
@media (max-width:560px){
  .container{width:calc(100% - 28px)}
  .brand img{width:172px}
  .topbar__left,.topbar__right{gap:10px}
  .hero h1{font-size:38px}
  .hero__lead{font-size:15px}
  .btn{width:100%}
  .hero__visual{min-height:310px}
  .floating-card{display:none}
  .visual-card__badge{left:14px;right:14px;bottom:14px;justify-content:center}
  .trust-strip,.service-grid,.process-grid,.industry-grid,.stats-grid,.footer__grid{grid-template-columns:1fr}
  .trust-strip div{border-right:0;border-bottom:1px solid var(--line)}
  .trust-strip div:last-child{border-bottom:0}
  .service-card{min-height:auto}
  .about__media img{height:330px}
  .about__media::before{display:none}
  .about__panel{position:static;margin:-48px 18px 0;max-width:none}
  .industry-card{height:290px}
}
