/* =============================================================
   CTA SECTION
   ============================================================= */

.cta {
  background: var(--color-surface, #F5F3F2);
  padding: 100px 0 100px;
}

.cta__card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 340px;
  padding: 60px 0 0 72px;
}

.cta__copy {
  flex: 0 0 auto;
  max-width: 420px;
  padding-bottom: 60px;
}

.cta__headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0 0 36px;
}

.cta__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta__badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  padding: 12px 22px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.cta__badge-btn:hover {
  opacity: 0.85;
}

.cta__badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cta__badge-sub {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta__badge-name {
  font-size: 1rem;
  font-weight: 600;
}

/* Visual — image flush to card edges on right + bottom */
.cta__visual {
  flex: 0 0 auto;
  align-self: flex-end;
  width: 46%;
  max-width: 480px;
  padding-right: 80px;
}

.cta__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 700px) {
  .cta__card {
    flex-direction: column;
    padding: 48px 32px 0;
    align-items: flex-start;
  }

  .cta__copy {
    max-width: 100%;
    padding-bottom: 40px;
  }

  .cta__visual {
    width: 85%;
    align-self: center;
  }
}
