/* ============================================
   FAQ SECTION
   Padding: 70px top / 90px bottom
   ============================================ */

.faq-section {
  background-color: #ffffff;
  padding: 70px 0 90px;
  box-sizing: border-box;
}

/* Inner container */
.faq-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ── Header ── */
.faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.faq-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
}

.faq-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  letter-spacing: 0px;
  color: #1A1A1A;
  margin: 0;
}

.faq-highlight {
  color: var(--primary);
}

/* ── Accordion List ── */
.faq-list {
  width: 100%;
  max-width: 864px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Single FAQ Item ── */
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

/* ── Question row — closed H 60px ── */
.faq-question {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
}

/* Question text — Inter SemiBold 17px LH32 LS0 #000000 */
.faq-question-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #000000;
  flex: 1;
  transition: color 0.2s ease;
}

.faq-question:hover .faq-question-text {
  color: var(--primary);
}

/* Plus icon — 38×38 */
.faq-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

/* ── Answer — hidden by default ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
  box-sizing: border-box;
}

/* Answer text — Inter Regular 16px LH28 LS0 #333333 */
.faq-answer-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #333333;
  margin: 0;
  padding-bottom: 20px;
  width: 80%;
}

/* ── Icon rotation ── */
.faq-icon {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* Open item border */
.faq-item.is-open {
  border-color: #E6E6E6;
}

/* ══════════════════════════════════════════════
   FAQ — RESPONSIVE
══════════════════════════════════════════════ */

/* ≤ 1200px */
@media (max-width: 1200px) {
  .faq-inner   { padding: 0 32px; }
  .faq-heading { font-size: 40px; line-height: 50px; }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .faq-section  { padding: 56px 0 70px; }
  .faq-inner    { padding: 0 24px; gap: 36px; }
  .faq-heading  { font-size: 32px; line-height: 42px; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .faq-heading         { font-size: 28px; line-height: 38px; }
  .faq-tag             { font-size: 13px; }
  .faq-question-text   { font-size: 16px; }
  .faq-question        { padding: 0 18px; }
  .faq-answer          { padding: 0 18px; }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .faq-section  { padding: 48px 0 60px; }
  .faq-inner    { padding: 0 16px; gap: 28px; }
  .faq-heading  { font-size: 26px; line-height: 36px; }
  .faq-tag      { font-size: 12px; letter-spacing: 0.8px; }

  .faq-question      { height: 56px; padding: 0 16px; gap: 12px; }
  .faq-question-text { font-size: 15px; line-height: 22px; }
  .faq-answer        { padding: 0 16px; }
  .faq-answer-text   { font-size: 15px; line-height: 26px; padding-bottom: 16px; }

  .faq-icon { width: 32px; height: 32px; }
}

/* ≤ 430px */
@media (max-width: 430px) {
  .faq-inner    { padding: 0 12px; }
  .faq-heading  { font-size: 22px; line-height: 32px; }
  .faq-question { height: 52px; }
  .faq-question-text { font-size: 14px; }
  .faq-answer-text   { font-size: 14px; line-height: 24px; }
}
