.hero .page__header .hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.hero .page__header .hero__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black, #090a0a);
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s, opacity 0.3s;
}

.hero .page__header .hero__action-btn:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero .page__header .hero__action-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  pointer-events: none;
}

.hero .page__header .hero__action-btn svg path {
  fill: var(--orange, #e34f34);
  transition: fill 0.3s;
}

.hero .page__header .hero__action-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black, #090a0a);
  transition: color 0.3s;
}

.hero .page__header .hero__favorite-btn.in-favorites,
.hero .page__header .hero__compare-btn.in-compare {
  background: var(--orange, #e34f34);
}

.hero .page__header .hero__favorite-btn.in-favorites svg path,
.hero .page__header .hero__compare-btn.in-compare svg path {
  fill: #fff;
}

.hero .page__header .hero__favorite-btn.in-favorites .hero__action-text,
.hero .page__header .hero__compare-btn.in-compare .hero__action-text {
  color: #fff;
}

.hero .page__header .hero__favorite-btn.in-favorites:hover,
.hero .page__header .hero__compare-btn.in-compare:hover {
  background: var(--orange, #e34f34);
  opacity: 0.9;
}

.hero .page__header .hero__favorite-btn.in-favorites:hover svg path,
.hero .page__header .hero__compare-btn.in-compare:hover svg path {
  fill: #fff;
}

.hero .page__header .hero__favorite-btn.in-favorites:hover .hero__action-text,
.hero .page__header .hero__compare-btn.in-compare:hover .hero__action-text {
  color: #fff;
}

.projects__info-reverse .icn svg {
  width: 60px;
  height: 44px;
  display: block;
}
