.faq{
  padding-bottom: var(--section-pad-bottom);
}

.faq__container{
  padding-top: var(--section-pad-top);
}

.faq__grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.faq__mini{
    font-family: var(--font-family);
  font-weight: 400;

  font-size: clamp(11px, 0.8vw, 14px);
  line-height: 1.2;

  letter-spacing: clamp(0.12em, 0.2vw, 0.21em);

  text-transform: uppercase;
  text-align: left;
  color: var(--main-normal);
}

.faq__title{
  margin: 8px 0 12px;
  font-family: var(--font-family);
  font-weight: 600;

  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
text-align: left;
  color: var(--text-dark);
}

.faq__subtitle{
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.6;
  max-width: 520px;
}

.faq__actions{
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq__right{
  display: grid;
  gap: 12px;
}

.faq-item{

  overflow: hidden;
}

.faq-item__summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.faq-item__summary::-webkit-details-marker{
  display: none;
}

.faq-item__summary::marker{
  display: none;
}

.faq-item__arrow{
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item__arrow::before{
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--main-light);
  border-bottom: 2px solid var(--main-light);
  transform: rotate(45deg);
  transition: transform .2s ease, top .2s ease;
}

.faq-item[open] .faq-item__arrow::before{
  transform: rotate(-135deg);
  top: 8px;
}

.faq-item__label{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 152%;
  color: var(--text-dark);
}

.faq-item__body{
  padding: 0 16px 14px clamp(18px, 5vw, 50px);
}

.faq-item__text{
  margin: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 152%;
  color: var(--text-mormal);
}

@media (max-width: 900px){
  .faq__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}



.faq__actions .reviews__all {
  border: none;
  border-radius: 600px;

  /* адаптивные отступы */
  padding: clamp(12px, 1vw, 16px) clamp(20px, 2vw, 32px);

  /* убираем жесткие width/height */
  min-height: clamp(44px, 5vw, 56px);
  width: fit-content;

  background: linear-gradient(116deg, #00ddce 0%, #01b6c0 57.69%, #017eac 100%);

  font-family: var(--font-family);
  font-weight: 600;

  /* адаптивный текст */
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.4;

  text-transform: uppercase;
  color: var(--white);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq__actions .reviews__all:hover {
  background: linear-gradient(116deg, #00ddce 0%, #01b6c0 26.84%, #017eac 56.97%);
}