.podhod-hero {
  padding: clamp(64px, 7vw, 110px) 0 clamp(32px, 3.5vw, 56px);
  background:
    radial-gradient(circle at 78% 18%, rgba(185, 122, 53, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #fbfaf7 100%);
  overflow: hidden;
}

.podhod-hero__container {
  max-width: min(1440px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 6vw, 105px);
  align-items: center;
}

.podhod-hero__content {
  max-width: 560px;
}

.podhod-hero__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #b9a997;
  font-weight: 600;
}

.podhod-hero__label span {
  width: 24px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.podhod-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #292623;
}

.podhod-hero__text {
  max-width: 520px;
  margin: 28px 0 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.75;
  color: #4d4945;
}

.podhod-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.podhod-hero__feature {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #5b5550;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
}

.podhod-hero__feature-icon {
  width: 22px;
  height: 22px;
  color: #c8a46b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.podhod-hero__feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.podhod-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.podhod-hero__button {
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 12px;
  gap: 28px;
  background: linear-gradient(135deg, #c49a5a 0%, #a87436 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(164, 111, 54, 0.22);
}

.podhod-hero__button:hover,
.podhod-hero__button:focus-visible {
  background: linear-gradient(135deg, #d0a566 0%, #b4803f 100%);
  color: #fff;
  opacity: 1;
}

.podhod-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #6b625a;
  text-decoration: none;
  transition: color var(--ease), transform var(--ease);
}

.podhod-hero__link:hover {
  color: #292623;
  transform: translateX(2px);
}

.podhod-hero__visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #171513;
  box-shadow:
    0 28px 65px rgba(35, 31, 27, 0.16),
    0 0 0 1px rgba(185, 122, 53, 0.18);
}

.podhod-hero__image {
  width: 100%;
  height: auto;
  min-height: clamp(390px, 33vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1600px) {
  .podhod-hero__container {
    max-width: min(1680px, 90vw);
    grid-template-columns: minmax(430px, 0.75fr) minmax(0, 1.25fr);
  }

  .podhod-hero__content {
    max-width: 650px;
  }

  .podhod-hero__visual {
    border-radius: 26px;
  }
}

@media (min-width: 2200px) and (max-height: 1200px) and (min-aspect-ratio: 21/10) {
  .podhod-hero {
    padding: 82px 0 56px;
  }

  .podhod-hero__container {
    max-width: min(2180px, 92vw);
    grid-template-columns: minmax(620px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(120px, 6vw, 180px);
  }

  .podhod-hero__content {
    max-width: 760px;
  }

  .podhod-hero__title {
    font-size: clamp(86px, 3.6vw, 108px);
  }

  .podhod-hero__text {
    max-width: 720px;
    font-size: clamp(22px, 0.95vw, 27px);
  }

  .podhod-hero__features {
    gap: 30px;
    margin-top: 48px;
  }

  .podhod-hero__feature {
    font-size: 16px;
    gap: 14px;
  }

  .podhod-hero__actions {
    margin-top: 54px;
    gap: 40px;
  }

  .podhod-hero__button {
    min-height: 68px;
    padding-inline: 34px;
    font-size: 18px;
  }

  .podhod-hero__link {
    font-size: 17px;
  }

  .podhod-hero__image {
    min-height: clamp(520px, 28vw, 650px);
  }
}

@media (max-width: 1020px) {
  .podhod-hero {
    padding: 54px 0 36px;
  }

  .podhod-hero__container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .podhod-hero__content {
    max-width: none;
    text-align: left;
  }

  .podhod-hero__visual {
    order: 2;
  }
}

@media (max-width: 680px) {
  .podhod-hero {
    padding: 34px 0 28px;
  }

  .podhod-hero__container {
    max-width: 100%;
    padding-inline: 18px;
    gap: 28px;
  }

  .podhod-hero__label {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.32em;
  }

  .podhod-hero__title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .podhod-hero__text {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .podhod-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .podhod-hero__actions {
    width: 100%;
    margin-top: 30px;
    gap: 18px;
  }

  .podhod-hero__button {
    width: 100%;
    justify-content: space-between;
  }

  .podhod-hero__link {
    width: 100%;
    justify-content: space-between;
  }

  .podhod-hero__visual {
    border-radius: 18px;
  }

  .podhod-hero__image {
    min-height: 240px;
  }
}

/* Блок «От анализа к результату» */
.podhod-steps {
  padding: clamp(32px, 3.5vw, 56px) 0 clamp(72px, 7vw, 120px);
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 122, 53, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfaf7 0%, #fffdfa 100%);
}

.podhod-steps__container {
  max-width: min(1440px, calc(100% - 48px));
}

.podhod-steps__head {
  max-width: 780px;
  margin: 0 auto clamp(42px, 4.5vw, 68px);
  text-align: center;
}

.podhod-steps__label {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c8a46b;
  font-weight: 700;
}

.podhod-steps__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #292623;
}

.podhod-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.podhod-step-card {
  min-height: 330px;
  padding: 28px 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(213, 207, 198, 0.74);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 16px 34px rgba(35, 31, 27, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.podhod-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 107, 0.44);
  box-shadow:
    0 22px 46px rgba(35, 31, 27, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.podhod-step-card__number {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  color: #c8a46b;
  font-weight: 500;
}

.podhod-step-card__icon {
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.podhod-step-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.podhod-step-card__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(23px, 1.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #292623;
}

.podhod-step-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: #5b5550;
}

@media (min-width: 1600px) {
  .podhod-steps__container {
    max-width: min(1680px, 90vw);
  }

  .podhod-step-card {
    min-height: 370px;
    padding: 34px 30px 30px;
    border-radius: 22px;
  }

  .podhod-step-card__icon {
    width: 74px;
    height: 74px;
  }

  .podhod-step-card__text {
    font-size: 16px;
  }
}

@media (min-width: 2200px) and (max-height: 1200px) and (min-aspect-ratio: 21/10) {
  .podhod-steps {
    padding: 120px 0;
  }

  .podhod-steps__container {
    max-width: min(2180px, 92vw);
  }

  .podhod-steps__grid {
    gap: 34px;
  }

  .podhod-step-card {
    min-height: 430px;
    padding: 42px 38px 36px;
    border-radius: 28px;
  }

  .podhod-step-card__number {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .podhod-step-card__icon {
    width: 86px;
    height: 86px;
    margin-bottom: 34px;
  }

  .podhod-step-card__title {
    font-size: clamp(30px, 1.35vw, 38px);
  }

  .podhod-step-card__text {
    font-size: clamp(17px, 0.74vw, 21px);
    line-height: 1.7;
  }

}

@media (max-width: 1180px) {
  .podhod-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .podhod-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .podhod-hero {
    padding-bottom: 28px;
  }

  .podhod-steps {
    padding: 28px 0 52px;
  }

  .podhod-steps__container {
    max-width: 100%;
    padding-inline: 18px;
  }

  .podhod-steps__head {
    margin-bottom: 34px;
  }

  .podhod-steps__label {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .podhod-steps__title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .podhod-steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .podhod-step-card {
    min-height: auto;
    padding: 26px 22px 24px;
    border-radius: 18px;
  }

  .podhod-step-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
  }

  .podhod-step-card__title {
    font-size: 26px;
  }

  .podhod-step-card__text {
    font-size: 15px;
  }
}

/* Блок «Результаты, которые имеют значение» */
.podhod-results {
  padding: clamp(64px, 6vw, 105px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 122, 53, 0.07), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #fbfaf7 100%);
}

.podhod-results__container {
  max-width: min(1440px, calc(100% - 48px));
}

.podhod-results__head {
  max-width: 820px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.podhod-results__label {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c8a46b;
  font-weight: 700;
}

.podhod-results__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #292623;
}

.podhod-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.podhod-result-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 18px;
  border: 1px solid rgba(213, 207, 198, 0.74);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 16px 34px rgba(35, 31, 27, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.podhod-result-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 107, 0.44);
  box-shadow:
    0 22px 46px rgba(35, 31, 27, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.podhod-result-card__icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.podhod-result-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.podhod-result-card__value {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #c8a46b;
}

.podhod-result-card__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.4;
  font-weight: 600;
  color: #292623;
}

.podhod-result-card__text {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 0.95vw, 16px);
  line-height: 1.5;
  color: #5b5550;
}

@media (min-width: 1600px) {
  .podhod-results__container {
    max-width: min(1680px, 90vw);
  }

  .podhod-result-card {
    min-height: 180px;
    grid-template-columns: 104px minmax(0, 1fr);
    padding: 36px 40px;
    border-radius: 22px;
  }

  .podhod-result-card__icon {
    width: 90px;
    height: 90px;
  }

}

@media (min-width: 2200px) and (max-height: 1200px) and (min-aspect-ratio: 21/10) {
  .podhod-results {
    padding: 110px 0;
  }

  .podhod-results__container {
    max-width: min(2180px, 92vw);
  }

  .podhod-results__grid {
    gap: 34px;
  }

  .podhod-result-card {
    min-height: 220px;
    grid-template-columns: 126px minmax(0, 1fr);
    padding: 44px 50px;
    border-radius: 28px;
  }

  .podhod-result-card__icon {
    width: 108px;
    height: 108px;
  }

  .podhod-result-card__value {
    font-size: clamp(26px, 1.15vw, 30px);
  }

  .podhod-result-card__lead {
    font-size: clamp(17px, 0.75vw, 19px);
  }

  .podhod-result-card__text {
    font-size: clamp(15px, 0.65vw, 17px);
  }
}

@media (max-width: 1020px) {
  .podhod-results__grid {
    grid-template-columns: 1fr;
  }

  .podhod-result-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .podhod-results {
    padding: 52px 0;
  }

  .podhod-results__container {
    max-width: 100%;
    padding-inline: 18px;
  }

  .podhod-results__label {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .podhod-results__title {
    font-size: clamp(32px, 9vw, 44px);
  }

  .podhod-result-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px;
    border-radius: 18px;
    text-align: left;
  }

  .podhod-result-card__icon {
    width: 68px;
    height: 68px;
  }

  .podhod-result-card__value {
    font-size: 24px;
  }

  .podhod-result-card__lead {
    font-size: 16px;
  }

  .podhod-result-card__text {
    font-size: 15px;
  }
}
