/* ===== Padiham FAQ ===== */
.pfaq-wrap { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.pfaq-list { display: flex; flex-direction: column; gap: 14px; }

.pfaq-item {
  background: #fff;
  border: 1.5px solid #e3e5e9;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.pfaq-item:hover { border-color: #d4d7dd; box-shadow: 0 6px 22px rgba(21,23,27,.06); }
.pfaq-item.open {
  border-color: #e2641f;
  box-shadow: 0 10px 34px rgba(226,100,31,.12);
}

.pfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Archivo', sans-serif;
}
.pfaq-num {
  flex-shrink: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #e2641f;
  background: #fdf0e7;
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.pfaq-item.open .pfaq-num { background: #e2641f; color: #fff; }
.pfaq-q-text {
  flex: 1;
  font-size: 16.5px;
  font-weight: 700;
  color: #15171b;
  line-height: 1.35;
}
.pfaq-icon {
  flex-shrink: 0;
  color: #9aa0a8;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f4f5f7;
  transition: transform .3s ease, background .25s, color .25s;
}
.pfaq-item.open .pfaq-icon {
  transform: rotate(135deg);
  background: #e2641f;
  color: #fff;
}

.pfaq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.pfaq-a-inner {
  padding: 0 22px 22px 76px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #6c727c;
}
.pfaq-a-inner p { margin: 0; }

/* CTA box */
.pfaq-cta {
  margin-top: 32px;
  background: linear-gradient(135deg, #e2641f 0%, #b84e15 100%);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pfaq-cta-text { display: flex; flex-direction: column; gap: 4px; }
.pfaq-cta-text strong {
  font-family: 'Archivo', sans-serif;
  font-size: 19px; font-weight: 800; color: #fff;
}
.pfaq-cta-text span {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px; color: #9aa0a8;
}
.pfaq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.pfaq-cta-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 26px;
  border-radius: 9px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.pfaq-cta-btn.primary { background: #fff; color: #e2641f; }
.pfaq-cta-btn.primary:hover { background: #f4f5f7; color: #b84e15; }
.pfaq-cta-btn.ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.pfaq-cta-btn.ghost:hover { background: rgba(255,255,255,.16); }

@media (max-width: 768px) {
  .pfaq-q { padding: 16px 16px; gap: 12px; }
  .pfaq-num { width: 32px; height: 32px; font-size: 12px; }
  .pfaq-q-text { font-size: 15px; }
  .pfaq-a-inner { padding: 0 16px 18px 16px; font-size: 14px; }
  .pfaq-cta { padding: 24px; flex-direction: column; align-items: flex-start; text-align: left; }
  .pfaq-cta-btns { width: 100%; }
  .pfaq-cta-btn { flex: 1; text-align: center; }
}