/* ============================================
   FAQ SECTION — 2-column modern accordion
   ============================================ */

#faq-section {
  background: #f8f9fc;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

#faq-section::before {
  content: 'FAQ';
  position: absolute;
  top: 10px;
  right: -20px;
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #ececec;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* Header */
.faq-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e55400;
  margin-bottom: 14px;
}

.faq-eyebrow::before,
.faq-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: #e55400;
  opacity: 0.5;
}

.faq-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #0a0f1a;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  line-height: 1.15;
  font-family: 'Poppins', sans-serif;
}

.faq-title span {
  color: #e55400;
}

.faq-sub {
  font-size: 15px;
  color: #9ca3af;
  margin: 0;
}

/* 2-column grid */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Item */
.faq-item {
  background: #fff;
  border: 1.5px solid #eef0f6;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(229, 84, 0, 0.2);
  box-shadow: 0 4px 16px rgba(229, 84, 0, 0.06);
}

.faq-item.faq-open {
  border-color: rgba(229, 84, 0, 0.3);
  box-shadow: 0 4px 20px rgba(229, 84, 0, 0.08);
}

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  transition: color 0.18s;
  line-height: 1.45;
  font-family: 'Poppins', sans-serif;
}

.faq-q:hover {
  color: #e55400;
}

.faq-item.faq-open .faq-q {
  color: #e55400;
}

.faq-num {
  font-size: 10.5px;
  font-weight: 700;
  color: #e55400;
  opacity: 0.45;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  width: 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-item.faq-open .faq-num {
  opacity: 1;
}

.faq-q>span:not(.faq-num) {
  flex: 1;
}

.faq-ico {
  font-size: 18px;
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.18s;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.faq-open .faq-ico {
  color: #e55400;
}

/* Answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  padding: 0 20px 0 52px;
}

.faq-item.faq-open .faq-a {
  max-height: 320px;
  padding: 0 20px 18px 52px;
}

.faq-a p {
  font-size: 13.5px;
  line-height: 1.75;
  color: #6b7280;
  margin: 0;
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
}

/* CTA bar */
.faq-cta-bar {
  background: #fff;
  border: 1.5px solid #eef0f6;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-cta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-cta-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #0a0f1a;
  font-family: 'Poppins', sans-serif;
}

.faq-cta-text span {
  font-size: 13.5px;
  color: #9ca3af;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #e55400, #cc4b00);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(229, 84, 0, 0.3);
  border: none;
  font-family: 'Poppins', sans-serif;
}

.faq-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 84, 0, 0.38);
}

.faq-cta-btn i {
  transition: transform 0.18s;
}

.faq-cta-btn:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 860px) {
  .faq-cols {
    grid-template-columns: 1fr;
  }

  .faq-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  #faq-section {
    padding: 56px 0 48px;
  }

  .faq-cta-bar {
    padding: 18px 16px;
  }

  .faq-q {
    font-size: 13px;
    padding: 16px 14px;
  }

  .faq-a {
    padding: 0 14px 0 46px;
  }

  .faq-item.faq-open .faq-a {
    padding: 0 14px 14px 46px;
  }
}

#faq-section::before {
  content: 'FAQ';
  position: absolute;
  top: 20px;
  right: -20px;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #ececec;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* Header */
.faq-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}