/**
 * Techno Throne – Customer Success section
 * Card-style blocks for brands using Super Wishlist. Modern SaaS, soft shadow, rounded corners.
 */

.customer-success {
  padding: 4rem 1.5rem;
  background: #f8fafc;
}

@media (min-width: 768px) {
  .customer-success {
    padding: 5rem 2rem;
  }
}

.customer-success__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.customer-success__header {
  text-align: center;
  margin-bottom: 3rem;
}

.customer-success__title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.75rem;
}

@media (min-width: 640px) {
  .customer-success__title {
    font-size: 2.25rem;
  }
}

.customer-success__subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.customer-success__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .customer-success__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .customer-success__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.customer-success__card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.customer-success__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.customer-success__card-brand {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.375rem;
}

.customer-success__card-industry {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6366f1;
  margin: 0 0 1rem;
}

.customer-success__card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 1.5rem;
  flex: 1;
}

.customer-success__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0967d2;
  background: transparent;
  border: 1px solid #0967d2;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-top: auto;
}

.customer-success__card-cta:hover {
  background: #0967d2;
  color: #fff;
}
