.hero-keys {
  padding: 2.8rem 0 2.1rem;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 1.6rem;
  max-width: 620px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  border-radius: var(--radius-pill);
  border: 1px solid #2b2b34;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(8, 8, 14, 0.9);
}

.keys-section {
  position: relative;
  z-index: 1;
  padding: 0 0 3rem;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-pill {
  border-radius: 14px;
  border: 1px solid #2c2c35;
  background: linear-gradient(135deg, #09090e, #050507);
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
}

.service-pill strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.15rem;
}

.service-pill span {
  color: var(--muted);
  font-size: 0.78rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.step-card {
  border-radius: 16px;
  border: 1px solid #272732;
  background: #06060b;
  padding: 0.85rem 0.9rem;
  font-size: 0.82rem;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.step-text {
  color: var(--muted);
  font-size: 0.78rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 36, 56, 0.6);
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.5rem;
}

.bullet-list {
  list-style: none;
  font-size: 0.82rem;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.bullet-list li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent);
}

.module-block {
  margin-top: 1.2rem;
}

.module-title {
  font-size: 0.95rem;
}

.module-subtitle {
  margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
  .two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-keys {
    padding: 2.3rem 0 1.7rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 6.5vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .two-cols {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step-card,
  .service-pill {
    padding: 0.8rem;
  }
}

@media (max-width: 520px) {
  .hero-keys {
    padding: 2rem 0 1.3rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-tags {
    gap: 0.4rem;
  }

  .tag-pill {
    font-size: 0.64rem;
    padding: 0.22rem 0.55rem;
    letter-spacing: 0.08em;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-subtitle,
  .step-text,
  .service-pill span,
  .bullet-list {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .badge {
    font-size: 0.64rem;
    padding: 0.2rem 0.55rem;
  }
}