.aigenix-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
  gap: 16px;
  color: var(--aigenix-core-text);
  text-align: center;
}

.aigenix-section-heading__badge,
.aigenix-section-heading__eyebrow {
  width: 100%;
  margin: 0;
  color: var(--aigenix-core-secondary);
  font-family: var(--aigenix-core-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.aigenix-section-heading__badge {
  display: inline-flex;
  width: auto;
  min-height: 2rem;
  align-items: center;
  border: 1px solid var(--aigenix-core-border);
  border-radius: var(--aigenix-core-radius-full);
  background: var(--aigenix-core-glass);
  color: var(--aigenix-core-text-secondary);
  padding-inline: 0.9rem;
}

.aigenix-section-heading__title {
  margin: 0;
  color: var(--aigenix-core-text);
  font-family: var(--aigenix-core-font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.aigenix-section-heading--highlight-gradient .aigenix-highlight {
  background: var(--aigenix-core-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aigenix-section-heading--highlight-underline .aigenix-highlight {
  position: relative;
  color: var(--aigenix-core-text);
}

.aigenix-section-heading--highlight-underline .aigenix-highlight::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0.04em;
  block-size: 0.16em;
  border-radius: var(--aigenix-core-radius-full);
  background: var(--aigenix-core-gradient);
  content: "";
  opacity: 0.75;
  z-index: -1;
}

.aigenix-section-heading--highlight-accent .aigenix-highlight {
  color: var(--aigenix-core-accent);
}

.aigenix-section-heading__description {
  width: 100%;
  color: var(--aigenix-core-text-secondary);
  font-family: var(--aigenix-core-font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.aigenix-section-heading__description>* {
  margin-block: 0;
}

.aigenix-section-heading__decor {
  display: block;
  inline-size: 80px;
  block-size: 3px;
  border-radius: var(--aigenix-core-radius-full);
  background: var(--aigenix-core-gradient);
}