

.faq-section {
  padding: 50px 20px;
  background: var(--gradient-soft);
}

.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
}

.faq-header p {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 16px;
  max-width: 600px;
  margin-inline: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: 
    0 10px 30px rgba(22, 45, 73, 0.08),
    0 1px 0 rgba(255,255,255,0.6) inset;
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37, #2c5f8d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active::before {
  opacity: 1;
}

.faq-item.active {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(22,45,73,0.16),
    0 0 40px rgba(44,95,141,0.12);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: linear-gradient(to right, rgba(44,95,141,0.08), transparent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.5s cubic-bezier(.22,.61,.36,1),
    opacity 0.3s ease,
    transform 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 520px;
  padding-bottom: 22px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
}

.faq-answer p::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-accent-deep);
  font-weight: 700;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
}

.faq-item.active .chevron {
  transform: rotate(-135deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .faq-header {
    margin-bottom: 34px;
  }

  .faq-header h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }
}
