/* ============================================
   Klip Landing — Subpages (About, Privacy, Support)
   ============================================ */

/* ── Page Hero ─────────────────────────────── */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-location {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.page-tagline {
  font-size: 19px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 500px;
  line-height: 1.5;
}

/* ── Avatar ────────────────────────────────── */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* ── Page Content ──────────────────────────── */
.page-section {
  padding: 0 0 120px;
}

.page-content {
  max-width: 680px;
  margin: 0 auto;
}

.page-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--text);
}

.page-content a {
  color: var(--accent);
  transition: opacity 0.2s;
}

.page-content a:hover {
  opacity: 0.8;
}

/* ── Blockquote ────────────────────────────── */
.accent-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 40px 0;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* ── Simple List ───────────────────────────── */
.simple-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.simple-list li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.simple-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Links Row ─────────────────────────────── */
.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 48px;
}

.links-row a {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 980px;
  border: 1px solid var(--card-border);
  transition: all 0.2s;
}

.links-row a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  opacity: 1;
}

/* ── Closing Line ──────────────────────────── */
.closing-line {
  margin-top: 64px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

/* ── Highlight Box ─────────────────────────── */
.highlight-box {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 40px;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 17px;
  color: var(--text);
}

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

.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding-bottom: 20px;
}

/* ── Contact List ──────────────────────────── */
.contact-list {
  margin-bottom: 24px;
}

.contact-list p {
  margin-bottom: 8px;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 40px;
  }

  .links-row {
    justify-content: center;
  }
}