/* ============================================================
   CRESTPOINT — PAGES SHARED STYLES
   ============================================================ */

/* Page Hero (for inner pages) */
.page-hero {
  padding: calc(72px + var(--sp-16)) 0 var(--sp-20);
  background: var(--c-black-900);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--sp-5);
}

.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--c-white-500);
  line-height: 1.7;
  max-width: 640px;
}

/* Section headings */
.section-header {
  margin-bottom: var(--sp-12);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
}

.section-sub {
  font-size: var(--text-md);
  color: var(--c-white-500);
  line-height: 1.7;
}

/* Content prose */
.prose {
  max-width: 720px;
  color: var(--c-white-700);
  line-height: 1.75;
  font-size: var(--text-base);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-white-900);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
}

.prose h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-white-900);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.prose p { margin-bottom: var(--sp-5); }

.prose ul, .prose ol {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.prose li { margin-bottom: var(--sp-2); }

.prose strong { color: var(--c-white-900); font-weight: 600; }

.prose a { color: var(--c-orange); text-decoration: underline; text-decoration-color: rgba(249, 115, 22, 0.4); }
.prose a:hover { text-decoration-color: var(--c-orange); }

/* Callout box */
.callout {
  padding: var(--sp-6) var(--sp-7);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--c-orange);
  background: var(--c-orange-100);
  margin: var(--sp-8) 0;
}

.callout--gold {
  border-color: var(--c-gold);
  background: var(--c-gold-100);
}

.callout p {
  font-size: var(--text-base);
  color: var(--c-white-700);
  line-height: 1.7;
  margin: 0;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.two-col--60-40 { grid-template-columns: 3fr 2fr; }
.two-col--40-60 { grid-template-columns: 2fr 3fr; }

/* Card grid */
.card-grid {
  display: grid;
  gap: var(--sp-5);
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Info card */
.info-card {
  padding: var(--sp-6) var(--sp-7);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-smooth);
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--c-orange-100);
  border: 1px solid var(--c-orange-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange);
  margin-bottom: var(--sp-5);
  font-size: var(--text-xl);
}

.info-card__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--c-white-900);
  margin-bottom: var(--sp-3);
}

.info-card__body {
  font-size: var(--text-sm);
  color: var(--c-white-500);
  line-height: 1.65;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-black-800);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-white-900);
  transition: background var(--dur-fast);
  text-align: left;
  width: 100%;
}

.faq-question:hover { background: var(--c-black-700); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-white-500);
  transition: transform var(--dur-base) var(--ease-smooth);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-smooth);
}

.faq-answer-inner {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  font-size: var(--text-base);
  color: var(--c-white-500);
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  background: var(--c-black-900);
}

/* CTA block (reusable) */
.cta-block {
  padding: var(--sp-16) var(--sp-10);
  background: var(--c-black-800);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-orange), var(--c-gold), transparent);
}

.cta-block__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--c-white-900);
  margin-bottom: var(--sp-4);
}

.cta-block__sub {
  font-size: var(--text-md);
  color: var(--c-white-500);
  max-width: 500px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.cta-block__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Disclaimer bar */
.disclaimer-bar {
  padding: var(--sp-4) var(--sp-6);
  background: var(--c-black-700);
  border: 1px solid var(--c-border-subtle);
  border-radius: var(--r-lg);
  margin-top: var(--sp-12);
}

.disclaimer-bar p {
  font-size: var(--text-xs);
  color: var(--c-white-300);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .two-col, .two-col--60-40, .two-col--40-60 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}
