@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*{margin:0;padding:0;box-sizing:border-box;}

:root{
  --green:#38d430;
  --green2:#20b82f;
  --blue:#1e6fff;
  --dark:#031633;
  --text:#20334d;
  --muted:#5d6b82;
  --line:#e7edf5;
  --bg:#f7f9fc;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--dark);
  overflow-x:hidden;
}

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

.ce-wrap{
  width:min(1720px,96%);
  margin:auto;
}

/* HEADER - CONTACTUS STANDARD */

.ce-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #e8edf4;
}

.ce-nav{
  height:95px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.ce-logo img{
  height:72px;
  width:auto;
  object-fit:contain;
}

.ce-nav nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.ce-nav nav a{
  font-size:14px;
  font-weight:800;
  color:#061b38;
  padding:36px 0;
  position:relative;
}

.ce-nav nav a.active,
.ce-nav nav a:hover{
  color:var(--green2);
}

.ce-nav nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:var(--green2);
}

.ce-quote{
  min-width:220px;
  height:58px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#16bf31,#5eff49);
  color:#fff;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 10px 28px rgba(56,212,48,.25);
  white-space:nowrap;
}

.mobile-menu-btn{
  display:none;
  width:58px;
  height:58px;
  border-radius:16px;
  border:1px solid #dbe6f1;
  background:#fff;
  font-size:28px;
  color:#062041;
  cursor:pointer;
  margin-left:auto;
}

/* HERO */

.services-hero{
  position:relative;
  min-height:640px;
  overflow:hidden;
}

.services-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:brightness(.82);
}

.services-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(1,18,43,.82) 0%,
    rgba(1,18,43,.58) 35%,
    rgba(1,18,43,.18) 70%,
    rgba(1,18,43,.03) 100%
  );
}

.services-hero-content{
  position:relative;
  z-index:2;
  padding-top:120px;
  max-width:760px;
  margin-left:0;
  text-align:left;
}

.services-hero-content span,
.services-intro span,
.process-head span,
.why-head span,
.industries-head span{
  color:var(--green2);
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
}

.services-hero-content h1{
  margin-top:20px;
  font-size:82px;
  line-height:.95;
  letter-spacing:-3px;
  color:#fff;
  font-weight:900;
}

.services-hero-content h1 em{
  color:var(--green);
  font-style:normal;
}

.services-hero-content p{
  margin-top:28px;
  max-width:620px;
  color:#eef4ff;
  font-size:20px;
  line-height:1.8;
}

.ce-green{
  margin-top:34px;
  min-width:240px;
  height:58px;
  border-radius:14px;
  background:linear-gradient(135deg,#16bf31,#5eff49);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 10px 28px rgba(56,212,48,.25);
}

/* SERVICES MAIN */

.services-main{
  padding:90px 0 70px;
  background:#fff;
}

.services-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:start;
  margin-bottom:50px;
}

.services-intro h2,
.process-head h2,
.why-head h2,
.industries-head h2{
  margin-top:16px;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-1.8px;
  font-weight:900;
  color:#061939;
}

.services-intro h2 em,
.process-head h2 em,
.why-head h2 em,
.industries-head h2 em{
  color:var(--green2);
  font-style:normal;
}

.services-intro p,
.process-head p,
.industries-head p{
  color:#53627b;
  font-size:18px;
  line-height:1.85;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card{
  position:relative;
  min-height:310px;
  padding:34px 34px 42px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 32px rgba(7,26,51,.045);
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(7,26,51,.08);
}

.service-card i{
  width:64px;
  height:64px;
  border-radius:16px;
  background:#effbef;
  color:var(--green2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-style:normal;
  margin-bottom:22px;
}

.service-card h3{
  font-size:22px;
  line-height:1.25;
  font-weight:900;
  color:#061939;
}

.service-card p{
  margin-top:14px;
  color:#5d6b82;
  font-size:15px;
  line-height:1.75;
}

.service-card ul{
  margin-top:16px;
  padding-left:18px;
  color:#30455f;
  font-size:14px;
  line-height:1.8;
}

.service-card a{
  position:absolute;
  right:30px;
  bottom:26px;
  color:var(--green2);
  font-size:26px;
  font-weight:900;
}

/* STATS */

.service-stats{
  padding:0 0 80px;
  background:#fff;
}

.stats-panel{
  padding:34px 44px;
  border-radius:24px;
  background:#021833;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  color:#fff;
}

.stats-panel div{
  display:flex;
  align-items:center;
  gap:22px;
  border-right:1px solid rgba(255,255,255,.15);
}

.stats-panel div:last-child{border-right:0;}

.stats-panel i{
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(56,212,48,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-size:32px;
  font-style:normal;
}

.stats-panel strong{
  display:block;
  font-size:46px;
  line-height:1;
  color:#fff;
  font-weight:900;
}

.stats-panel span{
  display:block;
  margin-top:6px;
  color:#d9e7ff;
  font-size:16px;
  line-height:1.35;
}

/* PROCESS */

.process-section{
  padding:90px 0;
  background:#fff;
}

.process-head{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:60px;
  align-items:start;
  margin-bottom:70px;
}

.process-flow{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:28px;
}

.process-flow::before{
  content:"";
  position:absolute;
  top:32px;
  left:5%;
  width:90%;
  height:2px;
  background:#dbe4f2;
}

.process-flow div{
  position:relative;
  z-index:2;
  text-align:center;
}

.process-flow b{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--green2);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-size:14px;
  font-weight:900;
}

.process-flow i{
  width:82px;
  height:82px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(7,26,51,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:30px;
  font-style:normal;
}

.process-flow h3{
  font-size:18px;
  font-weight:900;
  color:#061939;
}

.process-flow p{
  margin-top:12px;
  color:#5d6b82;
  font-size:14px;
  line-height:1.7;
}

/* WHY */

.why-section{
  padding:80px 0;
  background:linear-gradient(180deg,#f2fff3 0%,#f8fff8 100%);
}

.why-head{
  margin-bottom:45px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:24px;
}

.why-grid div{
  text-align:center;
  padding:24px 18px;
  border-right:1px solid #d5ebd6;
}

.why-grid div:last-child{border-right:0;}

.why-grid i{
  display:block;
  font-size:40px;
  font-style:normal;
  margin-bottom:18px;
}

.why-grid h3{
  font-size:18px;
  font-weight:900;
}

.why-grid p{
  margin-top:12px;
  color:#5d6b82;
  font-size:14px;
  line-height:1.7;
}

/* INDUSTRIES */

.industries-section{
  padding:85px 0 70px;
  background:#fff;
}

.industries-head{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:50px;
  align-items:center;
  margin-bottom:48px;
}

.industries-head a{
  height:54px;
  padding:0 34px;
  border-radius:14px;
  border:1px solid var(--green2);
  color:var(--green2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  white-space:nowrap;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}

.industry-grid article{
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 28px rgba(7,26,51,.04);
}

.industry-grid i{
  color:var(--green2);
  font-size:34px;
  font-style:normal;
}

.industry-grid h3{
  margin-top:12px;
  min-height:48px;
  font-size:17px;
  line-height:1.3;
  font-weight:900;
}

.industry-grid img{
  width:100%;
  height:130px;
  margin-top:14px;
  border-radius:14px;
  object-fit:cover;
}

.industry-grid p{
  margin-top:14px;
  color:#5d6b82;
  font-size:14px;
  line-height:1.7;
}

.industry-grid a{
  margin-top:16px;
  display:block;
  color:var(--green2);
  font-size:22px;
  font-weight:900;
}

/* CTA */

.services-cta{
  padding:0 0 70px;
  background:#fff;
}

.services-cta-inner{
  padding:34px 44px;
  border-radius:22px;
  background:#021833;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.services-cta-inner div{
  display:flex;
  align-items:center;
  gap:24px;
}

.services-cta-inner i{
  width:68px;
  height:68px;
  border-radius:50%;
  background:rgba(56,212,48,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-size:32px;
  font-style:normal;
}

.services-cta-inner h2{
  font-size:26px;
  font-weight:900;
}

.services-cta-inner p{
  margin-top:8px;
  color:#d9e7ff;
  font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1300px){
  .ce-nav nav{gap:20px;}
  .ce-nav nav a{font-size:13px;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .industry-grid{grid-template-columns:repeat(3,1fr);}
  .why-grid{grid-template-columns:repeat(3,1fr);}
  .process-flow{grid-template-columns:repeat(3,1fr);}
  .process-flow::before{display:none;}
}

@media(max-width:900px){

  .ce-wrap{width:94%;}

  .ce-nav{
    height:92px;
    gap:14px;
  }

  .ce-logo img{
    height:84px;
  }

  .ce-quote{
    min-width:150px;
    height:52px;
    font-size:12px;
    padding:0 16px;
  }

  .mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    font-size:24px;
    order:3;
  }

  .ce-nav nav{
    position:absolute;
    top:96px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
    gap:0;
    border-bottom:1px solid #e8edf4;
    display:none;
  }

  .ce-nav nav.open{
    display:flex;
  }

  .ce-nav nav a{
    width:100%;
    padding:18px 0;
  }

  .services-hero{
    min-height:760px;
  }

  .services-hero-content{
    padding-top:360px;
  }

  .services-hero-content h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .services-hero-content p{
    font-size:18px;
  }

  .services-intro,
  .process-head,
  .industries-head{
    grid-template-columns:1fr;
    gap:24px;
  }

  .services-intro h2,
  .process-head h2,
  .why-head h2,
  .industries-head h2{
    font-size:42px;
  }

  .services-grid,
  .stats-panel,
  .why-grid,
  .industry-grid{
    grid-template-columns:1fr;
  }

  .stats-panel div,
  .why-grid div{
    border-right:0;
  }

  .process-flow{
    grid-template-columns:1fr;
  }

  .services-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .services-cta-inner div{
    flex-direction:column;
    align-items:flex-start;
  }

  .services-cta-inner .ce-green{
    width:100%;
  }
}

/* SERVICES HERO LEFT SPACE FIX */

.services-hero-content{
  padding-left:95px !important;
  max-width:820px !important;
}

.services-hero-content span,
.services-hero-content h1,
.services-hero-content p{
  margin-left:0 !important;
  text-align:left !important;
}

@media(max-width:900px){

  .services-hero-content{
    padding-left:28px !important;
    padding-right:24px !important;
  }

}