.page-hero {
  display: flex;
  min-height: 430px;
  align-items: center;
  padding: 138px 0 70px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 5, 53, 0.97), rgba(31, 79, 145, 0.88)),
    url("/static/hero-bg.jpg") center/cover;
}

.page-hero-inner {
  max-width: 850px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
}

.page-hero h1 span,
.page-band h2 span {
  color: var(--primary);
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--white-soft);
  font-size: 20px;
}

.page-card-grid {
  display: grid;
  gap: 28px;
}

.page-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card {
  min-height: 280px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(216, 226, 244, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.route-card.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.route-card strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card h2,
.route-card h3,
.split-panel h2,
.location-card h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.route-card p,
.split-panel p,
.location-card p {
  color: var(--muted);
  font-size: 17px;
}

.route-card.dark p,
.page-band.dark .split-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.page-band {
  background: rgba(247, 249, 253, 0.78);
}

.page-band.dark {
  color: #fff;
  background: var(--secondary);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--primary);
  content: "✓";
  font-weight: 800;
}

.demo-frame {
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f1f5fc;
}

.demo-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
}

.step-grid,
.timeline {
  display: grid;
  gap: 22px;
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid article,
.timeline article,
.location-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.step-grid strong,
.timeline strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-family: "Montserrat", sans-serif;
}

.page-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.page-filter input,
.newsletter-form input {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 18px;
}

.page-filter input {
  width: min(100%, 420px);
  border-radius: 12px;
}

.page-filter span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.newsletter-form input {
  width: min(100%, 360px);
}

.location-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 980px) {
  .page-card-grid.two,
  .page-card-grid.three,
  .split-panel,
  .step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 420px;
    padding-top: 112px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
