/* Общая типографика */
body {
  font-family: 'TT Firs Neue', sans-serif;
  color: #111;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.hero_fullscreen {
  padding: 12rem 3rem 4rem;
}

.hero_fullscreen h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
  max-width: 65%;
  color: #000;
}

.fullscreen_offer_bot {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  align-items: center;
}

.fullscreen_offer_bot p {
  max-width: 65%;
  font-size: 1rem;
}

.features-section {
  padding: 6rem 3.5rem;
  background-color: #fafafa;
}

.section-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature p {
  color: #555;
  font-size: 1rem;
}

.channels-section-alt {
  position: relative;
  padding: 8rem 4rem;
  background: #fff;
}

.channels-timeline {
  position: relative;
  margin-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.channel-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4rem;
  position: relative;
  max-width: 900px;
}

.channel-step.right {
  margin-left: auto;
  flex-direction: row-reverse;
}

.channel-step .icon {
  background: #333;
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 2rem;
  margin-left: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.channel-step.right .icon {
  margin-right: 0;
  margin-left: 2rem;
}

.channel-step .text {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  max-width: 500px;
}

.channel-step .text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #111;
}

.channel-step .text p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Вертикальная линия */
.channels-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #e0e0e0;
  transform: translateX(-50%);
  z-index: 0;
}

.tools-section {
  padding: 6rem 2rem 5rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.6rem 3.6rem;
  max-width: 960px;
  margin: 4rem auto;
  justify-items: center;
  align-items: stretch;
}
.tool-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(28,46,104,0.08);
  padding: 2.5rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.tool-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 38px rgba(23,44,78,0.17);
}
.tool-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 1.3rem;
  border-radius: 12px;
  background: #f5f6fa;
  box-shadow: 0 2px 14px rgba(200,210,230,0.09);
}
.tool-card span {
  font-size: 1.08rem;
  color: #0e1634;
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  min-height: 2.5em;
}
/* Цены */
.price-list {
  width: 100%;
  padding: 5rem 3rem 0;
}
.price-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
  gap: 2rem;
  flex-wrap: wrap;
}

.price-left {
  flex: 1;
  min-width: 200px;
}

.price-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.price-right {
  text-align: right;
  min-width: 120px;
}

.price-tags {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.price-tags_mini {
  font-size: 0.8rem;
  color: #777;
}
/* Форма */
.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: 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;
  background-color: #fff;
}
.form-submit {
  margin-top: 1rem;
  background-color: #333;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checkbox-group input[type="checkbox"] {
  appearance: auto;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
}
@media (max-width: 700px) {
.hero_fullscreen {
  padding: 12rem 2rem 4rem;
}

.hero_fullscreen h1 {
  font-size: 3rem;
  max-width: 100%;
}
.fullscreen_offer_bot p{
  max-width: 100%;
}
.features-section {
  padding: 6rem 2rem;
}
.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

.tools-subtitle {
  text-align: center;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 0.5rem;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 1.2rem auto 2rem auto;
  padding: 0;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  background: none;
  box-shadow: none;
  border-radius: 12px;
  padding: 0.3rem 0.1rem;
}

.tool-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tool-card span {
  margin-top: 0.2rem;
  font-size: 0.81rem;
  color: #111;
  font-weight: 400;
  text-align: center;
  word-break: break-word;
  line-height: 1.12;
  min-height: 2.2em;
  max-width: 80px;
}



@media (max-width: 700px) {
  .price-list { 
    max-width: 100%;
    padding: 0 3rem;
  }
  .section-title { font-size: 2.4rem; margin-bottom: 2rem; }
  .price-row { flex-direction: column; gap: 2rem; padding: 2rem 0; }
  .price-name, .price-info { max-width: 100%; min-width: unset; }
  .price-info { align-items: flex-start; }
}

/***** ФОРМА *****/
.contact-form-section {
  max-width: 560px;
  margin: 3rem auto 2rem auto;
  padding: 2.2rem 2.2rem 1.6rem 2.2rem;
  background: #fafbff;
  border-radius: 18px;
  box-shadow: 0 5px 24px rgba(23,44,78,0.07);
}
.form-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #181818;
  letter-spacing: -1px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.form-group label {
  font-size: 1.08rem;
  margin-bottom: 0.1rem;
  color: #222;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select {
  padding: 0.85rem 1.1rem;
  border: 1px solid #e4e7ef;
  border-radius: 10px;
  font-size: 1.01rem;
  background: #fff;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: #89aaff;
  outline: none;
}
.form-submit {
  margin-top: 0.7rem;
  background: #222;
  color: #fff;
  font-weight: 500;
  padding: 1.04rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background .17s;
}
.form-submit:hover { background: #444; }
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}
.checkbox-group label {
  font-size: 1.2rem;
  font-weight: 400;
  color: #232323;
  display: flex;
  align-items: center;
  gap: 0.35em;
}
.checkbox-group input[type="checkbox"] {
  width: 1.3em;
  height: 1.3em;
  accent-color: #222;
}
#otherInput {
  margin-top: 0.6em !important;
  font-size: 0.98rem;
  padding: 0.7rem 1rem;
}
@media (max-width: 700px) {
  .contact-form-section {
    max-width: 100%;
    margin: 1.5rem 0;
    padding: 5rem 2rem ;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(23,44,78,0.09);
  }
   .form-title {
    font-size: 2rem;
  }
  .contact-form {
    width: 100%;
  }
  .contact-form-section {
    margin: 0;
    padding: 8rem 2rem;
  }
  .form-title { font-size: 2rem; font-weight: 400; }
  .form-group label { font-size: 1.2rem; }
  .form-group input,
  .form-group select { font-size: 0.97rem; padding: 0.7rem 0.8rem; }
  .form-submit { font-size: 0.97rem; padding: 0.85rem 1.1rem; }
}
}

