/* ========================================
   СТИЛИ ДЛЯ СТРАНИЦЫ УСЛУГИ
   ======================================== */

/* Hero секция */
.service_hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 100px;
  gap: 60px;
}

.service_hero__content {
  /* flex: 1; */
  max-width: 600px;
}

.service_hero__title {
  color: #FFF;
  font-family: Montserrat;
  font-size: 64px;
  font-weight: 800;
  line-height: 110%;
  margin-bottom: 24px;
}

.service_hero__subtitle {
  color: #FFF;
  font-family: P22UndergroundCYProBook;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 48px;
}

.service_hero__features {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-bottom: 48px;
}

.service_hero__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature_number {
  /* color: var(--orange); */
  color: #ffea0b;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
}

.feature_text {
  color: #9F9191;
  font-family: P22UndergroundCYProBook;
  font-size: 14px;
}

.service_hero__image {
  flex: 1;
  max-width: 550px;
}

.service_hero__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Общие стили секций */
.section_title {
  margin-bottom: 60px;
}

/* Что мы предлагаем */
.service_offer {
  padding: 100px 0;
  background-color: #fff;
}

.offer_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.offer_card {
  padding: 40px;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.offer_card:hover {
  border-color: #FEC303;
  transform: translateY(-5px);
}

.offer_card__icon {
  margin-bottom: 24px;
}

.offer_card__icon svg {
  width: 48px;
  height: 48px;
}

.offer_card__title {
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.offer_card__text {
  color: #625252;
  font-family: P22UndergroundCYProBook;
  font-size: 16px;
  line-height: 150%;
}

/* Этапы работы */
.service_stages {
  padding: 100px 0;
  background-color: #F8F8F8;
}

.stages_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stage_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stage_item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stage_number {
  color: #FEC303;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.stage_title {
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.stage_text {
  color: #625252;
  font-family: P22UndergroundCYProBook;
  font-size: 16px;
  line-height: 150%;
}

/* Технологии */
.service_tech {
  padding: 100px 0;
  background-color: #fff;
}

.tech_description {
  color: #625252;
  font-family: P22UndergroundCYProBook;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 48px;
  max-width: 800px;
}

.tech_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech_item {
  padding: 32px;
  background-color: #F8F8F8;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech_item:hover {
  background-color: #FEC303;
}

.tech_name {
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
}

/* Преимущества */
.service_benefits {
  padding: 100px 0;
  background-color: #2B2A32;
}

.benefits_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.benefits_content {
  flex: 1;
}

.benefits_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit_item {
  padding: 24px;
  border-left: 3px solid #FEC303;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.benefit_title {
  color: #FFF;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit_text {
  color: #9F9191;
  font-family: P22UndergroundCYProBook;
  font-size: 16px;
  line-height: 150%;
}

.benefits_image {
  flex: 1;
  max-width: 500px;
}

.benefits_image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Стоимость */
.service_pricing {
  padding: 100px 0;
  background-color: #fff;
}

.pricing_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing_card {
  padding: 40px;
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing_card:hover {
  border-color: #FEC303;
  transform: translateY(-5px);
}

.pricing_card--featured {
  border-color: #FEC303;
  background-color: #FFFEF5;
}

.pricing_card__badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background-color: #FEC303;
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

.pricing_card__title {
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing_card__price {
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
}

.pricing_card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.pricing_card__features li {
  color: #625252;
  font-family: P22UndergroundCYProBook;
  font-size: 16px;
  line-height: 180%;
  padding-left: 24px;
  position: relative;
}

.pricing_card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FEC303;
  font-weight: 700;
}

/* CTA секция */
.service_cta {
  padding: 100px 0;
  background-color: #F8F8F8;
}

.cta_content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta_title {
  color: #1D1D1D;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta_text {
  color: #625252;
  font-family: P22UndergroundCYProBook;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 40px;
}

.btn_large {
  width: 220px;
  height: 48px;
}

.btn_large .txt {
  top: 14px;
  font-size: 18px;
}

/* Адаптив */
@media screen and (max-width: 1024px) {
  .service_hero {
    flex-direction: column;
    padding: 60px 0 80px;
    gap: 40px;
  }

  .service_hero__content {
    max-width: 100%;
  }

  .service_hero__title {
    font-size: 48px;
  }

  .service_hero__image {
    max-width: 100%;
  }

  .offer_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits_wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .benefits_image {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .service_hero {
    padding: 40px 0 60px;
  }

  .service_hero__title {
    font-size: 36px;
  }

  .service_hero__subtitle {
    font-size: 18px;
  }

  .service_hero__features {
    flex-direction: column;
    gap: 24px;
  }

  .section_title {
    margin-bottom: 40px;
  }

  .service_offer,
  .service_stages,
  .service_tech,
  .service_benefits,
  .service_pricing,
  .service_cta {
    padding: 60px 0;
  }

  .offer_card {
    padding: 24px;
  }

  .stage_item {
    flex-direction: column;
    padding: 24px;
  }

  .tech_grid {
    grid-template-columns: 1fr;
  }

  .cta_title {
    font-size: 32px;
  }

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

@media screen and (max-width: 576px) {
  .service_hero__title {
    font-size: 28px;
  }

  .service_hero__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .feature_number {
    font-size: 28px;
  }

  .feature_text {
    font-size: 12px;
  }

  .offer_card__title {
    font-size: 20px;
  }

  .stage_number {
    font-size: 36px;
  }

  .stage_title {
    font-size: 20px;
  }

  .pricing_card {
    padding: 24px;
  }

  .pricing_card__title {
    font-size: 20px;
  }

  .pricing_card__price {
    font-size: 28px;
  }

  .cta_title {
    font-size: 24px;
  }

  .cta_text {
    font-size: 16px;
  }
}