.ft-banner {
  width: 100%;
  height: 150px;
  background: linear-gradient(to right, #1A3C93, #152349);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.ft-banner.ft-banner--hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  pointer-events: none;
}

.ft-banner__content {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ft-banner__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 32px);
  color: white;
  margin: 0;
}

.ft-banner__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #94ACF3;
  margin: 0;
}

.ft-banner__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* box-shadow — светлее сверху, темнее снизу, как liquid glass */
.ft-banner__btn-wrap {
  border-radius: 16px;
  box-shadow:
    inset 0  1px 0 rgba(255,255,255,0.75),
    inset 0 -1px 0 rgba(255,255,255,0.25),
    inset  1px 0 0 rgba(255,255,255,0.35),
    inset -1px 0 0 rgba(255,255,255,0.35),
    0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ft-banner__btn-wrap:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0  1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(255,255,255,0.35),
    inset  1px 0 0 rgba(255,255,255,0.5),
    inset -1px 0 0 rgba(255,255,255,0.5),
    0 0 0 1px rgba(255,255,255,0.25);
}

.ft-banner__btn-wrap:active {
  transform: translateY(0);
}

.ft-banner__btn-inner {
  border-radius: 16px;
  overflow: hidden;
}

.ft-banner__btn-inner--secondary {
  background: rgba(255, 255, 255, 0.07);
}

.ft-banner__btn-wrap:hover .ft-banner__btn-inner--secondary {
  background: rgba(255, 255, 255, 0.12);
}

.ft-banner__btn-inner--primary {
  background: rgba(203, 210, 230, 0.23);
}

.ft-banner__btn-wrap:hover .ft-banner__btn-inner--primary {
  background: rgba(203, 210, 230, 0.33);
}

.ft-banner__btn {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 27px;
  cursor: pointer;
  white-space: nowrap;
  color: white;
  border: none;
  background: transparent;
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .ft-banner {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 16px;
    align-items: flex-start;
  }

  .ft-banner__content {
    max-width: 100%;
  }

  .ft-banner__buttons {
    flex-wrap: wrap;
    width: 100%;
  }

  .ft-banner__btn-wrap {
    flex: 1;
    min-width: 140px;
  }

  .ft-banner__btn {
    font-size: 14px;
  }
}