.what-does-cost {
  /*background: linear-gradient(90deg, #e6d6c6 0%, #f4efe9 100%);*/
  /*padding: 80px 0;*/
  padding: 0px 0;
  /*overflow-x: hidden;*/
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left bottom;  
}

.what-does-cost .h1-title-line {
  position: absolute;
  width: 55%;
  max-width: 900px;
  height: 29px;
  border: 2px solid #c7a57a;
  border-radius: 999px;
  margin-top: 60px;
}

.what-does-cost .h1-title-text {
  position: relative;
  background: var(--color-background);
  padding: 0 10px;
  font-size: 48px;
  font-weight: 400;
  color: #a8845d;
  text-align: center;
  margin-top: -25px;
  width: 50%;
}

.what-does-cost .what-does-cost-annotation {
  width: 70%;
  margin: 50px auto 10px auto;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #7C593F;
}


/* ===== CONTENT ===== */
.what-does-cost .l2-content {
  padding-left: 40px;
  /*padding-top: 55px;*/
}

.what-does-cost .l2-title {
  font-size: 42px;
  font-weight: 500;
  color: #8c6b4f;
  margin-bottom: 30px;
}

/* ===== QUOTE ===== */
.what-does-cost .l2-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.what-does-cost .l2-quote-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #6f5a47;
}

.what-does-cost .l2-quote-text span {
  font-size: 16px;
  color: #a07c5c;
}

/* ===== ITEMS ===== */
.what-does-cost .l2-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}

/* сами блоки */
.what-does-cost .l2-item {
  text-align: center;
}

/* 💻 PC — 5 в ряд */
@media (min-width: 992px) {
  .what-does-cost .l2-items {
    flex-wrap: nowrap;
  }

  .what-does-cost .l2-item {
    flex: 0 0 20%;
    max-width: 15%;
  }
}

/* 📱 MOBILE + TABLET — 2 в ряд */
@media (max-width: 991px) {
  .what-does-cost .l2-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* иконки */
.what-does-cost .l2-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  /*border: 1px solid #b89a7a;*/
  border-radius: 50%;
  /*background-color: #fff;*/
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.what-does-cost .l2-item h4 {
  font-size: 18px;
  color: #6f5a47;
  margin-bottom: 8px;
}

.what-does-cost .l2-item p {
  font-size: 14px;
  color: #a07c5c;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {
    .what-does-cost .container {
        background-color: rgba(255, 255, 255, 0.7);
    }
  /* убираем кавычки */
  .what-does-cost .l2-quote {
    justify-content: center;
    text-align: center;
  }

  .what-does-cost .l2-quote-icon {
    display: none;
  }
}

/* ===== IMAGE ADAPTIVE ===== */
@media (max-width: 991px) {
  .what-does-cost .l2-image {
    min-height: 80px;
    margin-bottom: 30px;
    background-position: center;
  }

  .what-does-cost .l2-content {
    padding-left: 0;
    text-align: center;
  }

  .what-does-cost .l2-title {
    font-size: 28px;
  }
}

/* ===== ANIMATION ===== */
.what-does-cost .l2-item {
  /*opacity: 0;*/
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.what-does-cost .l2-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 991px) {
  .what-does-cost .h1-title-text {
    background: none;
    padding: 0 10px;
    font-size: 28px;
    font-weight: 400;
    margin-top: -25px;
    width: 100%;
  }
  .what-does-cost .h1-title-line {
    display: none;
  }   
.what-does-cost .what-does-cost-annotation {
  width: 80%;
  font-size: 14px;
  font-weight: 400;

}  
}