.kombi-cta-container {
  width: 100%;
  max-width: 940px;
  margin: 2rem auto;
  padding: 0 12px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kombi-cta {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.kombi-img-box {
  flex: 0 0 38%;
}

.kombi-img-box img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.kombi-content {
  flex: 1;
}

.kombi-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.kombi-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.kombi-badge.green {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.kombi-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.kombi-sub {
  margin: 0 0 12px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.kombi-features {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 16px;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.kombi-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.kombi-price-now {
  font-size: 22px;
  font-weight: 800;
  color: #b91c1c;
}

.kombi-price-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 14px;
  margin-top: 4px;
}

.kombi-save {
  font-size: 13px;
  padding: 4px 8px;
  background: #fef9c3;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  color: #92400e;
  font-weight: 600;
}

.kombi-btn {
  display: inline-block;
  padding: 12px 18px;
  background: #f97316;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, transform .15s;
}

.kombi-btn:hover {
  background: #fb923c;
  transform: translateY(-1px);
}

.kombi-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .kombi-cta {
    flex-direction: column;
    padding: 18px;
  }

  .kombi-img-box {
    width: 100%;
  }

  .kombi-price-box {
    flex-wrap: wrap;
  }
}