/* stats */
.wk-stats-section {
  background:linear-gradient(to  top , rgba(66,57,101,1),rgba(66,57,101,1),rgba(66,57,101,1),rgba(66,57,101,1),rgba(66,57,101,1),rgba(66,57,101,1),#38b6ff) no-repeat center center;
  padding: 70px 7%;
}

.wk-stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1350px;
  margin: 0 auto;
}

.wk-stat-card {
  background: #fff;
  border: 1px solid #e6edf3;
  border-radius: 18px;
  text-align: center;
  padding: 34px 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.wk-stat-icon {
  color: rgba(66,57,101,1);
  font-size: 46px;
  margin-bottom: 14px;
}

.wk-stat-card h3 {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  color: #0a1022;
  letter-spacing: -1px;
}

.wk-stat-card p {
  margin: 12px 0 0;
  color: #9aa7b8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* Hero */
.wk-hero-section-home {
  position: relative;
  min-height: 720px;
  background: #062d38;
  border-bottom: 3px solid #00c8ff;
}

.wk-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wk-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wk-hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 90px 6%;
  min-height: 720px;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
}

.wk-hero-text {
  max-width: 700px;
}

.wk-hero-text h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -2px;
}

.wk-hero-text p {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.5;
}

.wk-hero-text strong {
  font-weight: 900;
}

.wk-hero-btn {
  display: inline-block;
  padding: 18px 30px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 900;
  background: rgba(20,78,96,.82);
  border: 4px solid rgba(112,170,190,.65);
  border-radius: 14px;
  transition: .25s;
}

.wk-hero-btn:hover {
  background: rgba(0,200,255,.22);
  border-color: #00c8ff;
  transform: translateY(-2px);
}

.wk-hero-knight {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wk-hero-knight img {
  width: min(620px,100%);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.45));
}

@media (max-width:1050px) {

  .wk-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 70px 6%;
    min-height: auto;
  }

  .wk-hero-text {
    margin: 0 auto;
  }

  .wk-hero-knight img {
    width: min(520px,85vw);
  }
}

@media (max-width:600px) {

  .wk-hero-section {
    min-height: auto;
  }

  .wk-hero-content {
    padding: 60px 22px;
  }

  .wk-hero-text h1 {
    font-size: 44px;
  }

  .wk-hero-text p {
    font-size: 18px;
  }

  .wk-hero-btn {
    width: 100%;
    text-align: center;
  }
}
