/* === CTA CARD STYLES - Compact & Premium === */

.cta-card-container {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  animation: slideInUp 0.6s ease-out;
}

.cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #eceff1 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cta-image-wrapper {
  padding-top: 1rem;
}

.cta-product-image {
  width: 100%;
  max-width: 280px;
  height: 220px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.cta-headline {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem 0;
  color: #1e293b;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card-box {
  padding: 0.9rem 1.2rem;
  border-top: 1px solid #eee;
  background-color: #fff;
}

.cta-card-section {
  padding: 0.75rem 1.2rem;
  border-top: 1px solid #f1f5f9;
  background-color: #f9fafb;
}

/* === Base line styling === */
.cta-line {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.35rem;
}

/* === Specific Line Styles === */

.cta-line.supply {
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-line.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
}

.cta-line.feature {
  font-size: 1.0rem;
}

.cta-line.feature.highlight {
  font-weight: 700;
  font-size: 1rem;
  color: #1e40af;
}
.cta-line.feature.highlight2 {
  font-weight: 700;
  font-size: 1rem;
  color: #2f7b17;
}
/* === CTA Button === */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  margin: 1.2rem auto 1.8rem auto;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
}

/* === Scroll-in Animation === */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
