/* ── SHARED PAGE STYLES ── */
/* Used across legal, content, and inner pages */

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 120px 24px 60px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(165,0,48,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(155,48,255,0.10) 0%, transparent 60%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -1.5px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 span {
  background: linear-gradient(90deg, var(--pink), #b87fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PAGE CONTENT WRAPPER ── */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--pink); }

/* ── EFFECTIVE TAG ── */
.effective-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(165,0,48,0.08);
  border: 1px solid rgba(165,0,48,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 40px;
}
.effective-tag span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ── INFO CARD ── */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.info-card strong { color: var(--text); }

/* ── CONTENT SECTIONS ── */
.content-section {
  margin-bottom: 48px;
}
.content-section p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-section a {
  color: var(--pink);
  text-decoration: none;
}
.content-section a:hover { text-decoration: underline; }
.content-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.content-section ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── SECTION HEADER ── */
.sec-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.sec-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.sec-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), #b87fff);
  box-shadow: 0 0 14px rgba(165,0,48,0.3);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(165,0,48,0.06);
  border: 1px solid rgba(165,0,48,0.18);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 20px;
}
.highlight-box strong {
  display: block;
  color: var(--pink);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── FOOTER (inner pages) ── */
.footer-main {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
  margin-top: 12px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--pink); }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ff2d78; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .page-hero { padding: 100px 20px 48px; }
  .page-content { padding: 40px 20px 60px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .sec-header { gap: 12px; }
  .sec-header h3 { font-size: 1rem; }
}
