.section {
  padding: 3rem 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at top, #1f3c88 0, #0b1b3a 48%);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d0d7f2;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-highlight {
  color: #ffb347;
}

.hero-subtitle {
  color: #d0d7f2;
  max-width: 34rem;
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: #d0d7f2;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(6, 15, 37, 0.85);
  border: 1px solid rgba(112, 141, 255, 0.35);
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #12d18e;
  box-shadow: 0 0 0 3px rgba(18, 209, 142, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary {
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #ffb347;
  color: #1a1205;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.55);
}

.btn-outline {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 210, 255, 0.6);
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline span {
  font-size: 1.1rem;
  line-height: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
  color: white;
  margin-bottom: 0.6rem;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding-inline: 1.1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 1.1rem;
  }
}

