/* Exact Brand Identity Colors Setup */
:root {
  --primary-color: #3e38f5;
  --secondary-color: #c642d6;
  --dark-bg: #090818;
  --text-muted: #a3a1cc;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--dark-bg);
  color: #ffffff;
  overflow-x: hidden;
}

/* Header navigaton/*
		
		/* Core Header Structural Blueprint */
.smart-navbar-header {
  background: rgba(9, 8, 24, 0.75); /* Brand Dark Base with Translucency */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

/* Scroll Active Micro Shrink State */
.smart-navbar-header.scrolled {
  padding: 10px 0;
  background: rgba(9, 8, 24, 0.9);
  border-color: rgba(62, 56, 245, 0.2);
}

/* Brand Identity Logo Styling */
.smart-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.logo-icon-sphere {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3e38f5 0%, #c642d6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(62, 56, 245, 0.3);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.text-gradient-pop {
  background: linear-gradient(135deg, #ffffff 30%, #c642d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Center Desktop Navigation Links Loop */
.smart-nav-links {
  gap: 8px;
}

.smart-nav-links .nav-link {
  color: #a3a1cc !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px !important;
  border-radius: 30px;
  transition: all 0.25s ease;
  position: relative;
}

.smart-nav-links .nav-link:hover,
.smart-nav-links .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.04);
}

/* Right-Side Authentication Actions Bundle */
.nav-auth-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-btn-login {
  color: #a3a1cc !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px !important;
  border-radius: 12px;
  border: 1px solid transparent !important;
  transition: all 0.25s ease !important;
  text-decoration: none;
}

.auth-btn-login:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.auth-btn-signup {
  background: linear-gradient(135deg, #3e38f5 0%, #c642d6 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px !important;
  border-radius: 12px;
  border: none !important;
  box-shadow: 0 8px 20px rgba(62, 56, 245, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.auth-btn-signup i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.auth-btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(62, 56, 245, 0.4) !important;
}

.auth-btn-signup:hover i {
  transform: translateX(3px);
}

/* Custom Hamburger Icon Setup */
.custom-hamburger-btn {
  border: none !important;
  background: transparent !important;
  padding: 8px !important;
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile responsive alterations (Screen breakpoint mapping) */
@media (max-width: 991.98px) {
  .smart-navbar-header {
    padding: 12px 0;
  }

  /* Responsive Canvas Dropdown Transformation overlay */
  .navbar-collapse {
    position: fixed;
    top: 68px; /* Alignment strictly aligned to bar height */
    left: 0;
    right: 0;
    bottom: 0;
    background: #090818;
    height: calc(100vh - 68px) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1999;
    overflow-y: auto;
  }

  .navbar-collapse.show-mobile-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .smart-nav-links {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    flex-direction: column;
  }

  .smart-nav-links .nav-link {
    font-size: 1.3rem;
    padding: 14px 0 !important;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav-auth-actions-group {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-top: auto;
  }

  .auth-btn-login,
  .auth-btn-signup {
    width: 100%;
    justify-content: center;
    padding: 14px !important;
    font-size: 1.1rem;
  }

  /* Cross Transformation state for menu toggle button */
  .custom-hamburger-btn.is-active .line-top {
    transform: translateY(7px) rotate(45deg);
    background-color: #c642d6;
  }
  .custom-hamburger-btn.is-active .line-mid {
    opacity: 0;
  }
  .custom-hamburger-btn.is-active .line-bottom {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #c642d6;
  }
}

/* End Header navigaton/*

        /* Unique Premium Hero Container with Custom Gradients */
.hero-section {
  position: relative;
  padding: 120px 0 120px 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(198, 66, 214, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(62, 56, 245, 0.15) 0%,
      transparent 50%
    );
  overflow: hidden;
}

/* Abstract Glow Effects */
.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(62, 56, 245, 0.2),
    rgba(198, 66, 214, 0.2)
  );
  filter: blur(120px);
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(62, 56, 245, 0.15);
  filter: blur(100px);
  border-radius: 50%;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 5;
}

/* Top Trendy Badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

/* Primary Dynamic Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #d2d0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Secondary Accent Subtitle */
.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.hero-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* Body Typography and Flow Details */
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-desc-highlight {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  border-left: 3px solid var(--secondary-color);
  padding-left: 15px;
  margin-top: 25px;
  margin-bottom: 35px;
}

/* Premium Buttons Custom Core */
.btn-premium-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a24d6 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(62, 56, 245, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(62, 56, 245, 0.5);
  color: #ffffff;
}

.btn-premium-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-premium-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Interactive Perspective Dashboard Layout */
.hero-visual-wrapper {
  position: relative;
  z-index: 5;
}

.main-dashboard-mockup {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 25px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-12deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.hero-visual-wrapper:hover .main-dashboard-mockup {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

/* Floating Analytics Cards */
.floating-card {
  position: absolute;
  background: rgba(9, 8, 24, 0.85);
  border: 1px solid rgba(198, 66, 214, 0.3);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  animation: float 4s ease-in-out infinite;
  z-index: 6;
}

.card-attendees {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}

.card-sales {
  top: -30px;
  right: -20px;
  border-color: rgba(62, 56, 245, 0.4);
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  margin-bottom: 12px;
}

/* Section 2 */

/* Core Layout & Typography Configuration */
.features-section {
  background-color: #090818; /* 3rd Brand Color */
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

.features-badge {
  background: rgba(62, 56, 245, 0.1);
  color: #c642d6; /* Secondary Accent */
  border: 1px solid rgba(198, 66, 214, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 60%, #a3a1cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #a3a1cc;
  line-height: 1.6;
}

/* Glassmorphism Feature Cards */
.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 15px 10px; /* Crucial for slick item gaps */
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 66, 214, 0.4);
  box-shadow: 0 20px 40px rgba(62, 56, 245, 0.15);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

/* Iconic Color Box Configurations */
.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 25px;
}

.feature-icon-box.box-1 {
  background: rgba(62, 56, 245, 0.15);
  color: #3e38f5;
}
.feature-icon-box.box-2 {
  background: rgba(198, 66, 214, 0.15);
  color: #c642d6;
}
.feature-icon-box.box-3 {
  background: linear-gradient(
    135deg,
    rgba(62, 56, 245, 0.2),
    rgba(198, 66, 214, 0.2)
  );
  color: #ffffff;
}

.feature-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: #a3a1cc;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Feature Bullet Badges Inside Cards */
.feature-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d2d0ff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-card:hover .badge-tag {
  background: rgba(62, 56, 245, 0.08);
  border-color: rgba(62, 56, 245, 0.2);
  color: #ffffff;
}

/* Custom Slick Slide Arrows & Dots UI Styling */
.slick-dots li button:before {
  color: #ffffff !important;
  font-size: 8px !important;
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  color: #c642d6 !important; /* Secondary Pop Accent */
  opacity: 1;
}

/* Mobile-First Adjustments */
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  .features-section {
    padding: 60px 0;
  }
  .feature-card {
    padding: 25px 20px;
  }
}

/* End Section 2 */

/* Section 3 */

/* Section Background & Global Settings */
.benefits-section {
  background-color: #090818; /* 3rd Brand Color */
  padding: 120px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Ambient Radial Glow Effect behind the text */
.benefits-glow {
  position: absolute;
  top: 30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(62, 56, 245, 0.12) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Left Sticky Side Layout */
.sticky-benefit-header {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  z-index: 2;
}

.benefits-badge {
  color: #c642d6; /* Secondary Accent */
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.benefits-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #d2d0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-main-desc {
  color: #a3a1cc;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Decorative vertical dynamic marker */
.benefits-cta-line {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.line-dot {
  width: 8px;
  height: 8px;
  background-color: #3e38f5; /* Primary */
  border-radius: 50%;
  box-shadow: 0 0 12px #3e38f5;
}

.line-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Unique Neon Glassmorphic Cards */
.benefit-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Unique Soft Hover Border Pop-up effect */
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 56, 245, 0.4); /* Primary Glow */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  box-shadow: 0 20px 40px rgba(62, 56, 245, 0.1);
}

/* Custom Colored Accents for alternating card designs */
.benefit-card.accent-card:hover {
  border-color: rgba(198, 66, 214, 0.4); /* Secondary Glow */
  box-shadow: 0 20px 40px rgba(198, 66, 214, 0.1);
}

/* Icon Container Design */
.benefit-icon-wrapper {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3e38f5; /* Primary Color Default */
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(62, 56, 245, 0.3);
}

.benefit-card.accent-card:hover .benefit-icon-wrapper {
  background: #c642d6; /* Secondary Color For Accents */
  border-color: #c642d6;
  box-shadow: 0 8px 20px rgba(198, 66, 214, 0.3);
}

.benefit-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: #a3a1cc;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile & Tablet Responsiveness Overrides */
@media (max-width: 991.98px) {
  .benefits-section {
    padding: 80px 0;
  }
  .sticky-benefit-header {
    position: relative;
    top: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .benefits-main-title {
    font-size: 2.1rem;
  }
  /* Disable desktop offset asymmetry on small devices to keep stack clean */
  .feature-box-wrapper.mt-md-5 {
    margin-top: 0 !important;
  }
}

/* End Section 3 */

/*  Section 4 */

/* Core Section Style Setup */
.event-types-section {
  background-color: #090818; /* 3rd Color */
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

.type-badge {
  background: rgba(198, 66, 214, 0.1);
  color: #c642d6; /* Secondary Color */
  border: 1px solid rgba(198, 66, 214, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.type-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 50%, #d2d0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.type-main-subtitle {
  color: #a3a1cc;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Unique Hover Card System Architecture */
.type-interactive-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Internal Dynamic Backdrop Glow */
.type-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(62, 56, 245, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Accent Card variant glow switch */
.type-interactive-card.active-style-accent .type-card-glow {
  background: radial-gradient(
    circle,
    rgba(198, 66, 214, 0.15) 0%,
    transparent 60%
  );
}

.type-content-box {
  position: relative;
  z-index: 3;
}

/* Iconic Circle Setup */
.type-icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.type-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.type-desc {
  font-size: 0.95rem;
  color: #a3a1cc;
  line-height: 1.6;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

/* Micro-interaction Arrow */
.type-arrow {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  display: inline-flex;
}

/* Hover Interactive Mechanics */
.type-interactive-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 56, 245, 0.4); /* Primary Color border glow */
  box-shadow: 0 20px 40px rgba(62, 56, 245, 0.1);
}

.type-interactive-card.active-style-accent:hover {
  border-color: rgba(198, 66, 214, 0.4); /* Secondary Color border glow */
  box-shadow: 0 20px 40px rgba(198, 66, 214, 0.1);
}

.type-interactive-card:hover .type-card-glow {
  opacity: 1;
}

.type-interactive-card:hover .type-icon-circle {
  background: #3e38f5; /* Primary */
  border-color: #3e38f5;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(62, 56, 245, 0.4);
}

.type-interactive-card.active-style-accent:hover .type-icon-circle {
  background: #c642d6; /* Secondary */
  border-color: #c642d6;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(198, 66, 214, 0.4);
}

.type-interactive-card:hover .type-arrow {
  color: #3e38f5;
  transform: rotate(45deg);
}

.type-interactive-card.active-style-accent:hover .type-arrow {
  color: #c642d6;
}

/* Flawless Mobile Adjustment Controls */
@media (max-width: 991.98px) {
  .event-types-section {
    padding: 60px 0;
  }
  .type-main-title {
    font-size: 2rem;
  }
  .type-interactive-card {
    padding: 30px 20px;
  }
}

/* End Section 4 */

/* Section 5 */

.powerful-features-section {
  background-color: #090818; /* Brand Dark Background */
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

.powerful-badge {
  background: rgba(62, 56, 245, 0.1);
  color: #3e38f5; /* Brand Primary */
  border: 1px solid rgba(62, 56, 245, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.powerful-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #a3a1cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.powerful-main-subtitle {
  color: #a3a1cc;
  font-size: 1.05rem;
}

/* Feature Items List Styles */
.powerful-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.powerful-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

.powerful-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.powerful-item-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.powerful-item-desc {
  font-size: 0.9rem;
  color: #a3a1cc;
  line-height: 1.5;
  margin-bottom: 0;
  display: none; /* Desktop par sirf active state par expand hoga */
}

/* Interactive Active/Focus Classes */
.powerful-feature-item.active {
  background: linear-gradient(
    90deg,
    rgba(62, 56, 245, 0.08) 0%,
    rgba(198, 66, 214, 0.02) 100%
  );
  border-color: rgba(62, 56, 245, 0.3);
}

.powerful-feature-item.active .powerful-number {
  background: #3e38f5;
  color: #ffffff;
}

.powerful-feature-item.active .powerful-item-title {
  color: #c642d6; /* Brand Accent Pop */
}

.powerful-feature-item.active .powerful-item-desc {
  display: block; /* Expand script context seamlessly */
}

/* Premium Visual Canvas Box Styling */
.powerful-preview-canvas {
  background: #121124;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.canvas-window-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.canvas-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}
.canvas-url {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Dynamic Image Switcher Stack Panel */
.canvas-image-wrapper {
  position: relative;
  height: 420px;
  background: #0d0c1d;
}

.canvas-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canvas-panel.active {
  opacity: 1;
  visibility: visible;
}

.dashboard-img {
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Glassmorphism Micro Micro Card inside Canvas */
.image-overlay-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(9, 8, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.image-overlay-card h6 {
  font-size: 0.85rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .canvas-image-wrapper {
    height: 300px;
  }
  .powerful-item-desc {
    display: block !important;
  } /* Mobile me sab transparent open dikhenge */
}

/* End Section 5 */

/*  Section 6 */

/* Section Wrapper Setup */
.organizer-benefits-section {
  background-color: #090818; /* Brand Dark Background */
  padding: 120px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Ambient Deep Lighting */
.organizer-bg-glow {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(198, 66, 214, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
}

.organizer-mini-badge {
  background: rgba(198, 66, 214, 0.12);
  color: #c642d6; /* Secondary Accent */
  border: 1px solid rgba(198, 66, 214, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 15px;
}

.organizer-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 50%, #d2d0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.organizer-main-subtitle {
  color: #a3a1cc;
  font-size: 1.05rem;
  max-width: 600px;
}

/* Left Column Canvas Arts (Orbit Wheels) */
.organizer-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.orbit-circle-main {
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateOrbit 40s linear infinite;
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.core-logo-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3e38f5 0%, #c642d6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(62, 56, 245, 0.5);
  animation: counterRotate 40s linear infinite; /* Keeps icon upright */
}

/* Satellite Floating Pills */
.satellite-badge {
  position: absolute;
  background: rgba(18, 17, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: counterRotate 40s linear infinite;
}

.sat-1 {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(62, 56, 245, 0.4);
}
.sat-2 {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(198, 66, 214, 0.4);
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.floating-metrics-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.bg-success-soft {
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Right Column Benefit Strips Layout */
.organizer-benefit-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  position: relative;
}

/* Strip Hover Micro Interactions */
.organizer-benefit-strip:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(62, 56, 245, 0.3);
  box-shadow: -5px 10px 30px rgba(62, 56, 245, 0.05);
}

.strip-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.strip-icon-box.box-blue {
  background: rgba(62, 56, 245, 0.12);
  color: #3e38f5;
}
.strip-icon-box.box-purple {
  background: rgba(198, 66, 214, 0.12);
  color: #c642d6;
}

.organizer-benefit-strip:hover .strip-icon-box {
  transform: scale(1.05);
}

.strip-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.strip-desc {
  font-size: 0.95rem;
  color: #a3a1cc;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Mobile Responsiveness Viewports */
@media (max-width: 991.98px) {
  .organizer-benefits-section {
    padding: 60px 0;
  }
  .organizer-main-title {
    font-size: 2rem;
  }
  .organizer-benefit-strip {
    padding: 20px;
    gap: 16px;
  }
  .organizer-benefit-strip:hover {
    transform: translateY(-4px);
  } /* Standard vertical motion for mobile touch */
  .organizer-visual-container {
    display: none;
  } /* Clear clutter on mobile screens to save layout structure */
}

/* End Section 6 */

/*  Section 7 */

/* Section Background Setup */
.trusted-marquee-section {
  background-color: #090818; /* Brand Dark Background */
  padding: 100px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Left Content Styles */
.trusted-text-wrapper {
  padding: 0 10%;
}

.trusted-mini-badge {
  background: rgba(62, 56, 245, 0.1);
  color: #3e38f5; /* Brand Primary */
  border: 1px solid rgba(62, 56, 245, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.trusted-main-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.trusted-main-desc {
  color: #a3a1cc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Internal Micro Stats UI */
.trusted-stats-row {
  display: flex;
  gap: 30px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #c642d6; /* Brand Secondary Pop */
}

.stat-label {
  font-size: 0.8rem;
  color: #a3a1cc;
  font-weight: 500;
}

/* Infinite Marquee Engineering */
.marquee-scroller-container {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
}

/* Edge Masking Overlays for Premium Depth Blur */
.marquee-fade-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, #090818 20%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.marquee-fade-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to left, #090818 20%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Marquee Rails & Animation Performance Filters */
.marquee-track {
  display: flex;
  width: max-content;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  will-change: transform;
}

/* Moving Directions Animation Triggers */
.track-left-to-right .marquee-content {
  animation: scrollLeftToRight 30s linear infinite;
}

.track-right-to-left .marquee-content {
  animation: scrollRightToLeft 30s linear infinite;
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause track motion on card hover interaction */
.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

/* Pill Element Badges Styles */
.marquee-pill {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.marquee-pill i {
  color: #3e38f5; /* Icon Default primary color */
  font-size: 1.1rem;
}

.marquee-pill.pill-accent i {
  color: #c642d6; /* Secondary color for second track row icons */
}

/* Pill Hover Highlight Accent */
.marquee-pill:hover {
  background: rgba(62, 56, 245, 0.06);
  border-color: rgba(62, 56, 245, 0.3);
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(62, 56, 245, 0.1);
}

.marquee-pill.pill-accent:hover {
  background: rgba(198, 66, 214, 0.06);
  border-color: rgba(198, 66, 214, 0.3);
  box-shadow: 0 10px 20px rgba(198, 66, 214, 0.1);
}

/* Mobile Responsive Optimization Adaptations */
@media (max-width: 991.98px) {
  .trusted-marquee-section {
    padding: 60px 0;
  }
  .trusted-text-wrapper {
    padding: 0 15px;
    text-align: center;
    margin-bottom: 20px;
  }
  .trusted-main-title {
    font-size: 1.9rem;
  }
  .trusted-stats-row {
    justify-content: center;
    margin-bottom: 20px;
  }
  .marquee-scroller-container {
    padding: 10px 0;
  }
  .marquee-pill {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* End Section 6 */

/* End Section 7 */

/* Core Section Setup */
.faq-tabs-section {
  background-color: #090818; /* 3rd Brand Color */
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

.faq-badge {
  background: rgba(198, 66, 214, 0.1);
  color: #c642d6; /* Secondary Accent */
  border: 1px solid rgba(198, 66, 214, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.faq-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 60%, #a3a1cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-main-subtitle {
  color: #a3a1cc;
  font-size: 1.05rem;
}

/* Custom Interactive Left Navigation Pills */
.faq-custom-tabs {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 20px;
  gap: 10px;
}

.faq-custom-tabs .nav-link {
  color: #a3a1cc;
  background: transparent;
  border: 1px solid transparent;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-custom-tabs .nav-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Active Tab Styles mapped to Brand Colors */
.faq-custom-tabs .nav-link.active {
  background: linear-gradient(
    90deg,
    rgba(62, 56, 245, 0.15) 0%,
    rgba(198, 66, 214, 0.05) 100%
  ) !important;
  color: #ffffff !important;
  border-color: rgba(62, 56, 245, 0.4);
  box-shadow: 0 10px 20px rgba(62, 56, 245, 0.1);
}

.faq-custom-tabs .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.faq-custom-tabs .nav-link.active i {
  color: #c642d6;
  transform: rotate(45deg);
}

/* Custom Accordion Elements */
.faq-accordion .faq-item {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .faq-btn {
  background: transparent !important;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 24px;
  box-shadow: none !important;
  border: none;
  transition: color 0.3s ease;
}

/* Accordion Open Active States */
.faq-accordion .faq-item:has(.show),
.faq-accordion .faq-item:hover {
  border-color: rgba(62, 56, 245, 0.3) !important;
  background: rgba(62, 56, 245, 0.02) !important;
}

.faq-accordion .faq-btn:not(.collapsed) {
  color: #3e38f5 !important; /* Brand Primary Focus Title */
}

/* Custom Accordion Indicator Arrow Icon */
.faq-accordion .faq-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a3a1cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transition: transform 0.3s ease;
}

.faq-accordion .faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233E38F5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-body {
  color: #a3a1cc;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 24px 24px 24px;
  background: transparent;
}

/* Mobile Responsiveness Viewports */
@media (max-width: 991.98px) {
  .faq-tabs-section {
    padding: 60px 0;
  }
  .faq-main-title {
    font-size: 2rem;
  }
  .faq-custom-tabs {
    flex-direction: row !important;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }
  .faq-custom-tabs .nav-link {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .faq-accordion .faq-btn {
    padding: 18px;
    font-size: 1rem;
  }
  .faq-body {
    padding: 0 18px 18px 18px;
  }
}

/* End Section 7 */

/*  Section 8 */

/* Section Main Boundary Container */
.premium-cta-section {
  background-color: #090818; /* Brand Dark Theme Background */
  padding: 120px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* Ambient Radial Blur Lighting Engines */
.cta-glow-overlay-1 {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(62, 56, 245, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(40px);
}

.cta-glow-overlay-2 {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(198, 66, 214, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(40px);
}

/* Mini Top Badge Component */
.cta-mini-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* Pulsing Status Dot Inside Badge */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #c642d6; /* Secondary Accent Glow */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(198, 66, 214, 0.7);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(198, 66, 214, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(198, 66, 214, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(198, 66, 214, 0);
  }
}

/* Core Title Formatting */
.cta-main-heading {
  font-size: 3.5rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 40%, #e1dfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext / Content Optimization */
.cta-sub-paragraph {
  font-size: 1.15rem;
  color: #a3a1cc;
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

/* Button Cluster Layout Engine */
.cta-button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button Variant 1: Primary Action (Free Trial) */
.cta-btn-primary {
  background: linear-gradient(135deg, #3e38f5 0%, #c642d6 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 16px 32px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 25px rgba(62, 56, 245, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-btn-primary i {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(62, 56, 245, 0.45) !important;
}

.cta-btn-primary:hover i {
  transform: translateX(4px);
}

/* Button Variant 2: Secondary Action (Demo Request) */
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.03) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 16px 30px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 14px !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-3px);
}

/* Button Variant 3: Tertiary Action (Talk to Expert) */
.cta-btn-tertiary {
  background: transparent !important;
  color: #a3a1cc !important;
  border: 1px solid transparent !important;
  padding: 16px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 14px !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn-tertiary:hover {
  color: #ffffff !important;
  background: rgba(198, 66, 214, 0.05) !important;
}

/* Micro Trust Tags Styles */
.cta-trust-signals {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.trust-pill {
  font-size: 0.85rem;
  color: #64628a;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.trust-pill i {
  color: #3e38f5; /* Primary brand accent color for trust checks */
}

/* Mobile Responsive Adaptive Layout Viewports */
@media (max-width: 991.98px) {
  .premium-cta-section {
    padding: 80px 0;
  }
  .cta-main-heading {
    font-size: 2.3rem;
    letter-spacing: -0.01em;
  }
  .cta-sub-paragraph {
    font-size: 1rem;
    margin-bottom: 36px;
  }
  .cta-button-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-btn-primary,
  .cta-btn-secondary,
  .cta-btn-tertiary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
  }
  .cta-trust-signals {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* End Section 8 */

/* Perfect Mobile Responsiveness Fixes */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 120px 0 80px 0;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-desc-highlight {
    border-left: none;
    border-top: 2px solid var(--secondary-color);
    padding-left: 0;
    padding-top: 15px;
  }
  .hero-visual-wrapper {
    margin-top: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .main-dashboard-mockup {
    transform: none !important;
  }
  .card-attendees {
    left: 10px;
  }
  .card-sales {
    right: 10px;
  }
  .btn-actions {
    justify-content: center;
  }
}
