ul.menu_contact__items {
display: none !important;
}.fs-hero {
  background: radial-gradient(circle at 10% 0%, #16181f 0, #0d0f12 45%, #050507 100%);
  color: #f9fafb;
  padding: 72px 16px;
}

.fs-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.fs-hero-label {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 12px;
}

.fs-hero h1 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.fs-hero-sub {
  color: #9ca3af;
  font-size: 15px;
  max-width: 460px;
  margin-bottom: 24px;
}

.fs-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.fs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .18s ease-out;
}

.fs-btn-primary {
  background-color: #00ff4c;
  color: #020617;
  font-weight: 600;
}
.fs-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 255, 76, .35);
}

.fs-btn-ghost {
  border-color: #4b5563;
  color: #e5e7eb;
  background: transparent;
}
.fs-btn-ghost:hover {
  border-color: #9ca3af;
  background: rgba(15, 23, 42, .8);
}

.fs-hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  color: #9ca3af;
}

.fs-hero-usps li::before {
  content: "✓";
  color: #00ff4c;
  margin-right: 6px;
}

.fs-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .8);
}

/* RWD */
@media (max-width: 900px) {
  .fs-hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .fs-hero {
    padding: 40px 16px 48px;
  }
}