.showcase-header {
  --as-blue: #109bd1;
  --as-orange: #ef7d00;
  --as-text: #2d465e;
  --as-muted: rgba(45, 70, 94, 0.72);
  --as-line: rgba(45, 70, 94, 0.14);

  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--as-line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.showcase-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 112px;
}

.showcase-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  max-width: 390px;
  text-decoration: none;
}

.showcase-header__logo picture,
.showcase-header__logo img {
  display: block;
}

.showcase-header__logo img {
  width: 360px;
  max-width: 100%;
  height: auto;
}

.showcase-header__trust {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 1px solid var(--as-line);
}

.showcase-header__trust span,
.showcase-header__phone span {
  color: var(--as-muted);
  font-size: 13px;
  font-weight: 700;
}

.showcase-header__trust strong {
  color: var(--as-text);
  font-size: 15px;
  line-height: 1.25;
}

.showcase-header__phone {
  display: grid;
  gap: 4px;
  margin-left: auto;
  color: var(--as-text);
  text-align: right;
  text-decoration: none;
  white-space: nowrap;
}

.showcase-header__phone strong {
  color: var(--as-blue);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.showcase-header__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 116px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--as-orange);
  box-shadow: 0 14px 30px rgba(239, 125, 0, 0.25);
  font-weight: 900;
  text-decoration: none;
}

.showcase-header__order svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .showcase-header__trust {
    display: none;
  }
}

@media (max-width: 767px) {
  .showcase-header__inner {
    min-height: 86px;
    gap: 12px;
  }

  .showcase-header__logo {
    max-width: 205px;
  }

  .showcase-header__logo img {
    width: 198px;
  }

  .showcase-header__phone {
    display: none;
  }

  .showcase-header__order {
    min-width: 54px;
    min-height: 48px;
    margin-left: auto;
    padding: 0 14px;
  }

  .showcase-header__order span {
    display: none;
  }
}
