/* Záró felhívás: mustársárga sáv, benne a bemutatókérő e-mail-űrlap. */

.cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--f-mustard);
  color: var(--f-on-shape);
}

.cta__shape {
  position: absolute;
  right: -6vw;
  top: -10vw;
  width: 25vw;
  height: 25vw;
  max-width: 360px;
  max-height: 360px;
  border-radius: 50%;
  background: var(--f-coral);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.cta h2 {
  max-width: 13ch;
}

.cta__card {
  padding: 22px;
  border-radius: var(--r-card);
  background: var(--f-card);
  color: var(--f-ink);
}

.cta__card h3 {
  margin-bottom: 14px;
  font-size: 1.125rem;
}

.cta__price {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--f-line);
  color: var(--f-ink-soft);
}

@media (max-width: 860px) {
  .cta__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta__shape {
    width: 46vw;
    height: 46vw;
    right: -18vw;
    top: -22vw;
  }
}
