/* ===========================
   Customer Success - Hero
   =========================== */
.cs-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #1C0944 0%, #100329 100%);
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cs-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cs-hero__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.cs-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cs-hero__image img {
  width: 100%;
  border-radius: 12px;
}

/* ===========================
   Key Stats
   =========================== */
.cs-stats {
  padding: 80px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.cs-stats__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.cs-stats__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cs-stats__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.cs-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cs-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.cs-stat-card__icon {
  height: 56px;
  width: auto;
  margin: 0 auto 20px;
}

.cs-stat-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.cs-stat-card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ===========================
   Solutions
   =========================== */
.cs-solutions {
  padding: 80px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.cs-solutions__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.cs-solutions__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
}

.cs-solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cs-solution-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 32px;
}

.cs-solution-card__icon {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.cs-solution-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cs-solution-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===========================
   Testimonials
   =========================== */
.cs-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #0F0039 0%, #100329 100%);
}

.cs-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.cs-testimonials__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
}

.cs-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cs-testi-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.cs-testi-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.cs-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.cs-testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.cs-testi-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.cs-testi-card__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ===========================
   CTA
   =========================== */
.cs-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #100329 0%, #1C0944 100%);
}

.cs-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cs-cta__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .cs-hero__inner,
  .cs-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-hero__title {
    font-size: 2.75rem;
  }

  .cs-stats__grid {
    grid-template-columns: 1fr;
  }

  .cs-solutions__grid {
    grid-template-columns: 1fr;
  }

  .cs-testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 160px 0 70px;
  }

  .cs-hero__title {
    font-size: 2.25rem;
  }

  .cs-stats,
  .cs-solutions,
  .cs-testimonials {
    padding: 60px 0;
  }

  .cs-cta {
    padding: 60px 0;
  }
}
