.cta-pastel-section {
  width: 100%;
  padding: 96px 24px;
  background: linear-gradient(135deg, #FFF5EE 0%, #EEF3FE 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

.cta-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 8px 40px rgba(255, 106, 31, 0.06);
}

.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: #FF6A1F;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.cta-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0A0A14;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.cta-yeyak-flow {
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #FF6A1F 0%,
    #FF3D7F 25%,
    #6B5BFF 50%,
    #0050FF 75%,
    #FF6A1F 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: cta-yeyak-flow 10s linear infinite;
}

@keyframes cta-yeyak-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-yeyak-flow {
    animation: none;
    color: #FF6A1F;
    -webkit-text-fill-color: #FF6A1F;
  }
}

.cta-sub {
  font-size: 14px;
  color: #5A5A6A;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 480px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF6A1F;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta-btn:hover {
  background: #FF5500;
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-stat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cta-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-stat-icon-orange { background: #FBEBDF; }
.cta-stat-icon-blue   { background: #EEF3FE; }
.cta-stat-icon-mint   { background: #EAF6F0; }

.cta-stat-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A14;
  line-height: 1.35;
}

.cta-stat-sub {
  font-size: 12px;
  color: #5A5A6A;
  line-height: 1.5;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .cta-pastel-section {
    padding: 64px 16px;
  }
  .cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
  .cta-h2 {
    font-size: 30px;
  }
}
