.terms-hero {
  position: relative;
  overflow: hidden;
}

.terms-hero::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 0 0, rgba(74, 242, 197, 0.18), transparent 55%), radial-gradient(circle at 100% 0, rgba(255, 74, 242, 0.18), transparent 55%);
  opacity: 0.7;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.terms-hero-header {
  position: relative;
  z-index: 1;
}

.terms-hero-topline {
  flex-wrap: wrap;
}

.terms-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.terms-hero-notice {
  border-radius: var(--radius-lg);
}

.terms-section {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-subtle);
}

.terms-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.terms-section h2 {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.terms-section h2::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff, transparent 60%), linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: var(--shadow-glow-primary);
}

.terms-section ul {
  list-style: disc;
}

.terms-contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-lg);
}

.terms-scroll-top {
  font-size: var(--font-size-xs);
}

@media (max-width: 768px) {
  .terms-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
