/* ===================================================================
   ForHer (لها) — subpages (privacy / support)
   Reuses the tokens + components from forher.css. Load AFTER forher.css.
   =================================================================== */

.subpage { padding-block: clamp(48px, 7vw, 96px); }

/* ---- page hero ---- */
.page-hero { max-width: 74ch; margin-bottom: clamp(34px, 5vw, 60px); }
.page-hero .display { margin-top: 16px; }
.page-hero .lead { margin-top: 18px; }
.page-hero .updated {
  margin-top: 16px; font-size: .9rem; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: .5em;
}
.page-hero .updated::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
}

/* ---- legal / readable prose ---- */
.prose { max-width: 76ch; font-size: 1.06rem; color: var(--ink-2); }
.prose h2 {
  font-weight: 900; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink); margin: 44px 0 12px; line-height: 1.3;
  scroll-margin-top: 90px;
}
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-weight: 700; font-size: 1.12rem; color: var(--ink); margin: 26px 0 8px; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 20px; padding: 0; list-style: none; }
.prose li { position: relative; margin-bottom: 11px; padding-inline-start: 1.6em; }
.prose li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.prose a { color: var(--accent); font-weight: 500; border-bottom: 1px solid var(--accent-tint); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose .note {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 20px 22px; margin: 20px 0;
}

/* ---- support: contact card ---- */
.sub-h { font-weight: 900; font-size: clamp(1.3rem, 2.6vw, 1.9rem); margin: 0 0 20px; }

.contact-card {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  justify-content: space-between;
  background: var(--ink); color: var(--surface);
  border-radius: var(--r-card); padding: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vw, 64px); box-shadow: var(--shadow-card);
}
.contact-card .cc-copy h2 { font-weight: 900; font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin: 0 0 6px; }
.contact-card .cc-copy p { margin: 0; color: rgba(251, 249, 244, .72); }
.contact-card .cc-mail {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); color: var(--ink); font-weight: 700;
  padding: .95em 1.4em; border-radius: var(--r-btn); font-size: 1.05rem;
  white-space: nowrap; transition: transform .2s var(--ease);
}
.contact-card .cc-mail:hover { transform: translateY(-2px); }
.contact-card .cc-mail svg { width: 20px; height: 20px; stroke: var(--accent); stroke-width: 2; fill: none; }

/* ---- support: help topic grid ---- */
.support-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: clamp(44px, 6vw, 68px);
}
.help-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.help-card .tile { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px; }
.help-card .tile svg { width: 23px; height: 23px; stroke: var(--ink); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.help-card h3 { font-weight: 700; font-size: 1.12rem; margin: 0 0 6px; }
.help-card p { margin: 0; color: var(--ink-3); font-size: .96rem; line-height: 1.6; }

@media (max-width: 860px) {
  .support-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .support-grid { grid-template-columns: 1fr; }
}
