.voltrack-waitlist-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0f1a 0%, #0d1520 50%, #0a0f1a 100%);
  padding: 150px 0;
  overflow: hidden;
}

.voltrack-waitlist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(0, 136, 204, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 136, 204, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
}

.voltrack-waitlist-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.voltrack-waitlist-header {
  text-align: center;
  margin-bottom: 80px;
}

.voltrack-waitlist-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 30px 0;
  letter-spacing: -3px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voltrack-waitlist-heading-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: voltrack-waitlist-heading-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.voltrack-waitlist-heading-line:nth-child(1) {
  animation-delay: 0.2s;
}

.voltrack-waitlist-heading-line:nth-child(2) {
  animation-delay: 0.4s;
  background: linear-gradient(90deg, #0088cc, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes voltrack-waitlist-heading-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltrack-waitlist-subtext {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: voltrack-waitlist-subtext-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes voltrack-waitlist-subtext-reveal {
  to {
    opacity: 1;
  }
}

/* Phase Progress */
.voltrack-waitlist-phase-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 60px;
  border: 2px solid rgba(0, 136, 204, 0.2);
}

.voltrack-waitlist-phase-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 136, 204, 0.2);
  border-radius: 4px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.voltrack-waitlist-phase-progress {
  height: 100%;
  background: linear-gradient(90deg, #0088cc, #00d4ff);
  border-radius: 4px;
  width: 60%;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  animation: voltrack-waitlist-progress-glow 2s ease-in-out infinite;
}

@keyframes voltrack-waitlist-progress-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 1);
  }
}

.voltrack-waitlist-phases {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.voltrack-waitlist-phase {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: voltrack-waitlist-phase-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.voltrack-waitlist-phase:nth-child(1) {
  animation-delay: 0.8s;
}

.voltrack-waitlist-phase:nth-child(2) {
  animation-delay: 1s;
}

.voltrack-waitlist-phase:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes voltrack-waitlist-phase-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltrack-waitlist-phase-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.voltrack-waitlist-phase-icon i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.voltrack-waitlist-phase-completed .voltrack-waitlist-phase-icon {
  background: linear-gradient(135deg, #00d4ff, #0088cc);
  border-color: #00d4ff;
}

.voltrack-waitlist-phase-completed .voltrack-waitlist-phase-icon i {
  color: #fff;
}

.voltrack-waitlist-phase-active .voltrack-waitlist-phase-icon {
  background: linear-gradient(135deg, #0088cc, #00aaff);
  border-color: #00d4ff;
  animation: voltrack-waitlist-phase-pulse 2s ease-in-out infinite;
}

@keyframes voltrack-waitlist-phase-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
  }
}

.voltrack-waitlist-phase-active .voltrack-waitlist-phase-icon i {
  color: #fff;
}

.voltrack-waitlist-phase-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  animation: voltrack-waitlist-pulse-ring 2s ease-out infinite;
}

@keyframes voltrack-waitlist-pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.voltrack-waitlist-phase-info {
  flex: 1;
}

.voltrack-waitlist-phase-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 5px 0;
  letter-spacing: 0.5px;
}

.voltrack-waitlist-phase-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 3px 0;
}

.voltrack-waitlist-phase-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(0, 212, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Current Phase Banner */
.voltrack-waitlist-current-phase {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(135deg, rgba(255, 136, 0, 0.1), rgba(255, 68, 0, 0.1));
  border: 2px solid rgba(255, 136, 0, 0.3);
  border-radius: 16px;
  padding: 25px 30px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
}

.voltrack-waitlist-banner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8800, #ff4400);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: voltrack-waitlist-fire-flicker 1.5s ease-in-out infinite;
}

@keyframes voltrack-waitlist-fire-flicker {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 136, 0, 0.8);
  }
}

.voltrack-waitlist-banner-icon i {
  font-size: 28px;
  color: #fff;
}

.voltrack-waitlist-banner-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
}

.voltrack-waitlist-banner-text h4 strong {
  color: #ff8800;
}

.voltrack-waitlist-banner-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Form Wrapper */
.voltrack-waitlist-form-wrapper {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
}

.voltrack-waitlist-benefits {
  height: max-content;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px 40px;
  border: 2px solid rgba(0, 136, 204, 0.2);
}

.voltrack-waitlist-benefits-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  margin: 0 0 30px 0;
  letter-spacing: 0.5px;
}

.voltrack-waitlist-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voltrack-waitlist-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.voltrack-waitlist-benefit-item i {
  font-size: 20px;
  color: #00d4ff;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Form */
.voltrack-waitlist-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.voltrack-waitlist-form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #1a1f2e;
  margin: 0 0 35px 0;
  letter-spacing: 0.5px;
}

.voltrack-waitlist-input-group {
  margin-bottom: 25px;
}

.voltrack-waitlist-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a1f2e;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.voltrack-waitlist-input {
  width: 100%;
  padding: 16px 20px;
  background: #f8f9fa;
  border: 2px solid rgba(0, 136, 204, 0.2);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1a1f2e;
  transition: all 0.3s ease;
  outline: none;
}

.voltrack-waitlist-input::placeholder {
  color: rgba(26, 31, 46, 0.4);
}

.voltrack-waitlist-input:focus {
  border-color: #0088cc;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
}

.voltrack-waitlist-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #0088cc, #00aaff);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
  margin-top: 10px;
}

.voltrack-waitlist-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 136, 204, 0.5);
}

.voltrack-waitlist-submit-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.voltrack-waitlist-submit-btn:hover i {
  transform: translateX(5px);
}

.voltrack-waitlist-privacy {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(26, 31, 46, 0.6);
  margin: 20px 0 0 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.voltrack-waitlist-privacy i {
  color: #0088cc;
}

/* Success Message */
.voltrack-waitlist-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  margin-bottom: 80px;
}

.voltrack-waitlist-success.voltrack-waitlist-show {
  display: block;
  animation: voltrack-waitlist-success-appear 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes voltrack-waitlist-success-appear {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.voltrack-waitlist-success-animation {
  margin-bottom: 30px;
}

.voltrack-waitlist-checkmark {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.voltrack-waitlist-checkmark circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: voltrack-waitlist-check-circle 0.8s ease-out forwards;
}

.voltrack-waitlist-checkmark path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: voltrack-waitlist-check-mark 0.5s ease-out 0.5s forwards;
}

@keyframes voltrack-waitlist-check-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes voltrack-waitlist-check-mark {
  to {
    stroke-dashoffset: 0;
  }
}

.voltrack-waitlist-success-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #1a1f2e;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.voltrack-waitlist-success-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(26, 31, 46, 0.8);
  margin: 0 0 25px 0;
  line-height: 1.7;
}

.voltrack-waitlist-success-position {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #0088cc;
  margin: 0;
  letter-spacing: 0.5px;
}

.voltrack-waitlist-success-position strong {
  font-size: 32px;
  color: #00d4ff;
}

/* Social Proof */
.voltrack-waitlist-social-proof {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(0, 136, 204, 0.2);
}

.voltrack-waitlist-stat {
  text-align: center;
}

.voltrack-waitlist-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #00d4ff;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.voltrack-waitlist-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Background Decorations */
.voltrack-waitlist-bg-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.9;
  pointer-events: none;
}

.voltrack-waitlist-bg-top {
  top: 100px;
  right: 150px;
  animation: voltrack-waitlist-rotate 20s linear infinite;
}

.voltrack-waitlist-bg-bottom {
  bottom: 450px;
  left: 100px;
  animation: voltrack-waitlist-float 8s ease-in-out infinite;
}

@keyframes voltrack-waitlist-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes voltrack-waitlist-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .voltrack-waitlist-main-heading {
    font-size: 60px;
  }

  .voltrack-waitlist-form-wrapper {
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .voltrack-waitlist-section {
    padding: 100px 0;
  }

  .voltrack-waitlist-container {
    padding: 0 40px;
  }

  .voltrack-waitlist-main-heading {
    font-size: 48px;
  }

  .voltrack-waitlist-phase-container {
    padding: 40px 30px;
  }

  .voltrack-waitlist-phases {
    flex-direction: column;
  }

  .voltrack-waitlist-form-wrapper {
    flex-direction: column;
  }

  .voltrack-waitlist-social-proof {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .voltrack-waitlist-main-heading {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .voltrack-waitlist-subtext {
    font-size: 16px;
  }

  .voltrack-waitlist-form {
    padding: 40px 30px;
  }

  .voltrack-waitlist-benefits {
    padding: 40px 30px;
  }

  .voltrack-waitlist-social-proof {
    flex-direction: column;
    gap: 30px;
  }

  .voltrack-waitlist-bg-decoration {
    display: none;
  }
}


@media (max-width: 500px) {

  .voltrack-waitlist-container {
    padding: 0 10px;
  }