/* ============ SUPPORT PAGE ============ */
.crumbs { font-size: 13px; color: var(--text-muted); padding: 24px 0 0; position: relative; z-index: 2; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs span { margin: 0 8px; opacity: 0.5; }

.support-section { padding: 28px 0 56px; position: relative; z-index: 2; }


/* ===== HERO ===== */
.support-section .hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 32px 0 16px;
}
.support-section .hero h1 {
  font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 28px;
  color: var(--text);
}
.support-section .hero p {
  font-size: 18px; color: rgba(245,246,248,0.85); line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 28px;
}
.contact-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 11px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #4a7cff, #2a5cbf);
  color: white;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  font-family: inherit;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(74,124,255,0.35); }
.contact-btn svg { width: 18px; height: 18px; }
.contact-btn img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}
.contact-btn.outline {
  background: linear-gradient(135deg, #4a7cff, #2a5cbf);
  color: white;
  border: 1px solid transparent;
}
.contact-btn.outline:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(74,124,255,0.35); }
.contact-btn[aria-disabled="true"] { cursor: not-allowed; opacity: 0.78; }
.contact-btn[aria-disabled="true"]:hover { transform: none; box-shadow: none; }


/* ===== Bento grid 2+1 ===== */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'cards bonus'
    'buy   buy';
  gap: 18px;
  margin-top: 32px;
}
.bento .panel {
  padding: 28px 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: border-color .25s, background .25s;
}
.bento .panel:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); }
.bento .panel.cards { grid-area: cards; }
.bento .panel.bonus { grid-area: bonus; }
.bento .panel.buy   { grid-area: buy; }


/* Category heading */
.cat-h {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}
.cat-h .cnt {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: auto;
}


/* ===== Accordion (Plus → Minus morph) ===== */
.faq details {
  background: rgba(74,124,255,0.04);
  border: 1px solid rgba(74,124,255,0.18);
  border-radius: 10px;
  margin-bottom: 6px;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq details:hover:not([open]) {
  background: rgba(74,124,255,0.08);
  border-color: rgba(74,124,255,0.32);
  transform: translateY(-1px);
}
.faq details[open] {
  background: rgba(74,124,255,0.10);
  border-color: rgba(74,124,255,0.4);
}
.faq summary {
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  font-size: 14.5px; font-weight: 600;
  list-style: none;
  cursor: pointer;
  transition: padding-left .3s cubic-bezier(0.22, 1, 0.36, 1), color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details:hover summary { padding-left: 24px; color: #fff; }
.icon-pm {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1.4);
}
.faq details:hover .icon-pm { transform: scale(1.18); }
.icon-pm::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: #6b94ff;
  transform: translate(-50%, -50%);
  transition: background .2s;
}
.icon-pm::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 14px;
  background: #6b94ff;
  transform: translate(-50%, -50%);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s, background .2s;
}
.faq details:hover .icon-pm::before,
.faq details:hover .icon-pm::after { background: #8aaaff; }
.faq details[open] .icon-pm::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.faq .answer {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: rgba(245,246,248,0.78);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.faq details[open] .answer {
  opacity: 1;
  transform: translateY(0);
}
.faq .answer a {
  color: var(--blue-bright, #6b94ff);
  border-bottom: 1px dashed rgba(107,148,255,0.4);
  padding-bottom: 1px;
  text-decoration: none;
}
.faq .answer a:hover { color: #fff; border-bottom-color: var(--blue-bright, #6b94ff); }
.faq .answer b { color: #fff; font-weight: 700; }


/* Wide bottom panel: 2 columns of Q's */
.bento .panel.buy .faq {
  columns: 2;
  column-gap: 14px;
}
.bento .panel.buy .faq details {
  break-inside: avoid;
}


/* responsive */
@media (max-width: 960px) {
  .support-section .hero h1 { font-size: 40px; }
  .support-section .hero p { font-size: 16px; }
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: 'cards' 'bonus' 'buy';
  }
  .bento .panel.buy .faq { columns: 1; }
  .bento .panel { padding: 22px 22px; }
}
@media (max-width: 600px) {
  .support-section .hero h1 { font-size: 32px; }
  .cat-h { font-size: 17px; }
}
