/* =============================================
   SKYBRIDGE ACCESS — Inner Page Template
   Shared styles for content/service pages
   (loaded after style.css — reuses :root vars)
   ============================================= */

.narrow { max-width: 820px; }
.center { text-align: center; }

/* =================== PAGE HERO =================== */
.page-hero {
  background: var(--navy-deep);
  padding: 160px 0 80px;
  position: relative;
}
.breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px; margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero .hero-eyebrow { color: var(--gold); margin-bottom: 18px; }
.page-h1 {
  font-family: var(--fs); font-weight: 900; color: var(--white);
  font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin-bottom: 24px;
  max-width: 820px;
}
.page-hero-sub {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 620px; margin-bottom: 40px;
}
.page-hero .hero-actions { margin-bottom: 0; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.25s var(--ease);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* =================== PAGE SECTIONS =================== */
.page-section { padding: 72px 0; background: var(--white); }
.page-section.alt { background: var(--light-bg); }
.page-section p, .page-section .lead {
  font-size: 16px; line-height: 1.8; color: var(--slate); margin-bottom: 18px;
}
.page-section .lead { font-size: 19px; color: var(--navy); font-weight: 500; }
.page-section p:last-child { margin-bottom: 0; }
.page-section em { color: var(--navy); font-style: italic; }

.section-title-sm {
  font-family: var(--fs); font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900; line-height: 1.15; color: var(--navy); margin-bottom: 24px;
}
.section-title-sm.center { text-align: center; margin-left: auto; margin-right: auto; }

.clean-list { list-style: none; margin: 20px 0; }
.clean-list li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  font-size: 16px; line-height: 1.7; color: var(--slate);
}
.clean-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; background: var(--gold);
}
.clean-list strong { color: var(--navy); }

/* =================== SOLUTIONS GRID =================== */
.solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 40px;
}
.solution-card {
  background: var(--white); padding: 40px 36px;
  border-top: 3px solid var(--gold);
}
.solution-card h3 {
  font-family: var(--fs); font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.solution-card p { font-size: 15px; line-height: 1.75; color: var(--slate); margin: 0; }

/* =================== WHY CHECKLIST (page variant) =================== */
.why-checklist--page {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px; margin-top: 40px;
}
.why-checklist--page .why-check strong { color: var(--navy); }
.why-checklist--page .why-check p { color: var(--slate); margin: 4px 0 0; font-size: 14px; }

/* =================== FAQ =================== */
.faq-item {
  padding: 24px 0; border-bottom: 1px solid rgba(13,30,53,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--fn); font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.faq-item p { font-size: 15px; line-height: 1.75; color: var(--slate); margin: 0; }

/* =================== PAGE CTA =================== */
.page-cta {
  background: var(--navy-deep); padding: 80px 0;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 720px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .why-checklist--page { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 60px; }
}
