/* ===========================
   Sales Onboarding - Hero
   =========================== */
.so-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #1C0944 50%, #0F0039 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.so-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.so-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

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

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

/* ===========================
   Breakdown Section
   =========================== */
.so-breakdown {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.so-breakdown__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
}

.so-breakdown__intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.so-breakdown__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.so-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.3s ease;
}

.so-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 94, 231, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(130, 94, 231, 0.15);
}

.so-item__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #825EE7 0%, #53389E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.so-item__content {
  flex: 1;
}

.so-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.so-item__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.so-breakdown__note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  font-style: italic;
}

/* ===========================
   Timeline
   =========================== */
.so-timeline {
  padding: 48px 0 80px;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.so-timeline__inner {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
}

.so-timeline__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* ===========================
   Team
   =========================== */
.so-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.so-team__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.so-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.so-team-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.so-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(130, 94, 231, 0.3);
}

.so-team-card__photo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.so-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.so-team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.so-team-card__bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

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

.so-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

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

.so-testi-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.so-testi-card__stars {
  font-size: 1.3rem;
  color: #F5C518;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.so-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;
}

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

.so-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;
}

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

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

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

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

.so-cta__content {
  padding-top: 40px;
}

.so-cta__content .section-subtitle {
  margin-bottom: 32px;
}

.so-cta__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.so-cta__booking .meetings-iframe-container {
  min-height: 500px;
  width: 100%;
}

.so-cta__booking iframe {
  border-radius: 16px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .so-hero__title {
    font-size: 2.75rem;
  }

  .so-team__grid,
  .so-testi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .so-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .so-cta__content {
    padding-top: 0;
    text-align: center;
  }

  .so-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

  .so-breakdown {
    padding: 64px 0;
  }

  .so-breakdown__title {
    font-size: 1.6rem;
  }

  .so-item {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .so-team,
  .so-testimonials {
    padding: 64px 0;
  }

  .so-team__title {
    font-size: 1.6rem;
  }

  .so-cta {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .so-hero__title {
    font-size: 1.85rem;
  }

  .so-team-card__photo-wrap {
    width: 120px;
    height: 120px;
  }
}
