:root {
  --font-family: "Inter", "Arial", sans-serif;
  --color-white: #fff;
  --color-black: #000;
}

.consultation {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-family);
}

/* Фон */
.consultation__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.consultation__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.consultation__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

/* Контент */
.consultation__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px 20px;
  text-align: center;
}

.consultation__title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}

.consultation__text {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 32px;
}

.consultation__button {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-black);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: background 0.3s, color 0.3s;
}

.consultation__button:hover {
  background-color: #f0f0f0;
  color: #111;
}

/* 🧭 Адаптив */
@media (min-width: 768px) {
  .consultation__title {
    font-size: 40px;
    margin-bottom: 0;
  }

  .consultation__text {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 20px;
  }

  .consultation__button {
    font-size: 15px;
    padding: 16px 36px;
  }
}

@media (min-width: 1200px) {
  .consultation__title {
    font-size: 48px;
  }

  .consultation__text {
    font-size: 18px;
    line-height: 1.4;
  }
}

.about {
  background-color: #87853c; /* точно под цвет из примера */
  color: #fff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about__title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about__subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 48px;
}

.about__stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 16px;
  padding: 0;
  margin: 0 0 60px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about__icon {
  width: 56px;
  height: 56px;
}

.about__value {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.about__text {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about__text p {
  margin-bottom: 20px;
}
.about__text p:last-child {
  margin-bottom: 0;
}

/* 🔹 Адаптив */
@media (min-width: 768px) {
  .about__title {
    font-size: 40px;
  }

  .about__subtitle {
    font-size: 20px;
  }

  .about__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 50px;
  }

  .about__icon {
    width: 64px;
    height: 64px;
  }

  .about__value {
    font-size: 18px;
  }

  .about__text {
    font-size: 18px;
    line-height: 1.7;
  }
}

@media (min-width: 1200px) {
  .about {
    padding: 60px 20px;
  }

  .about__title {
    font-size: 40px;
  }
}

.help {
  background-color: #f6f1ee;
  color: #1d1d1b;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.help__inner {
  max-width: 900px;
  margin: 0 auto;
}

.help__title {
  color: #7b7a3a; /* olive green из макета */
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.help__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.help__item {
  font-size: 17px;
  line-height: 1.6;
}

.help__point {
  margin: 0 0 4px;
  position: relative;
  padding-left: 14px;
}

.help__point::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d1d1b;
  font-weight: 600;
}

.help__desc {
  margin: 0;
  padding-left: 14px;
  color: #1d1d1b;
  opacity: 0.9;
}

/* 🔹 Адаптив */
@media (min-width: 768px) {
  .help__title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .help__item {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .help {
    padding: 60px 20px;
  }

  .help__title {
    font-size: 40px;
  }

  .help__item {
    font-size: 19px;
  }
}
strong {
    font-weight: 600;
}

.formats {
  background-color: #87853c;
  color: #fff;
  font-family: "Inter", sans-serif;
  padding: 80px 20px;
  text-align: center;
}

.formats__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.formats__title {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 60px;
}

.formats__grid {
  display: grid;
  gap: 24px;
}

.formats__card {
  border: 1.5px solid #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  line-height: 1.6;
}

.formats__subtitle {
  font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
  text-transform: uppercase;
}

.formats__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.formats__item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
  font-size: 16px;
}

.formats__item::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}

/* 🔹 Адаптив */
@media (min-width: 768px) {
  .formats__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .formats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
            margin: 0 120px;
  }

  .formats__subtitle {
    font-size: 22px;
  }

  .formats__item {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  .formats {
    padding: 60px 20px;
  }

  .formats__title {
    font-size: 40px;
  }

  .formats__card {
    padding: 50px 40px;
  }
}

.results {
  background-color: #f6f1ee;
  color: #1d1d1b;
  font-family: "Inter", sans-serif;
  padding: 80px 20px;
  text-align: center;
}

.results__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.results__title {
  color: #7b7a3a;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.results__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 48px 32px;
  grid-template-columns: 1fr;
}

.results__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  line-height: 1.6;
}

.results__icon {
  width: 72px;
  height: 72px;
}

.results__text {
  font-size: 16px;
  margin: 0;
  max-width: 340px;
}

/* Кнопка */
.results__button {
  display: inline-block;
  margin-top: 60px;
  background-color: #87853c;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.results__button:hover {
  background-color: #9b9950;
}
body .container--mobile {
  padding-left: 0;
}
/* 🔹 Адаптив */
@media (min-width: 640px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .results__title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .results__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 64px 40px;
  }

  .results__text {
    font-size: 17px;
  }

  .results__icon {
    width: 80px;
    height: 80px;
  }
}