.services-hero {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto 3rem;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(201,168,76,0.12), transparent 35%),
              rgba(11,15,27,0.95);
  border: 1px solid rgba(255,255,255,0.06);
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 55%);
  pointer-events: none;
}

.services-hero__content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__content .eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.services-hero__content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--text-primary);
}

.services-hero__content p {
  margin: 1.5rem auto 0;
  max-width: 720px;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1rem;
}

.services-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.services-container {
  max-width: 1180px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.service-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-block h2 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  color: var(--text-primary);
}

.service-block h3 {
  margin: 2rem 0 1rem;
  font-size: 1.15rem;
  color: var(--gold);
}

.service-block .desc {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.service-block li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.service-callout {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.16);
  color: var(--text-primary);
}

.service-callout h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.service-callout p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .services-hero {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .services-hero__actions {
    flex-direction: column;
  }
}

