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

.team-hero{
  position:relative;
  height:430px;
  overflow:hidden;
}

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

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

.team-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 42%, rgba(18,159,227,.22), transparent 26%),
    linear-gradient(90deg,
      rgba(6,43,85,.98) 0%,
      rgba(6,43,85,.86) 42%,
      rgba(6,43,85,.35) 68%,
      rgba(6,43,85,.08) 100%
    );
}

.team-hero-dots{
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size:8px 8px;
  opacity:.32;
}

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

.team-hero-text{
  max-width:620px;
  color:#fff;
}

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

.team-hero-text h1{
  color:#fff;
  font-size:50px;
  line-height:1.12;
  margin:16px 0 16px;
  font-weight:900;
}

.team-hero-text p{
  color:#e9f8ff;
  font-size:16px;
  line-height:1.8;
  max-width:560px;
}

.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:18px;
}

.hero-btn span{
  color:#fff;
  font-size:14px;
  text-transform:none;
  letter-spacing:0;
}

.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;
  margin:0 auto 46px;
  max-width:850px;
}

.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;
  line-height:1.16;
  margin:12px 0 12px;
}

.section-head p{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  max-width:680px;
  margin:0 auto;
}

.team-section{
  background:#fff;
}

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

.team-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(6,43,85,.08);
  transition:.25s ease;
}

.team-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(18,159,227,.16);
}

.team-photo{
  background:linear-gradient(180deg,#f4fbff,#eaf8ff);
  height:260px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:hidden;
}

.team-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.team-info{
  text-align:center;
  padding:22px 16px 24px;
}

.team-info h3{
  color:var(--navy);
  font-size:18px;
  margin:0 0 8px;
  font-weight:900;
}

.team-info p{
  color:var(--blue);
  font-size:13px;
  line-height:1.45;
  font-weight:800;
  margin:0 0 8px;
}

.team-info span{
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}

.team-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;
}

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

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

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

.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:1100px){
  .team-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .team-hero{
    height:auto;
    min-height:520px;
  }

  .team-hero-inner{
    padding:80px 20px;
  }

  .team-hero-text h1{
    font-size:38px;
  }

  .team-grid{
    grid-template-columns:1fr 1fr;
  }

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

@media(max-width:520px){
  .team-grid{
    grid-template-columns:1fr;
  }

  .team-photo{
    height:300px;
  }
}