.hero_fullscreen {
    margin-left: 3rem;
    margin-top: 2rem;
}

.hero_fullscreen h1 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 5rem;
    color: #000;;
    width: 85%;
}
.fullscreen_offer_bot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}
.fullscreen_offer_bot p {
    width: 65%;
}

/* ABOUT *//* ABOUT *//* ABOUT *//* ABOUT *//* ABOUT *//* ABOUT *//* ABOUT *//* ABOUT */
/* Ограничиваем ширину всего блока услуг 60% ширины экрана */
.interactive-about {
    position: relative;
    margin: 0; /* прижмёт к левому краю */
    padding: 2rem 2rem;
  }
  
  /* Внутренний контейнер: список слева, контент справа */
  .interactive-about .about-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
  
  /* Меню-список */
  .interactive-about .about-list {
    flex: 0 0 30%;          /* меню займёт 30% от 60vw = 18vw */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;       /* убираем точки */
    margin: 0;
    padding: 1rem;
    text-align: left;
  }
  
  /* Пункты меню */
  .interactive-about .about-list li {
    border-bottom: 1px solid #C8D2DE;
    font-size: 1.1rem;
    position: relative;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  /* Наведение */
  .interactive-about .about-list li:hover {
    transform: translateX(6px);
  }
  
  /* Активный пункт */
  .interactive-about .about-list li.active {
    transform: translateX(40px);
    border-bottom: 1px solid #333;
  }
  
  /* Контейнер с описанием */
  .interactive-about .about-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 10rem;
  }
  
  /* Скрываем все блоки контента и кнопок по умолчанию */
  .interactive-about .about-detail .content,
  .interactive-about .about-detail .buttons {
    display: none;
  }
  
  /* Показываем только активные */
  .interactive-about .about-detail .content.active,
  .interactive-about .about-detail .buttons.active {
    display: block;
  }
  .section-title {
    text-align: left;
    margin: 8rem 0 1rem 3.5rem; /* отступы сверху и снизу при необходимости */
    font-size: 3rem;
    font-weight: 500;
  }
  .item-title {
    margin-top: 7rem;
    font-weight: 300;
    height: 50px;
    font-size: 2rem;
  }
  .content {
    width: 77%;
    font-size: 1.4rem;
    color: #333;
  }
  /* Абзац-описание под заголовком */
  .interactive-about .about-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

.content_btn  {
    align-items: start;
}

.buttons button {
    margin-top: 1rem;
    background-color: #333;
    color: #fff;
    padding: 0.5rem  1rem;
    box-shadow: none;
    border: none;
    border-radius: 22px;
}
.buttons button:not(:last-child) {
    margin-right: 1rem;
}

/* Стек технологий *//* Стек технологий *//* Стек технологий *//* Стек технологий *//* Стек технологий *//* Стек технологий */

.tech-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 4rem 40px;
}

.tech-left {
  width: 100%;
}

.tech-left h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.tech-left .subtitle {
  font-size: 1.5rem;
  color: #777;
  margin-bottom: 5rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.tech-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: 0.3s ease;
  text-align: center;
}

.tech-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.tech-card span {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.tech-card p {
  margin-top: 6px;
  font-size: 14px;
  color: #555;
}

/* Этапы разработки *//* Этапы разработки *//* Этапы разработки *//* Этапы разработки *//* Этапы разработки *//* Этапы разработки */

.dev-process {
  padding: 60px 4rem;
  max-width: 100%;
}

.dev-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.dev-subtitle {
  font-size: 1.5rem;
  color: #777;
  margin-bottom: 5rem;
  text-align: left;
}

.dev-steps-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
}

.dev-steps-line::before {
  content: "";
  position: absolute;
  top: 50px; /* центр кружков */
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.circle {
  width: 60px;
  height: 60px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.step h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Тарифы на веб-разработку *//* Тарифы на веб-разработку *//* Тарифы на веб-разработку *//* Тарифы на веб-разработку *//* Тарифы на веб-разработку *//* Тарифы на веб-разработку */

.price-list {
  width: 100%;
  padding: 5rem 3rem 0;
}

.price-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.price-desc {
  width: 85%;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-name {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 80%;
  color: #111;
}

.price-info {
  display: block;
  gap: 0.5rem;
  text-align: right;
}
.price-tags_mini {
  color: #333;
  font-size: 0.8rem;
  margin-right: 1rem;
  margin-top: 1rem;
}
.price-tags {
  font-weight: bold;
  color: #333;
  width: 100%;
  font-size: 1rem;
  margin-right: 1rem;
}

.tag {
  border: 1px solid #111;
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Заявка *//* Заявка *//* Заявка *//* Заявка *//* Заявка *//* Заявка *//* Заявка */

.contact-form-section {
  width: 100%;
  margin: 6rem auto;
  padding: 8rem 0 0;
  background-color: #fafafa;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.form-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #333;
}

.contact-form {
  margin: 0 auto;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
}

.form-submit {
  margin-top: 1rem;
  background-color: #333;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background-color: #333;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.checkbox-group input[type="checkbox"] {
  appearance: auto; /* сброс кастомизации */
  -webkit-appearance: checkbox;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
}

/* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */
.footer {
    position: relative; 
    z-index: 2;
}  

@media (max-width: 700px) {
.hero_fullscreen {
    margin: 0;
    padding: 10rem 2rem 0;
}
.buttons button{
  display: none;
}
.hero_fullscreen h1 {
  font-size: 2.8rem;
  line-height: 4rem;
  max-width: 100%;
  width: 100%;
}
.fullscreen_offer_bot p {
  width: 100%;
}
.section-title {
  font-size: 2.4em;
  margin: 0;
  padding: 5rem 2rem 2rem;
}
.item-title {
  margin-top: 2rem;
}
 .interactive-about {
    padding: 1rem 2rem;
  }
  .interactive-about .about-container {
    flex-direction: column;
    gap: 1.2rem;
  }
  .interactive-about .about-list {
    flex: 0 0 auto;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }
  .interactive-about .about-list li {
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    transition: none;
    transform: none !important;
    border-bottom: 1px solid #e0e0e0;
  }
  .interactive-about .about-list li.active {
    background: #f2f6fa;
    border-bottom: 1px solid #333;
    transform: none !important;
  }

  .interactive-about .about-detail {
    min-height: unset;
    margin: 0 auto;
    padding: 0 0.2rem;
    gap: 1.2rem;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  .interactive-about .about-detail .content,
  .interactive-about .about-detail .buttons {
    width: 100%;
    position: static;
    left: unset;
    right: unset;
    padding: 0;
    font-size: 1.06rem;
  }
  .item-title {
    font-size: 1.4rem;
  }
  .content {
    width: 100%;
    height: 120px;
    font-size: 1.06rem;
    padding: 0 0.3rem;
  }
  .buttons button {
    margin-top: 0.8rem;
    margin-right: 0.6rem;
    font-size: 0.95rem;
    padding: 0.44rem 1.1rem;
    border-radius: 18px;
  }
  .price-list {
    padding: 5rem 2rem;
    max-width: 100%;
  }
  .price-title {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
  .price-row {
    flex-direction: column;
    gap: 2rem;
    padding: 1.08rem 0 0.7rem 0;
  }
  .price-name {
    font-size: 1.06rem;
    margin-bottom: 0.17rem;
    min-width: unset;
  }
  .price-info {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 0.05rem;
  }
  .price-tags { font-size: 1.01rem; }
  .price-tags_mini { font-size: 0.89rem; }
  .price-desc {
    font-size: 0.98rem;
    margin-top: 0.21rem;
    padding-left: 0;
  }
   .tech-section {
    padding: 5rem 2rem 2rem;
  }
  .tech-left h2 {
    font-size: 2.4rem;
    margin-bottom: 0.7rem;
  }
  .tech-left .subtitle {
    font-size: 1.02rem;
    margin: 2rem 0
  }
  .tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* 2 карточки в ряд */
    gap: 2.1rem;
    margin-bottom: 0;
  }
  .tech-card {
    padding: 1.2rem 0.6rem;
    font-size: 0.98rem;
  }
  .tech-card strong {
    font-size: 1rem;
  }
  .tech-card p {
    font-size: 0.92rem;
  }
  .tech-card span {
    font-size: 1.6rem;
  }
  .contact-form-section {
    padding: 4rem 2rem 8rem;
    margin: 0;
  }
  .contact-form {
    width: 100%;
  }
}
