.page-hero {
  background: linear-gradient(135deg, #192839 0%, #2C3E50 50%, #1a2634 100%);
  color: #fff;
  padding: 56px 24px 64px;
  text-align: center;
}
.page-hero--compact {
  padding: 48px 24px 56px;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}
.page-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.page-section { padding: 56px 24px 64px; }
.page-container { max-width: 1200px; margin: 0 auto; }
.page-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 28px);
  color: #192839;
  text-align: center;
  margin: 0 0 8px;
}
.page-section-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #545861;
  text-align: center;
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.page-features-list { background: #fff; }
.page-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #E3E7EB;
}
.page-feature-block:last-of-type { border-bottom: none; }
@media (max-width: 768px) {
  .page-feature-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .page-feature-block-even .page-feature-media { order: -1; }
}
.page-feature-block-even .page-feature-content { order: 2; }
.page-feature-block-even .page-feature-media { order: 1; }

.page-feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #192839;
  margin: 0 0 16px;
  line-height: 1.35;
}
.page-feature-list {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #545861;
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
}
.page-feature-list li { margin-bottom: 8px; }
.page-feature-list li:last-child { margin-bottom: 0; }

.page-feature-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-feature-icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #F7F9FA;
  border: 1px solid #E3E7EB;
  color: #192839;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.page-roadmap { background: #F7F9FA; }
.page-roadmap-list { display: flex; flex-direction: column; gap: 24px; }
.page-roadmap-phase {
  background: #fff;
  border: 1px solid #E3E7EB;
  border-radius: 16px;
  padding: 24px 28px;
}
.page-roadmap-phase-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #192839;
  margin: 0 0 12px;
}
.page-roadmap-phase .page-feature-list { margin: 0; }

.page-about { background: #fff; }
.page-about-content {
  max-width: 900px;
  font-family: 'Poppins', sans-serif;
  color: #545861;
  line-height: 1.7;
}
.page-about-content h3 {
  font-weight: 600;
  font-size: 20px;
  color: #192839;
  margin: 32px 0 12px;
}
.page-about-content h3:first-child {
  margin-top: 0;
}
.page-about-content p {
  margin: 0 0 16px;
}
