:root {
  --p-green: #E45A2A;
  --p-green-2: #B93F16;
  --p-ink: #0f172a;
  --p-muted: #64748b;
  --p-border: rgba(15, 23, 42, .10);
  --p-card: rgba(255, 255, 255, .92);
  --p-shadow: 0 18px 50px rgba(2, 6, 23, .10);
  --p-shadow-sm: 0 10px 30px rgba(2, 6, 23, .08);
  --p-radius: 22px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  right: 16px;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
  transition: top .2s ease;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

/* =========================
   Premium Hero
   ========================= */
.faq-hero {
  position: relative;
  padding: 64px 0 46px;
  background:
    radial-gradient(1200px 520px at 70% -40%, rgba(228, 90, 42, .22), transparent 60%),
    radial-gradient(900px 420px at 10% -20%, rgba(228, 90, 42, .14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  overflow: hidden;
}

.faq-hero__content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.faq-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(228, 90, 42, .20);
  background: rgba(228, 90, 42, .06);
  color: var(--p-green-2);
  font-weight: 900;
  font-size: 13px;
}

.faq-hero__title {
  margin: 14px 0 10px;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--p-ink);
}

.faq-hero__sub {
  margin: 0;
  color: var(--p-muted);
  font-size: 16px;
  line-height: 1.9;
}

.faq-hero__crumb {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--p-muted);
  font-weight: 700;
  font-size: 13px;
}

.faq-hero__crumb a {
  color: var(--p-ink);
  text-decoration: none;
  opacity: .9;
}

.faq-hero__crumb a:hover {
  color: var(--p-green-2);
}

/* =========================
   Layout
   ========================= */
.p-section {
  padding: 64px 0;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Search + categories bar */
.faq-toolbar {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--p-border);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  min-width: 280px;
  flex: 1 1 320px;
}

.faq-search i {
  color: var(--p-green);
}

.faq-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font-family: inherit;
  font-weight: 700;
  color: var(--p-ink);
  background: transparent;
}

.faq-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: var(--p-ink);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

.faq-count i {
  color: var(--p-green);
}

.faq-cats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.cat-btn {
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: var(--p-ink);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .18s ease;
}

.cat-btn i {
  color: var(--p-muted);
}

.cat-btn:hover {
  border-color: rgba(228, 90, 42, .22);
  background: rgba(228, 90, 42, .06);
}

.cat-btn.active {
  background: linear-gradient(180deg, rgba(228, 90, 42, .18), rgba(228, 90, 42, .06));
  border-color: rgba(228, 90, 42, .24);
  color: var(--p-green-2);
}

.cat-btn.active i {
  color: var(--p-green-2);
}

/* =========================
   FAQ Cards (premium accordion)
   ========================= */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card {
  background: var(--p-card);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow-sm);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.faq-card:hover {
  border-color: rgba(228, 90, 42, .20);
  box-shadow: var(--p-shadow);
  transform: translateY(-2px);
}

.faq-q {
  width: 100%;
  text-align: right;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--p-ink);
  font-weight: 900;
}

.faq-q .faq-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(228, 90, 42, .18);
  background: rgba(228, 90, 42, .06);
  color: var(--p-green-2);
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.faq-chevron {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-muted);
  transition: .18s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  border-top: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .75);
}

.faq-a__pad {
  padding: 14px 18px 18px;
  color: var(--p-muted);
  line-height: 1.9;
  font-weight: 700;
  font-size: 14px;
}

.faq-a__pad p {
  margin: 0 0 10px;
}

.faq-a__pad ul,
.faq-a__pad ol {
  margin: 0;
  padding-right: 18px;
  display: grid;
  gap: 8px;
}

.faq-a__pad li {
  color: var(--p-ink);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.7;
  opacity: .9;
}

.faq-card.open .faq-a {
  max-height: 800px;
}

.faq-card.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--p-green-2);
  border-color: rgba(228, 90, 42, .22);
  background: rgba(228, 90, 42, .06);
}

/* =========================
   Support box (premium)
   ========================= */
.support-box {
  margin-top: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(228, 90, 42, .16), rgba(228, 90, 42, .06));
  border: 1px solid rgba(228, 90, 42, .20);
  box-shadow: var(--p-shadow-sm);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.support-box h3 {
  margin: 0;
  font-size: 20px;
  color: var(--p-ink);
  font-weight: 900;
}

.support-box p {
  margin: 0;
  color: var(--p-muted);
  font-weight: 700;
  line-height: 1.9;
}

.support-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.support-link {
  text-decoration: none;
  color: var(--p-ink);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(2, 6, 23, .06);
  transition: .18s ease;
}

.support-link:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 90, 42, .22);
  background: rgba(228, 90, 42, .04);
  box-shadow: 0 18px 44px rgba(2, 6, 23, .10);
}

.support-ic {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 90, 42, .18);
  background: rgba(228, 90, 42, .06);
  color: var(--p-green-2);
  flex: 0 0 auto;
  font-size: 18px;
}

.support-link strong {
  display: block;
  font-weight: 900;
  margin-bottom: 2px;
}

.support-link span {
  display: block;
  color: var(--p-muted);
  font-weight: 800;
  font-size: 12.5px;
  direction: ltr;
  text-align: right;
}

/* =========================
   Quick links (premium)
   ========================= */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.quick-card {
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(2, 6, 23, .06);
  transition: .18s ease;
  color: var(--p-ink);
  display: grid;
  gap: 8px;
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 90, 42, .22);
  box-shadow: var(--p-shadow);
  background: rgba(228, 90, 42, .03);
}

.quick-ic {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 90, 42, .08);
  border: 1px solid rgba(228, 90, 42, .18);
  color: var(--p-green-2);
  font-size: 18px;
}

.quick-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.quick-card p {
  margin: 0;
  color: var(--p-muted);
  font-weight: 700;
  line-height: 1.8;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1100px) {
  .faq-hero__title {
    font-size: 34px;
  }

  .support-links {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 40px 0 30px;
  }

  .faq-hero__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .faq-hero__title {
    font-size: 24px;
  }
}