
.cta-card {
  position: relative;
  padding: 80px 24px;
  background: #ffffff;
}

.cta-card__container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-card__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #f8f9fa;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-card__wrapper--image-left {
  grid-template-columns: 1fr 1fr;
}

.cta-card__wrapper--image-right {
  grid-template-columns: 1fr 1fr;
}

.cta-card__wrapper--image-right .cta-card__image {
  order: 2;
}

.cta-card__wrapper--image-right .cta-card__content {
  order: 1;
}

.cta-card__image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.cta-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cta-card__wrapper:hover .cta-card__image img {
  transform: scale(1.05);
}

.cta-card__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}

.cta-card__badge svg {
  width: 14px;
  height: 14px;
}

.cta-card__title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-card__title--highlight {
  color: #10b981;
  display: block;
}

.cta-card__description {
  font-size: 17px;
  color: #64748b;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.cta-card__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-card__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
}

.cta-card__stat svg {
  width: 18px;
  height: 18px;
  color: #10b981;
}

.cta-card__stat-value {
  font-weight: 700;
  color: #0f172a;
}

.cta-card__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta-card__button:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.cta-card__button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-card__button:hover svg {
  transform: translateX(4px);
}

.cta-card__wrapper--bg-light {
  background: #f8f9fa;
}

.cta-card__wrapper--bg-green {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.cta-card__wrapper--bg-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.cta-card__wrapper--bg-purple {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.cta-card__wrapper--bg-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.cta-card__wrapper--bg-dark .cta-card__title,
.cta-card__wrapper--bg-dark .cta-card__stat-value {
  color: #ffffff;
}

.cta-card__wrapper--bg-dark .cta-card__description,
.cta-card__wrapper--bg-dark .cta-card__stat {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 60px 20px;
  }

  .cta-card__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-card__wrapper--image-right .cta-card__image,
  .cta-card__wrapper--image-right .cta-card__content {
    order: initial;
  }

  .cta-card__image {
    min-height: 300px;
  }

  .cta-card__content {
    padding: 40px 24px;
  }

  .cta-card__title {
    font-size: 32px;
  }

  .cta-card__description {
    font-size: 15px;
  }

  .cta-card__stats {
    gap: 16px;
  }

  .cta-card__button {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cta-card__content {
    padding: 48px 32px;
  }

  .cta-card__title {
    font-size: 36px;
  }
}
