.budget-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 0, 0, 0.26), transparent 30%),
    linear-gradient(180deg, #030304 0%, #070708 100%);
}

.budget-grid {
  display: none;
}

.budget-shape {
  position: absolute;
  right: 13%;
  top: 148px;
  width: min(34vw, 430px);
  height: 340px;
  border-radius: 28px 28px 210px 210px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.12), rgba(255, 0, 0, 0.72));
  filter: blur(0.2px);
}

.budget-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 34px;
  width: min(100% - 48px, 1180px);
  min-height: 700px;
  margin-inline: auto;
  padding: 74px 0 0;
}

.budget-copy {
  max-width: 560px;
}

.budget-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.budget-copy h2 strong {
  color: #ff0000;
  font-weight: 800;
}

.budget-copy p {
  max-width: 430px;
  margin: 18px 0 34px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 17px;
  line-height: 1.55;
}

.budget-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100%, 520px);
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 0, 0, 0.26);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.budget-glass span {
  color: rgba(255, 250, 240, 0.82);
  font-size: 15px;
  font-weight: 600;
}

.budget-glass a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff0000, #ff0000);
  color: #fffaf0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.budget-person {
  align-self: end;
  justify-self: center;
  width: min(100%, 520px);
  max-height: 650px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.42));
  transform: translateX(0);
}

@media (max-width: 900px) {
  .budget-section,
  .budget-content {
    min-height: auto;
  }

  .budget-content {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
    padding: 66px 0 0;
  }

  .budget-glass {
    align-items: stretch;
    flex-direction: column;
  }

  .budget-person {
    justify-self: center;
    width: min(100%, 360px);
    max-height: 430px;
    transform: none;
  }
}
