/* Project Succession Page Styles */


/* Banner icon sizing */
.banner-icon {
  width: 800px;
  height: 500px;
  border-width: 5px;
}

/* ── Hero Section ── */
.ps-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.ps-hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.ps-hero-subtitle {
  font-size: 1.5rem;
  color: #b0b0b0;
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.6;
}

.ps-hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .ps-hero-headline {
    font-size: 2.2rem;
  }
  .ps-hero-subtitle {
    font-size: 1.15rem;
  }
  .ps-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Stats Bar ── */
.ps-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: var(--spacing-xl) auto;
  flex-wrap: wrap;
}

.ps-stat {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-lg);
  flex: 1;
  min-width: 180px;
}

.ps-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00d2ff;
  margin-bottom: 6px;
}

.ps-stat-label {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ps-stat + .ps-stat {
  border-left: 1px solid rgba(0, 210, 255, 0.2);
}

@media (max-width: 600px) {
  .ps-stat + .ps-stat {
    border-left: none;
    border-top: 1px solid rgba(0, 210, 255, 0.2);
  }
  .ps-stats-bar {
    flex-direction: column;
  }
}

/* ── Section Headings ── */
.ps-section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg) auto;
}

.ps-section-heading h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: -0.5px;
}

.ps-section-heading p {
  font-size: 1.25rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* ── Problem/Solution ── */
.ps-problem-solution {
  max-width: 750px;
  margin: 0 auto var(--spacing-md) auto;
  text-align: center;
}

.ps-problem-solution h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
}

.ps-problem-solution p {
  font-size: 1.5rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.ps-problem-solution strong {
  color: #00d2ff;
}

/* ── Download Section Wrapper ── */
.ps-download-wrapper {
  max-width: 600px;
  margin: 0 auto;
}