.faq-section {
  background: #eeece8;
  padding: 88px 80px 96px;
}

.faq-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.faq-tab {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  background: none;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.faq-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.faq-tab:hover {
  color: rgba(0,0,0,0.7);
}

.faq-tab.active {
  color: #111;
}

.faq-tab.active::after {
  transform: scaleX(1);
}

.faq-sep {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  margin: 0 0 8px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq-question-text {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: #111;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.open .faq-question-text {
  font-weight: 500;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(0,0,0,0.5);
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s, color 0.2s, transform 0.35s;
  user-select: none;
}

.faq-item:hover .faq-icon {
  border-color: rgba(0,0,0,0.5);
  color: #111;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: #111;
  color: #111;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 28px;
}

.faq-answer-inner {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  line-height: 1.75;
  max-width: 720px;
}

@media (max-width: 860px) {
  .faq-section {
    padding: 64px 40px 72px;
  }
}

@media (max-width: 540px) {
  .faq-section {
    padding: 52px 20px 60px;
  }

  .faq-tab {
    padding: 10px 16px;
    font-size: 10px;
  }

  .faq-question-text {
    font-size: 15px;
  }
}
