/* ===== BASE FAQ PAGE ===== */
.faq-page {
      background: var(--main-white-pure-color);
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", sans-serif;
  color: #111827;
}

.faq-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 35px 20px 80px;
}

/* ===== HERO ===== */
.faq-hero {
  padding-top: 40px;
}

.faq-hero-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.faq-hero-label {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b6bff;
  background: rgba(75, 107, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

.faq-hero-title {
  font-size: 26px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.faq-hero-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 540px;
  margin: 0;
  font-weight: 500;
}

/* ===== LAYOUT ===== */
.faq-section {
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1.6fr);
  gap: 0px;
  align-items: flex-start;
  gap: 40px;
}

.faq-intro h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.faq-intro p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 10px;
  font-weight: 500;
}

.faq-intro-note {
  font-size: 13px;
  color: #6b7280;
}

/* ===== GROUPS ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-group {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 18px 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.faq-group-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-primary-color);
  margin: 0 0 8px;

}

/* ===== ITEMS ===== */
.faq-item {
  border-top: 1px solid #e5e7eb;
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-question {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  text-align: left;
  color: #0B3558;
}

.faq-question span:first-child {
  flex: 1;
}

/* icon circle */
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #4b6bff;
  inset: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* ANSWER */
.faq-answer {
  display: none;
  padding: 0 0 12px;
}

.faq-answer p {
  font-size: 13px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: #5F6E95;
  font-weight: 600;
}

/* ===== STATES ===== */
.faq-item.is-open .faq-question {
  color: var(--main-primary-color);
}

.faq-item.is-open .faq-icon {
  border-color: rgba(37, 99, 235, 0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  .faq-hero-card {
    padding: 24px 20px;
  }

  .faq-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 600px) {
  .faq-hero-title {
    font-size: 22px;
  }

  .faq-group {
    border-radius: 16px;
    padding: 14px 14px 8px;
  }

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

  .faq-answer p {
    font-size: 14px;
  }
  .faq-intro {
    display: grid;
    text-align: left;
    padding: 0px 15px 0px 15px;
}
}


section#partners-faq {
    /* background: var(--main-white-color); */
}