.cta-section {
  background: var(--surface-page-soft);
}

.cta-section__inner {
  display: grid;
  gap: var(--space-1-5);
}

.cta-section__text {
  max-width: var(--content-lg);
  color: var(--text-secondary);
  font-size: var(--text-lg);
}

.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-half);
  padding: var(--space-base);
}

.offer-strip span {
  background: var(--surface-panel-strong);
  border: var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  padding: var(--space-half) var(--space-base);
}

.footer {
  border-top: var(--border-subtle);
  padding: var(--space-half) 0;
  background: var(--surface-page);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-base);
  flex-wrap: wrap;
}

.footer__brand {
  color: var(--text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.footer__tg {
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-decoration: none;
}

.footer__tg:hover {
  color: var(--text-primary);
}