/* Header Overlay */
/* Page Header Styling */
.page-header {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: var(--dark);
  color: white;
  overflow: hidden;
}

.page-header-gradient-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--brand) 0%, transparent 50%);
  opacity: 0.2;
  animation: rotateGradient 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.membership-header-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.25;
  background: radial-gradient(circle at 10% 20%, var(--brand) 0%, transparent 40%);
  pointer-events: none;
}

/* Feature Icons */
.bg-brand-soft {
  background-color: rgba(190, 18, 60, 0.1);
}

.icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.icon-box i {
  line-height: 1;
}

.hover-bg-light:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Pricing Cards */
.bg-dark-soft {
  background-color: #1e293b; /* Slate 800 */
}

/* Steps Section */
.step-circle {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.step-item:hover .step-circle {
  transform: scale(1.1);
}

.steps-connector {
  position: absolute;
  top: 45px; /* Aligns with center of the circle (padding + half height) */
  left: 0;
  width: 100%;
  border-top: 2px dashed #dee2e6;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .steps-connector {
    display: none;
  }
}

/* --- Coming Soon Styles --- */
.coming-soon-placeholder {
    padding: 4rem 2rem;
    background-color: #fff;
    border: 2px dashed #dee2e6;
    border-radius: 1rem;
}