/* Ad Cleanse - shared styles for document-style pages */

.page-header {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.page-header p { color: var(--muted); font-size: 1rem; }

.content-wrap { max-width: 720px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; line-height: 1.7; }

.tldr {
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--accent-dim);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 3rem;
}
.tldr strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tldr p { font-size: 0.95rem; color: var(--text); }

.content-wrap h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 0.6rem;
  color: var(--text);
}
.content-wrap h2:first-of-type { margin-top: 0; }
.content-wrap p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.content-wrap ul { color: var(--muted); font-size: 0.95rem; margin: 0.5rem 0 0.75rem 1.2rem; }
.content-wrap ul li { margin-bottom: 0.35rem; }
.content-wrap a { color: var(--accent); text-decoration: none; }
.content-wrap a:hover { text-decoration: underline; }
.content-wrap hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.content-wrap code { color: var(--accent); font-size: 0.9rem; }
strong.hl { color: var(--text); }

/* ── numbered step rows (uninstall, contact) ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  min-width: 44px;
  text-align: center;
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.step-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.step-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ── contact methods ── */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  margin-bottom: 1.25rem;
}
.contact-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.contact-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.9rem; }

/* ── FAQ ── */
.faq-list { margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  background: var(--surface);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.2rem; }
.faq-item .faq-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.6rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-item .faq-body a { color: var(--accent); text-decoration: none; }
.faq-item .faq-body a:hover { text-decoration: underline; }
