.kz-intro-block {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #f9fafb 0%, #eef2f5 100%);
  padding: 80px 0;
  text-align: center;
}

.kz-intro-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.kz-intro-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 60px;
  color: #555;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.kz-intro-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

.kz-intro-points li {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  display: flex;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); /* нейтральная тень */
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 156, 143, 0.08); /* акцентный обвод */
}

.kz-intro-points li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.kz-intro-points li i {
  font-size: 30px;
  color: #009C8F;
  margin-top: 4px;
  flex-shrink: 0;
}

.kz-intro-points li h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1c1c1c;
}

.kz-intro-points li p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.kz-intro-cta .btn-primary {
  background-color: #009C8F;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.kz-intro-cta .btn-primary:hover {
  background-color: #007e79;
}
