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

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

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

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

.nb-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ===========================
   Steps Section
   =========================== */
.nb-steps {
  padding: 80px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.nb-steps__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

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

.nb-step: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);
}

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

.nb-step__content {
  flex: 1;
}

.nb-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

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

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

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

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

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

.nb-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);
}

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

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

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

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

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

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

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

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

  .nb-steps {
    padding: 60px 0;
  }

  .nb-step {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

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