/* ─── CTA Section ─── */
.cta-section {
  padding: 88px 24px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-card {
  border: 1px solid var(--bd);
  border-radius: var(--br);
  overflow: hidden;
  background: var(--sf);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

@media (max-width: 1279px) {
  .cta-card {
    grid-template-columns: 1fr;
  }
}

/* Left half: copy + buttons */
.cta-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta-left {
    padding: 36px 24px;
  }
}

.cta-heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--tx);
  margin-bottom: 14px;
}

.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tm);
  max-width: 44ch;
  margin-bottom: 28px;
}

/* Store buttons row — NEVER wraps */
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.cta-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  background: var(--bg);
  color: var(--tx);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  line-height: 1.4;
  flex: 0 1 auto;
}

.cta-store-btn:hover {
  border-color: var(--ac);
  background: rgba(124, 92, 252, 0.04);
  color: var(--ac);
}

.cta-store-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cta-store-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Right half: decorative diamond grid */
.cta-right {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 300px;
}

@media (max-width: 1279px) {
  .cta-right {
    min-height: 180px;
  }
}

.cta-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ac);
  opacity: 0.6;
}
