body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f6f7f9;
  color: #1f1f1f;
}

/* Контейнер */
.support {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px;
    margin-top: 47px;
    margin-bottom: 142px;
    width: 100%;
}

.breadcrumbs {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 50px;
  padding-left: 5px;
}

.breadcrumbs a {
  color: #555;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid #00a943;
  outline-offset: 2px;
}

/* Заголовок */
.manual-title {
    text-align: left;
    font-size: 28px;
    font-family: Roboto !important;
    font-weight: 400 !important;
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: normal;
    padding: 0px 0px 0px 5px;
}

.manual-subtitle {
    text-align: left;
    color: #64748b;
    margin-bottom: 40px;
    padding-left: 5px;
}

/* Сетка */
.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 28px;
  font-family: Roboto !important;
}

/* Карточки */
.card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgb(0 0 0 / 16%);
    display: flex;
    flex-direction: column;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(5px);
}

/* Левая колонка */
.left-card {
    border-left: 4px solid #00a943;
}
.card-title {
    margin: 0 0 15px;
    font-family: Roboto !important;
    font-weight: 450 !important;
    font-size: 18px;
}

.card-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

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

.equipment-list li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  transition: padding-left .2s ease;
}

.equipment-list li:hover {
  padding-left: 6px;
}

.equipment-list li:last-child {
  border-bottom: none;
}

.equipment-list a {
    display: block;
    color: #000000;
    text-decoration: none;
    margin-bottom: 4px;
    font-weight: 500;
}

.equipment-list a:hover {
  text-decoration: underline;
}

.equipment-list span {
  font-size: 14px;
  color: #777;
}

/* Правая колонка */
.support-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.action-card {
  text-decoration: none;
  color: inherit;
  gap: 12px;
  transition: box-shadow .3s ease-in-out, transform 0.5s;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 9px 7px 3px rgba(15, 34, 79, .14);
    border-color: rgb(0 169 67 / 51%);
}

.action-card h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 450 !important;
    font-family: Roboto !important;
}

.action-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
}




.faq-search {
  margin-bottom: 32px;
}

.faq-search input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 15px !important;
  border: 1px solid rgb(0 0 0 / 20%);
  font-size: 14px;
  outline: none;
  background: #f6f7f9;
}

.faq-search input:focus {
  border-color: #00a943;
}


.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-category {
  gap: 12px;
}


.card.faq-item {
  width: 100%;
  padding: 15px;
  border-radius: 20px;
}

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

.faq-links li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.faq-links li:last-child {
  border-bottom: none;
}

.faq-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.faq-links a:hover {
  text-decoration: underline;
}

.faq-item {
  cursor: pointer;
}

.faq-question {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  font-family: Roboto;
  color: #000000 !important;
  padding-left: 15px;
  text-transform: math-auto;
  text-align: left;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: #000;
}

.faq-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Анимация контейнера */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.45s cubic-bezier(.4,0,.2,1),
    opacity 0.25s ease;
}

/* Внутренний контейнер — ВИЗУАЛ */
.faq-answer-inner {
  overflow: hidden;

  background: rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 16px 18px;

  transform: translateY(-6px);
  transition:
    transform 0.3s ease,
    padding 0.25s ease;
}

/* Активное состояние */
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.active .faq-answer-inner {
  transform: translateY(0);
}

/* Закрытое состояние — симметрично */
.faq-item:not(.active) .faq-answer-inner {
  padding-top: 0;
  padding-bottom: 0;
}


/* Страница инструкции */
.faq-manual {
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

.faq-manual p {
  margin-bottom: 12px;
}

.faq-manual ul,
.faq-manual ol {
  padding-left: 18px;
  margin-bottom: 12px;
  margin-left: 0;
}

.faq-manual li {
  margin-bottom: 8px !important;
  list-style-type: disc;
    background: 0;
    margin: 0 0 0 30px;
    padding: 0;
}

.faq-manual a {
    color: #00a943;
    text-decoration: none;
    font-size: 12pt !important;
    font-family: Roboto;
    font-weight: 500;
    opacity: .75;
    transition: color 0.3s;
}

.faq-manual a:hover {
  text-decoration: underline;
}

/* Кнопка "назад" */
.faq-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    color: #00a943;
    text-decoration: none;
    font-size: 12pt !important;
    font-family: Roboto;
    font-weight: 450;
    opacity: .75;
    transition: color 0.3s;
}

.faq-back:hover {
  text-decoration: underline;
}

.faq-back-icon {
  font-size: 16px;
  line-height: 1;
}

.faq-manual h2 {
    font-size: 17px;
    font-family: Roboto !important;
    font-weight: 450 !important;
    margin: 0px 0px 15px;
}



.faq-manual {
  counter-increment: manual;
}

.faq-manual-title::before {
  content: counter(manual);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background: #00a943;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
}

.faq-manual-list {
  counter-reset: manual;
  padding: 24px;
    border-radius: 24px;
    border: 1px solid rgb(0 0 0 / 16%);
    display: flex;
    flex-direction: column;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(5px);
}

.faq-manual {
  animation: fadeUp 0.35s ease both;
}

.manual-image {
  margin-top: 12px;
  margin-bottom: 18px;
}

.manual-image img {
  max-width: 100%;
  width: 432px;
  border-radius: 16px;
  border: 1px solid rgb(0 0 0 / 14%);
  background: #fff;
  display: block;
}

.manual-image figcaption {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-back {
  margin-top: 40px;
}

.faq-back-icon {
  transition: transform 0.25s ease;
}

.faq-back:hover .faq-back-icon {
  transform: translateX(-4px);
}



/* Адаптив */
@media (max-width: 900px) {
  .faq-categories {
    grid-template-columns: 1fr;
  }
}


/* Адаптив */
@media (max-width: 900px) {
    .breadcrumbs {
        padding-left: 0;
    }
    .support {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .manual-title {
        text-align: center;
        padding-left: 0;
    }

    .manual-subtitle {
        text-align: center;
        padding-left: 0;
    }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-right {
    order: -1;
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 28px;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .support-right {
    grid-template-columns: 1fr;
  }
}