.cov-hero {
  position: relative;
  background: #1b2126;
  overflow: hidden;
  padding: var(--cov-section-pad) 0;
  border-bottom: 5px solid var(--cov-yellow);
}

.cov-hero-side {
  position: absolute;
  bottom: 0;
  max-height: 100%;
  width: auto;
  pointer-events: none;
  user-select: none;
}
.cov-hero-side-left {
  left: 0;
  max-height: 100%;
}
.cov-hero-side-right {
  right: 0;
  max-height: 100%;
}

.cov-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cov-hero-logo img {
  max-height: 110px;
  width: auto;
  display: block;
}

.cov-hero-subtitle {
  color: #fff;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  max-width: 700px;
  margin: 0 auto;
}

.cov-hero-btn {
  margin: 0;
}

.cov-hero-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 960px;
  justify-items: center;
}

.cov-hero-feature {
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
  max-width: 320px;
  width: 100%;
}

.cov-hero-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.cov-hero-feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cov-hero-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.cov-hero-feature-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.45;
}
@media (max-width: 1440px) {
  .cov-hero-side-left,
  .cov-hero-side-right {
    opacity: 0.55;
  }
}
@media (max-width: 1100px) {
  .cov-hero-side-left,
  .cov-hero-side-right {
    max-height: 70%;
  }
}

@media (max-width: 768px) {
  .cov-hero-side {
    display: none;
  }
  .cov-hero-inner {
    gap: 24px;
  }
  .cov-hero-features {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 360px;
  }
  .cov-hero-logo img {
    max-height: 80px;
  }
  .cov-hero-feature-title {
    font-size: 17px;
  }
}
