/* ── HERO ── */
.support-hero {
  padding: 160px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.support-hero .tag {
  display: inline-block;
  background: rgba(110, 227, 138, 0.1);
  border: 1px solid rgba(110, 227, 138, 0.2);
  color: var(--green);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
}

.support-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -2px;
  line-height: 1.06;
}

.support-hero h1 em {
  font-style: italic;
  color: var(--dim);
}

.support-hero p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--dim);
  font-weight: 300;
  max-width: 500px;
  margin: 20px auto 0;
}

/* ── SEARCH-LIKE CONTACT BAR ── */
.contact-bar {
  max-width: 640px;
  margin: 52px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.contact-bar-icon {
  display: flex;
  align-items: center;
  color: var(--dim);
  flex-shrink: 0;
}

.contact-bar p {
  flex: 1;
  font-size: 15px;
  color: var(--dim);
  font-weight: 300;
}

.contact-bar a {
  background: var(--white);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.contact-bar a:hover {
  opacity: 0.85;
}

/* ── LAYOUT ── */
.support-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 156, 148, 0.5);
  margin-bottom: 12px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 2px;
}

.sidebar ul a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--dim);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sidebar ul a:hover,
.sidebar ul a.active {
  background: rgba(232, 224, 208, 0.07);
  color: var(--white);
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* ── CONTENT ── */
.support-content section {
  margin-bottom: 80px;
}

.support-content section:last-child {
  margin-bottom: 0;
}

.content-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}

.content-title {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  letter-spacing: -1px;
  margin-bottom: 36px;
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 20px;
  color: var(--dim);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 15px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.7;
}

.faq-a p + p {
  margin-top: 12px;
}

.faq-a a {
  color: var(--accent);
}

/* ── STEP CARDS (troubleshooting) ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: rgba(232, 224, 208, 0.15);
}

.step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(232, 224, 208, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--accent);
}

.step-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 14px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.6;
}

.step-card code {
  display: inline-block;
  margin-top: 8px;
  background: rgba(232, 224, 208, 0.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  color: var(--accent);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.info-card .ic-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.info-card h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.65;
}

/* ── PRIVACY POLICY ── */
.prose h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin: 36px 0 12px;
}

.prose h3:first-child {
  margin-top: 0;
}

.prose p {
  font-size: 15px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul {
  margin: 0 0 16px 20px;
}

.prose ul li {
  font-size: 15px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 6px;
}

.prose .updated {
  display: inline-block;
  background: rgba(232, 224, 208, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px;
}

/* ── CONTACT SECTION ── */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card:hover {
  border-color: rgba(232, 224, 208, 0.2);
  background: #161614;
}

.contact-card .cc-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 500;
}

.contact-card p {
  font-size: 14px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.5;
}

.contact-card .cc-link {
  font-size: 14px;
  color: var(--accent);
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .support-hero {
    padding: 130px 24px 60px;
  }

  .contact-bar {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
  }

  .support-body {
    grid-template-columns: 1fr;
    padding: 40px 24px 80px;
    gap: 40px;
  }

  .sidebar {
    position: static;
  }

  .info-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
