.tilda-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.tilda-fade.show {
  opacity: 1;
}

.faq-item, .faq-row, .faq-main-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: faqFadeIn 0.7s cubic-bezier(.42,1.55,.47,.81) forwards;
}
.faq-item { animation-delay: 0.2s; }
.faq-item:nth-child(2) { animation-delay: 0.35s; }
.faq-item:nth-child(3) { animation-delay: 0.5s; }
.faq-item:nth-child(4) { animation-delay: 0.65s; }
/* Правая колонка */
.faq-col + .faq-col .faq-item { animation-delay: 0.2s; }
.faq-col + .faq-col .faq-item:nth-child(2) { animation-delay: 0.35s; }
.faq-col + .faq-col .faq-item:nth-child(3) { animation-delay: 0.5s; }
.faq-col + .faq-col .faq-item:nth-child(4) { animation-delay: 0.65s; }
@keyframes faqFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.faq-title {
  opacity: 0;
  transform: translateY(22px);
  animation: faqFadeIn 0.7s cubic-bezier(.42,1.55,.47,.81) 0.1s forwards;
}
.faq-main-wrapper { max-width: 1200px; margin: 75px auto 75px auto; }
.faq-title { text-align: center; margin-bottom: 60px; font-size: 40px; font-weight: 700; color: #232323; }
.faq-flex { display: flex; width: 100%; gap: 34px; justify-content: center; }
.faq-col { display: flex; flex-direction: column; gap: 20px; width: 570px; }
.faq-item { background: none; }
.faq-row {
  display: flex;
  align-items: center;
  height: 75px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  padding-left: 26px;
  padding-right: 18px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.faq-text {
  font-size: 20px;
  font-weight: 500;
  color: #232323;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.faq-square-btn {
  background: #ffd844;
  border: none;
  border-radius: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
  padding: 0;
  box-shadow: 0 2px 6px rgba(247, 200, 9, 0.09);
  position: relative;
}
.faq-square-icon {
  width: 22px;
  height: 22px;
  display: block;
  margin: auto;
  transition: transform 0.35s cubic-bezier(.45,1.6,.55,.95);
}
.faq-item.open .faq-square-icon { transform: rotate(180deg); }
.faq-answer {
  width: 100%;
  background: #fff;
  border-radius: 0 0 26px 26px;
  box-sizing: border-box;
  padding: 12px 26px 22px 26px;
  font-size: 15px;
  color: #232323;
  line-height: 1.42;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.41s cubic-bezier(.42,1.35,.47,.81), opacity 0.22s;
}
.faq-item.open .faq-answer { opacity: 1; max-height: 390px; }

@media (max-width:1230px) {
  .faq-main-wrapper { max-width:98vw; }
  .faq-flex { flex-direction:column; align-items:center; }
  .faq-col { width:98vw; max-width:600px; }
}
@media (max-width:700px) {
  .faq-main-wrapper{margin-top:36px;}
  .faq-title{font-size:22px;}
  .faq-col{gap:13px;}
  .faq-text{font-size:14px;}
  .faq-row{height:46px; padding-left:10px;}
  .faq-square-btn{width:24px;height:24px;}
  .faq-square-icon{width:8px;height:8px;}
  .faq-answer{font-size:12px;padding:0 10px 12px 10px;}
}
