.fk-home-header-row {
      position: relative;
      width: 100vw;
      height: 100vh;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .fk-home-header-row video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 10px;
      max-width: 90%;
    }

  .fk-home-header-row .hero-content h1 {
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
  font-size: clamp(60px, 16vw, 110px);
}

    .mt-40 {
      margin-top: 40px;
    }

    .mt-20 {
      margin-top: 20px;
    }
    
    .mylink {
      color: #fff;
    }

    .mylink:hover {
      color: #fff;
      text-decoration: underline;
    }

    .fk-button {
      color: #fff;
      background-color: #F54C30;
      display: inline-block;
      padding: 16px 40px;
      line-height: 1.4;
      border-radius: 200px;
      text-decoration: none;
      border: 1px solid transparent;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .fk-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(245, 76, 48, 0.3);
      color: #fff;
    }

    .fk-home-header-href {
      font-weight: 500;
      line-height: 1.4;
      color: #fff;
      text-decoration: none;
      display: inline-block;
    }



.fk-home-whatneed-row {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #fff;
  justify-self: center;
}


.fk-home-whatneed-col-head h3 {
    font-size: 60px;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}

.fk-home-whatneed-col-head p {
  font-size: 20px;
    color: #666;
    margin: 10px 0 40px;
    text-align: center;
}


.fk-home-whatneed-col {
  margin-bottom: 30px; /* для отступа на мобильных */
}

.fk-home-whatneed-col-box {
  position: relative;
  height: 500px; 
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.fk-home-whatneed-col-box:hover {
  transform: translateY(-8px);
}


.fk-home-whatneed-col-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 70%);
  z-index: 1;
}


.fk-home-whatneed-col-box-bottom {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.fk-home-whatneed-col-box h4 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.2;
  color: #fff;
}

/* Прозрачная кнопка в стиле hero-блока */
.fk-button-transparent {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 200px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fk-button-transparent:hover {
  background-color: #fff;
  color: #F54C30; /* акцентный цвет из hero-кнопки */
  transform: none; /* отменяем translateY, если нужно */
}

/* Адаптивность */
@media (max-width: 992px) {
  .fk-home-whatneed-col-box {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .fk-home-whatneed-col-head h3 {
    font-size: 36px;
  }
  .fk-home-whatneed-col-head p {
    font-size: 18px;
  }
  .fk-home-whatneed-col-box {
    height: 320px;
  }
  .fk-home-whatneed-col-box h4 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .fk-home-whatneed-col-head h3 {
    font-size: 32px;
  }
  .fk-home-whatneed-col-box {
    height: 280px;
  }
}