:root{
  --blue:#129FE3;
  --blue2:#0077E6;
  --navy:#062B55;
  --text:#173A5E;
  --muted:#5F7892;
  --line:#D9ECF7;
  --soft:#EAF8FF;
  --white:#fff;
}

.clients-hero{
  position:relative;
  height:620px;
  overflow:hidden;
}

.clients-hero-bg{
  position:absolute;
  inset:0;
}

.clients-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.clients-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 28% 48%, rgba(18,159,227,.35), transparent 24%),
    linear-gradient(90deg,
      rgba(6,43,85,.97) 0%,
      rgba(6,43,85,.88) 36%,
      rgba(6,43,85,.44) 58%,
      rgba(6,43,85,.10) 78%,
      rgba(6,43,85,0) 100%
    );
}

.clients-hero-dots{
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.23) 1px, transparent 1px);
  background-size:7px 7px;
  opacity:.35;
}

.clients-hero-inner{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  align-items:center;
}

.clients-hero-text{
  max-width:560px;
  color:#fff;
}

.clients-hero-text span{
  color:#7bd8ff;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.clients-hero-text h1{
  font-size:58px;
  line-height:1.08;
  color:#fff;
  margin:18px 0 20px;
  font-weight:900;
}

.clients-hero-text p{
  color:#fff;
  font-size:17px;
  line-height:1.8;
  max-width:500px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:linear-gradient(135deg,#15B8F0,#0077E6);
  color:#fff;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  margin-top:20px;
}

.hero-btn b{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#fff;
  color:#087dd1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.section{
  padding:90px 0;
}

.section-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 44px;
}

.section-head span{
  color:var(--blue);
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.section-head h2{
  color:var(--navy);
  font-size:42px;
  margin:10px 0 0;
}

.industry-icon-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  margin-bottom:28px;
}

.industry-small{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px 18px;
  text-align:center;
  box-shadow:0 16px 35px rgba(6,43,85,.07);
}

.industry-small div{
  width:64px;
  height:64px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#e8f7ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.industry-small h3{
  color:var(--navy);
  font-size:16px;
  line-height:1.35;
  margin:0;
}

.industry-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.industry-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:34px;
  box-shadow:0 16px 35px rgba(6,43,85,.07);
}

.industry-title{
  display:flex;
  align-items:center;
  gap:16px;
  border-bottom:1px solid var(--line);
  padding-bottom:20px;
  margin-bottom:22px;
}

.industry-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#e8f7ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.industry-title h3{
  color:var(--navy);
  font-size:24px;
  margin:0;
}

.industry-list{
  display:grid;
  gap:12px 24px;
}

.two-col{
  grid-template-columns:1fr 1fr;
}

.industry-list span{
  color:var(--text);
  font-size:14px;
  line-height:1.5;
  position:relative;
  padding-left:24px;
}

.industry-list span::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:16px;
  height:16px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:900;
}

.client-stats{
  background:linear-gradient(90deg,#edfaff,#f7fcff);
  padding:54px 0;
}

.client-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}

.client-stats-grid div{
  border-right:1px solid #cfe8f6;
}

.client-stats-grid div:last-child{
  border-right:none;
}

.client-stats-grid strong{
  display:block;
  color:var(--blue);
  font-size:42px;
  line-height:1;
  margin-bottom:8px;
}

.client-stats-grid span{
  color:var(--navy);
  font-size:14px;
  font-weight:800;
}

.commitment-section{
  background:#fff;
}

.commitment-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.commitment-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px 24px;
  text-align:center;
  box-shadow:0 16px 35px rgba(6,43,85,.07);
}

.commitment-card div{
  width:64px;
  height:64px;
  border-radius:50%;
  margin:0 auto 18px;
  background:#e8f7ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.commitment-card h3{
  color:var(--navy);
  font-size:18px;
  margin:0 0 10px;
}

.commitment-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  margin:0;
}

.client-cta{
  background:
    radial-gradient(circle at 85% 45%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg,#0077E6,#15B8F0);
  color:#fff;
  padding:54px 0;
}

.client-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.client-cta h2{
  color:#fff;
  font-size:36px;
  margin:0 0 8px;
}

.client-cta p{
  color:#fff;
  margin:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:48px;
  padding:0 26px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
}

.btn.white{
  background:#fff;
  color:#087dd1;
}

@media(max-width:992px){
  .clients-hero{
    height:auto;
    min-height:620px;
  }

  .clients-hero-inner{
    padding:90px 20px 120px;
  }

  .clients-hero-text h1{
    font-size:42px;
  }

  .industry-icon-grid,
  .industry-detail-grid,
  .client-stats-grid,
  .commitment-grid{
    grid-template-columns:1fr;
  }

  .two-col{
    grid-template-columns:1fr;
  }

  .client-stats-grid div{
    border-right:0;
    border-bottom:1px solid #cfe8f6;
    padding:22px 0;
  }

  .client-cta-inner{
    flex-direction:column;
    text-align:center;
  }
}