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

.nbe-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%;
}

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

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

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

/* ===========================
   Logo Bar
   =========================== */
.nbe-logos {
  padding: 48px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
  border-top: 1px solid rgba(130, 94, 231, 0.1);
  border-bottom: 1px solid rgba(130, 94, 231, 0.1);
}

.nbe-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.nbe-logos__item img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.nbe-logos__item img:hover {
  opacity: 0.8;
}

/* ===========================
   Course Content
   =========================== */
.nbe-course {
  padding: 100px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.nbe-course__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;
}

.nbe-course__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;
}

.nbe-course__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.nbe-course__item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(130, 94, 231, 0.15);
  border-radius: 12px;
  padding: 20px 28px;
  transition: all 0.3s ease;
}

.nbe-course__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(130, 94, 231, 0.3);
  transform: translateX(4px);
}

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

.nbe-course__item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* ===========================
   Instructor Bio
   =========================== */
.nbe-instructor {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.nbe-instructor__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.nbe-instructor__photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(130, 94, 231, 0.4);
  flex-shrink: 0;
}

.nbe-instructor__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nbe-instructor__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.nbe-instructor__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

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

.nbe-testimonial--alt {
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.nbe-testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 48px;
}

.nbe-testimonial__header {
  margin-bottom: 28px;
}

.nbe-testimonial__heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.nbe-testimonial__stars {
  font-size: 1.4rem;
  color: #F5C518;
  letter-spacing: 4px;
}

.nbe-testimonial__quote p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 28px;
}

.nbe-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nbe-testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.nbe-testimonial__name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.nbe-testimonial__role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

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

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

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

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

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

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

.nbe-cta__form iframe {
  border-radius: 16px;
}

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

  .nbe-instructor__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .nbe-instructor__photo-wrap {
    margin: 0 auto;
  }

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

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

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

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

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

  .nbe-logos {
    padding: 36px 0;
  }

  .nbe-logos__grid {
    gap: 32px;
  }

  .nbe-logos__item img {
    height: 24px;
  }

  .nbe-course {
    padding: 64px 0;
  }

  .nbe-course__title {
    font-size: 1.6rem;
  }

  .nbe-course__item {
    padding: 16px 20px;
  }

  .nbe-instructor {
    padding: 64px 0;
  }

  .nbe-instructor__photo-wrap {
    width: 160px;
    height: 160px;
  }

  .nbe-testimonial {
    padding: 48px 0;
  }

  .nbe-testimonial__inner {
    padding: 32px 24px;
  }

  .nbe-testimonial__heading {
    font-size: 1.3rem;
  }

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

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

  .nbe-logos__grid {
    gap: 24px;
  }

  .nbe-course__number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
