/* ========================================
   VOLTRACK INVESTOR PAGE CSS
   Unique tech-forward design with extensive scroll animations
   ======================================== */

/* === ROOT VARIABLES === */
:root {
  --voltrack-primary-blue: #00d4ff;
  --voltrack-secondary-blue: #0088cc;
  --voltrack-dark-blue: #0055aa;
  --voltrack-bg-dark: #0a0f1a;
  --voltrack-bg-darker: #0d1520;
  --voltrack-text-white: #ffffff;
  --voltrack-text-gray: rgba(255, 255, 255, 0.7);
  --voltrack-text-dim: rgba(255, 255, 255, 0.5);
  --voltrack-accent-cyan: #00ffff;
  --voltrack-accent-teal: #00aacc;

  --voltrack-font-primary: 'Montserrat', sans-serif;
  --voltrack-font-tech: 'Orbitron', sans-serif;

  --voltrack-transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --voltrack-transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--voltrack-font-primary);
  background: var(--voltrack-bg-dark);
  color: var(--voltrack-text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === SMOOTH SCROLL SYSTEM === */
#voltrack-investor-smooth-scroll-height {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

#voltrack-investor-smooth-scroll-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}

/* === HERO SECTION === */
.voltrack-investor-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--voltrack-bg-dark) 0%, var(--voltrack-bg-darker) 50%, var(--voltrack-bg-dark) 100%);
}

/* 3D Grid Background */
.voltrack-investor-hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 170%;
  background-image:
    linear-gradient(90deg, rgba(0, 136, 204, 0.35) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 136, 204, 0.35) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 200px 100px, 100px 200px;
  transform-origin: top center;
  transform: perspective(900px) rotateX(65deg) translateY(-5%);
  opacity: 1;
  filter: drop-shadow(0 20px 35px rgba(0, 212, 255, 0.25));
  pointer-events: none;
  animation: voltrack-investor-grid-float 25s linear infinite;
  z-index: 1;
}

@keyframes voltrack-investor-grid-float {
  0%, 100% { 
    background-position: 200px 100px, 100px 200px;
    transform: perspective(900px) rotateX(65deg) translateY(-5%);
  }
  50% { 
    background-position: 30px 15px, 15px 30px; 
    transform: perspective(900px) rotateX(65deg) translateY(-3%);
  }
}

/* Rapid grid animation on load */
@keyframes voltrack-investor-grid-rapid-intro {
  0% {
    background-position: 0 0, 0 0;
    transform: perspective(900px) rotateX(65deg) translateY(-5%) scale(1.2);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    background-position: 200px 100px, 100px 200px;
    transform: perspective(900px) rotateX(65deg) translateY(-5%) scale(1);
    opacity: 1;
  }
}

/* APPLY rapid intro when class is added */
.voltrack-investor-hero-grid-overlay.voltrack-grid-intro {
  animation: voltrack-investor-grid-rapid-intro 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}






/* Animated Particles */
.voltrack-investor-hero-particles-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.voltrack-investor-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--voltrack-primary-blue);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--voltrack-primary-blue);
  animation: voltrack-investor-particle-float var(--duration, 4s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes voltrack-investor-particle-float {
  0% {
    opacity: 0;
    transform: translate(var(--x-start, 0), var(--y-start, 100vh)) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x-end, 100px), var(--y-end, -100vh)) scale(1.5);
  }
}

/* Hero Content */
.voltrack-investor-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
}

/* Canvas for spark effects */
.voltrack-investor-hero-spark-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.voltrack-investor-hero-spark-canvas.voltrack-sparks-active {
  opacity: 1;
}

.voltrack-investor-hero-title {
  font-family: var(--voltrack-font-tech);
  font-weight: 900;
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.voltrack-investor-title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px) rotateX(90deg);
  animation: voltrack-investor-title-line-reveal 1s var(--voltrack-transition-smooth) forwards 1.1s;
}

.voltrack-investor-title-line:nth-child(1) {
  animation-delay: 0.8s;
}

.voltrack-investor-title-line:nth-child(3) {
  animation-delay: 1s;
}

/* Vehicle Security Clang Animation */
.voltrack-title-word {
  display: inline-block;
  opacity: 0;
}

.voltrack-title-word.voltrack-word-vehicle {
  transform: translateX(-100px) rotate(-15deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.voltrack-title-word.voltrack-word-security {
  transform: translateX(100px) rotate(15deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.voltrack-title-word.voltrack-word-clang {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

.voltrack-title-word.voltrack-word-impact {
  animation: voltrack-investor-word-shake 0.3s ease;
}

@keyframes voltrack-investor-word-shake {
  0%, 100% {
    transform: translateX(0) rotate(0);
  }
  25% {
    transform: translateX(-3px) rotate(-2deg);
  }
  75% {
    transform: translateX(3px) rotate(2deg);
  }
}

@keyframes voltrack-investor-title-line-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.voltrack-investor-title-highlight {
  color: var(--voltrack-primary-blue);
}





.voltrack-investor-hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: var(--voltrack-text-gray);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.voltrack-investor-hero-subtitle.voltrack-typewriter-active {
  opacity: 1;
}

.voltrack-investor-hero-subtitle.voltrack-typewriter-active::after {
  content: '|';
  animation: voltrack-investor-cursor-blink 0.8s step-end infinite;
  color: var(--voltrack-primary-blue);
  margin-left: 2px;
}

@keyframes voltrack-investor-cursor-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* Scroll Indicator */
.voltrack-investor-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  animation: voltrack-investor-scroll-indicator-reveal 0.8s var(--voltrack-transition-smooth) 2s forwards;
}

@keyframes voltrack-investor-scroll-indicator-reveal {
  to {
    opacity: 1;
  }
}

.voltrack-investor-scroll-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--voltrack-text-dim);
  margin-bottom: 10px;
}

.voltrack-investor-scroll-arrow {
  font-size: 20px;
  color: var(--voltrack-primary-blue);
  animation: voltrack-investor-scroll-bounce 2s ease-in-out infinite;
}

@keyframes voltrack-investor-scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* === SECTION SHARED STYLES === */
.voltrack-investor-section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--voltrack-transition-smooth);
}

.voltrack-investor-section-header.voltrack-investor-visible {
  opacity: 1;
  transform: translateY(0);
}

.voltrack-investor-section-number {
  font-family: var(--voltrack-font-tech);
  font-size: 18px;
  font-weight: 700;
  color: var(--voltrack-primary-blue);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.voltrack-investor-section-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.voltrack-investor-section-header.voltrack-investor-visible .voltrack-investor-section-number::before {
  left: 100%;
}

.voltrack-investor-section-title {
  font-family: var(--voltrack-font-tech);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.voltrack-investor-section-subtitle {
  font-size: 20px;
  color: var(--voltrack-text-gray);
  font-weight: 400;
}

/* === CRISIS SECTION === */
.voltrack-investor-crisis-section {
  position: relative;
  width: 100%;
  height: max-content;
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--voltrack-bg-dark) 0%, rgba(10, 15, 26, 0.95) 100%);
  overflow: hidden;
}

.voltrack-investor-crisis-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(204, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.voltrack-investor-crisis-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.voltrack-investor-crisis-visualization {
  flex: 0 0 450px;
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voltrack-investor-crisis-circle-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: all 1.2s var(--voltrack-transition-smooth);
}

.voltrack-investor-crisis-circle-wrapper.voltrack-investor-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.voltrack-investor-crisis-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.voltrack-investor-crisis-circle-bg {
  fill: none;
  stroke: rgba(204, 0, 0, 0.2);
  stroke-width: 3;
}

.voltrack-investor-crisis-circle-progress {
  fill: none;
  stroke: #cc0000;
  stroke-width: 3;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  filter: drop-shadow(0 0 15px rgba(204, 0, 0, 0.8));
  transition: stroke-dashoffset 2s var(--voltrack-transition-smooth) 0.5s;
}

.voltrack-investor-crisis-circle-wrapper.voltrack-investor-visible .voltrack-investor-crisis-circle-progress {
  stroke-dashoffset: 0;
}

.voltrack-investor-crisis-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.voltrack-investor-crisis-number {
  font-family: var(--voltrack-font-tech);
  font-size: 64px;
  font-weight: 900;
  color: #ff3333;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

.voltrack-investor-crisis-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--voltrack-text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.voltrack-investor-crisis-period {
  font-size: 14px;
  color: var(--voltrack-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voltrack-investor-crisis-pulse-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  pointer-events: none;
}

.voltrack-investor-pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(204, 0, 0, 0.4);
  border-radius: 50%;
  animation: voltrack-investor-pulse-expand 3s ease-out infinite;
}

.voltrack-investor-pulse-ring:nth-child(2) {
  animation-delay: 1s;
}

.voltrack-investor-pulse-ring:nth-child(3) {
  animation-delay: 2s;
}

@keyframes voltrack-investor-pulse-expand {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.voltrack-investor-crisis-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.voltrack-investor-crisis-detail-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s var(--voltrack-transition-smooth);
}

.voltrack-investor-crisis-detail-item.voltrack-investor-visible {
  opacity: 1;
  transform: translateX(0);
}

.voltrack-investor-crisis-detail-item:nth-child(1) {
  transition-delay: 0.2s;
}

.voltrack-investor-crisis-detail-item:nth-child(2) {
  transition-delay: 0.4s;
}

.voltrack-investor-crisis-detail-item:nth-child(3) {
  transition-delay: 0.6s;
}

.voltrack-investor-crisis-detail-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: rgba(204, 0, 0, 0.15);
  border: 2px solid rgba(204, 0, 0, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ff3333;
  transition: all 0.4s ease;
}

.voltrack-investor-crisis-detail-item:hover .voltrack-investor-crisis-detail-icon {
  background: rgba(204, 0, 0, 0.25);
  border-color: #ff3333;
  transform: scale(0.9);
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
}

.voltrack-investor-crisis-detail-content h3 {
  font-family: var(--voltrack-font-tech);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--voltrack-text-white);
}

.voltrack-investor-crisis-detail-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--voltrack-text-gray);
}

/* === ROADMAP SECTION === */
.voltrack-investor-roadmap-section {
  position: relative;
  width: 100%;
  height: max-content;
  padding: 120px 60px;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.95) 0%, var(--voltrack-bg-darker) 100%);
  overflow: hidden;
}

.voltrack-investor-roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 136, 204, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.voltrack-investor-roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0;
}

/* Circuit Line */
.voltrack-investor-roadmap-circuit-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, rgba(0, 136, 204, 0.3), rgba(0, 136, 204, 0.3), transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.voltrack-investor-circuit-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--voltrack-primary-blue), var(--voltrack-secondary-blue));
  box-shadow: 0 0 20px var(--voltrack-primary-blue);
  transition: height 0.3s linear;
}

.voltrack-investor-circuit-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--voltrack-primary-blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 
    0 0 20px var(--voltrack-primary-blue),
    0 0 40px rgba(0, 212, 255, 0.6);
  animation: voltrack-investor-circuit-pulse-beat 1.5s ease-in-out infinite;
  opacity: 0;
  transition: top 0.3s linear, opacity 0.3s ease;
}

.voltrack-investor-circuit-pulse.voltrack-investor-active {
  opacity: 1;
}

@keyframes voltrack-investor-circuit-pulse-beat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Roadmap Milestones */
.voltrack-investor-roadmap-milestone {
  position: relative;
  display: flex;
  margin-bottom: 100px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s var(--voltrack-transition-smooth);
}

.voltrack-investor-roadmap-milestone.voltrack-investor-visible {
  opacity: 1;
}

.voltrack-investor-milestone-left {
  justify-content: flex-end;
  padding-right: calc(50% + 60px);
}

.voltrack-investor-milestone-right {
  justify-content: flex-start;
  padding-left: calc(50% + 60px);
}

/* Milestone Connector */
.voltrack-investor-milestone-connector {
  position: absolute;
  top: 50%;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--voltrack-primary-blue), var(--voltrack-secondary-blue));
  box-shadow: 0 0 10px var(--voltrack-primary-blue);
  transition: width 0.8s var(--voltrack-transition-smooth) 0.3s;
  z-index: 2;
}

.voltrack-investor-roadmap-milestone.voltrack-investor-visible .voltrack-investor-milestone-connector {
  width: 50px;
}

.voltrack-investor-connector-left {
  right: 50%;
  transform: translateX(20px);
}

.voltrack-investor-connector-right {
  left: 50%;
  transform: translateX(-20px);
}

/* Milestone Node */
.voltrack-investor-milestone-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--voltrack-bg-darker);
  border: 3px solid var(--voltrack-secondary-blue);
  border-radius: 50%;
  z-index: 3;
  transition: all 0.4s var(--voltrack-transition-smooth);
}

.voltrack-investor-milestone-node::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(0, 136, 204, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.voltrack-investor-roadmap-milestone:hover .voltrack-investor-milestone-node::before {
  opacity: 1;
}

.voltrack-investor-node-inner {
  position: absolute;
  inset: 4px;
  background: var(--voltrack-secondary-blue);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s var(--voltrack-transition-smooth);
}

.voltrack-investor-roadmap-milestone.voltrack-investor-visible .voltrack-investor-node-inner {
  opacity: 1;
  transform: scale(1);
}

.voltrack-investor-node-ripple {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--voltrack-primary-blue);
  border-radius: 50%;
  opacity: 0;
}

.voltrack-investor-roadmap-milestone.voltrack-investor-visible .voltrack-investor-node-ripple {
  animation: voltrack-investor-node-ripple-expand 2s ease-out infinite;
}

@keyframes voltrack-investor-node-ripple-expand {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Current Node Special Styling */
.voltrack-investor-node-current {
  border-color: var(--voltrack-primary-blue);
  box-shadow: 0 0 20px var(--voltrack-primary-blue);
}

.voltrack-investor-node-current .voltrack-investor-node-inner {
  background: var(--voltrack-primary-blue);
}

.voltrack-investor-node-pulse-outer {
  position: absolute;
  inset: -16px;
  border: 3px solid var(--voltrack-primary-blue);
  border-radius: 50%;
  animation: voltrack-investor-node-pulse-beat-outer 2s ease-in-out infinite;
}

@keyframes voltrack-investor-node-pulse-beat-outer {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Milestone Card */
.voltrack-investor-milestone-card {
  position: relative;
  background: linear-gradient(145deg, rgba(0, 136, 204, 0.08), rgba(0, 136, 204, 0.04));
  border: 2px solid rgba(0, 136, 204, 0.25);
  padding: 35px;
  max-width: 500px;
  transform: scale(0.95);
  overflow: hidden;
}

.voltrack-investor-roadmap-milestone.voltrack-investor-visible .voltrack-investor-milestone-card {
  transform: scale(1);
}

.voltrack-investor-milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.voltrack-investor-roadmap-milestone:hover .voltrack-investor-milestone-card::before {
  left: 100%;
}

.voltrack-investor-roadmap-milestone:hover .voltrack-investor-milestone-card {
  border-color: var(--voltrack-primary-blue);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.25);
  transform: scale(1.02);
}

.voltrack-investor-card-current {
  border-color: var(--voltrack-primary-blue);
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.12), rgba(0, 136, 204, 0.08));
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.voltrack-investor-milestone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.voltrack-investor-milestone-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 136, 204, 0.15);
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--voltrack-primary-blue);
  transition: all 0.4s ease;
}

.voltrack-investor-roadmap-milestone:hover .voltrack-investor-milestone-icon {
  background: rgba(0, 212, 255, 0.25);
  transform: scale(0.9);
}

.voltrack-investor-milestone-meta {
  text-align: right;
}

.voltrack-investor-milestone-quarter {
  font-family: var(--voltrack-font-tech);
  font-size: 14px;
  font-weight: 700;
  color: var(--voltrack-primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.voltrack-investor-milestone-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voltrack-investor-status-complete {
  background: rgba(0, 255, 0, 0.15);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.voltrack-investor-status-current {
  background: rgba(0, 212, 255, 0.15);
  color: var(--voltrack-primary-blue);
  border: 1px solid var(--voltrack-primary-blue);
  animation: voltrack-investor-status-pulse 2s ease-in-out infinite;
}

@keyframes voltrack-investor-status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
  }
}

.voltrack-investor-status-future {
  background: rgba(255, 255, 255, 0.05);
  color: var(--voltrack-text-dim);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.voltrack-investor-milestone-title {
  font-family: var(--voltrack-font-tech);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--voltrack-text-white);
}

.voltrack-investor-milestone-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voltrack-text-gray);
  margin-bottom: 25px;
}

.voltrack-investor-milestone-metrics {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 136, 204, 0.2);
}

.voltrack-investor-metric-item {
  flex: 1;
}

.voltrack-investor-metric-value {
  font-family: var(--voltrack-font-tech);
  font-size: 32px;
  font-weight: 900;
  color: var(--voltrack-primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.voltrack-investor-metric-label {
  font-size: 13px;
  color: var(--voltrack-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === ADVANTAGE SECTION === */
.voltrack-investor-advantage-section {
  position: relative;
  width: 100%;
  height: max-content;
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--voltrack-bg-darker) 0%, var(--voltrack-bg-dark) 100%);
  overflow: hidden;
}

.voltrack-investor-advantage-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.voltrack-investor-advantage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.voltrack-investor-advantage-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 320px;
  max-width: 450px;
  background: linear-gradient(145deg, rgba(0, 136, 204, 0.06), rgba(0, 136, 204, 0.02));
  border: 2px solid rgba(0, 136, 204, 0.25);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s var(--voltrack-transition-smooth);
  overflow: hidden;
}

.voltrack-investor-advantage-card.voltrack-investor-visible {
  opacity: 1;
  transform: translateY(0);
}

.voltrack-investor-advantage-card:hover {
  border-color: var(--voltrack-primary-blue);
  box-shadow: 0 20px 50px rgba(0, 136, 204, 0.2);
  transform: translateY(-8px);
}

.voltrack-investor-advantage-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voltrack-investor-advantage-icon-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.voltrack-investor-advantage-card:hover .voltrack-investor-advantage-icon-bg {
  opacity: 1;
  transform: scale(1.5);
}

.voltrack-investor-advantage-icon-wrapper i {
  font-size: 36px;
  color: var(--voltrack-primary-blue);
  z-index: 1;
  transition: all 0.4s ease;
}

.voltrack-investor-advantage-card:hover .voltrack-investor-advantage-icon-wrapper i {
  transform: scale(0.9);
  filter: drop-shadow(0 0 15px var(--voltrack-primary-blue));
}

.voltrack-investor-advantage-title {
  font-family: var(--voltrack-font-tech);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--voltrack-text-white);
}

.voltrack-investor-advantage-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voltrack-text-gray);
  margin-bottom: 20px;
}

.voltrack-investor-advantage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--voltrack-primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voltrack-investor-advantage-comparison {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.voltrack-investor-comparison-item {
  flex: 1;
  text-align: center;
}

.voltrack-investor-comparison-label {
  display: block;
  font-size: 12px;
  color: var(--voltrack-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.voltrack-investor-comparison-value {
  display: block;
  font-family: var(--voltrack-font-tech);
  font-size: 28px;
  font-weight: 900;
  color: var(--voltrack-primary-blue);
}

.voltrack-investor-comparison-divider {
  width: 2px;
  height: 40px;
  background: rgba(0, 136, 204, 0.3);
}

.voltrack-investor-advantage-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.voltrack-investor-feature-chip {
  padding: 6px 14px;
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--voltrack-primary-blue);
  transition: all 0.3s ease;
}

.voltrack-investor-feature-chip:hover {
  background: rgba(0, 212, 255, 0.25);
  border-color: var(--voltrack-primary-blue);
  transform: scale(1.05);
}

.voltrack-investor-advantage-metrics {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.voltrack-investor-advantage-metric {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.voltrack-investor-metric-number {
  font-family: var(--voltrack-font-tech);
  font-size: 32px;
  font-weight: 900;
  color: var(--voltrack-primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.voltrack-investor-metric-text {
  font-size: 12px;
  color: var(--voltrack-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voltrack-investor-advantage-trend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === OPPORTUNITY SECTION === */
.voltrack-investor-opportunity-section {
  position: relative;
  width: 100%;
  height: max-content;
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--voltrack-bg-dark) 0%, var(--voltrack-bg-darker) 100%);
  overflow: hidden;
}

.voltrack-investor-opportunity-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.voltrack-investor-opportunity-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.voltrack-investor-opportunity-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--voltrack-transition-smooth);
}

.voltrack-investor-opportunity-header.voltrack-investor-visible {
  opacity: 1;
  transform: translateY(0);
}

.voltrack-investor-opportunity-title {
  font-family: var(--voltrack-font-tech);
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.voltrack-investor-opportunity-subtitle {
  font-size: 20px;
  color: var(--voltrack-text-gray);
  font-weight: 400;
}

.voltrack-investor-opportunity-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.voltrack-investor-opportunity-visual {
  flex: 0 0 400px;
  position: relative;
  height: 400px;
  opacity: 0;
  transform: scale(0.8) rotate(-20deg);
  transition: all 1s var(--voltrack-transition-smooth);
}

.voltrack-investor-opportunity-visual.voltrack-investor-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.voltrack-investor-opportunity-hologram {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voltrack-investor-hologram-ring {
  position: absolute;
  border: 2px solid var(--voltrack-primary-blue);
  opacity: 0.4;
}

.voltrack-investor-hologram-ring-1 {
  inset: 0;
  border-radius: 50%;
  animation: voltrack-investor-hologram-spin 10s linear infinite;
}

.voltrack-investor-hologram-ring-2 {
  inset: 60px;
  border-radius: 50%;
  animation: voltrack-investor-hologram-spin 15s linear infinite reverse;
}

.voltrack-investor-hologram-ring-3 {
  inset: 120px;
  animation: voltrack-investor-hologram-spin 20s linear infinite;
}

@keyframes voltrack-investor-hologram-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.voltrack-investor-hologram-center {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  border: 3px solid var(--voltrack-primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: var(--voltrack-primary-blue);
  box-shadow: 
    0 0 40px rgba(0, 212, 255, 0.6),
    inset 0 0 40px rgba(0, 212, 255, 0.3);
}

.voltrack-investor-opportunity-data-streams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.voltrack-investor-data-stream {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--voltrack-primary-blue), transparent);
  opacity: 0.4;
  animation: voltrack-investor-data-flow 2s linear infinite;
  animation-delay: var(--delay, 0s);
}

.voltrack-investor-data-stream:nth-child(1) {
  left: 20%;
}


.voltrack-investor-data-stream:nth-child(4) {
  left: 80%;
}

@keyframes voltrack-investor-data-flow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.voltrack-investor-opportunity-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--voltrack-transition-smooth);
}

.voltrack-investor-opportunity-details.voltrack-investor-visible {
  opacity: 1;
  transform: translateX(0);
}

.voltrack-investor-opportunity-highlight-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(0, 136, 204, 0.08), rgba(0, 136, 204, 0.04));
  border: 2px solid rgba(0, 136, 204, 0.3);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.voltrack-investor-opportunity-highlight-box:hover {
  border-color: var(--voltrack-primary-blue);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.2);
}

.voltrack-investor-highlight-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: rgba(0, 136, 204, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--voltrack-primary-blue);
}

.voltrack-investor-highlight-content h3 {
  font-family: var(--voltrack-font-tech);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--voltrack-text-white);
}

.voltrack-investor-highlight-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voltrack-text-gray);
}

.voltrack-investor-opportunity-metrics-panel {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 136, 204, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.voltrack-investor-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 25px;
  background: rgba(0, 136, 204, 0.15);
  border-bottom: 1px solid rgba(0, 136, 204, 0.3);
  font-family: var(--voltrack-font-tech);
  font-size: 16px;
  font-weight: 700;
  color: var(--voltrack-primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voltrack-investor-panel-metrics {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voltrack-investor-panel-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 136, 204, 0.15);
}

.voltrack-investor-panel-metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.voltrack-investor-panel-metric-label {
  font-size: 14px;
  color: var(--voltrack-text-gray);
  font-weight: 600;
  min-width: 50%;
}

.voltrack-investor-panel-metric-value {
  font-family: var(--voltrack-font-tech);
  font-size: 20px;
  min-width: 50%;
  font-weight: 900;
  color: var(--voltrack-primary-blue);
}

.voltrack-investor-opportunity-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.voltrack-investor-opportunity-cta-primary,
.voltrack-investor-opportunity-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--voltrack-font-tech);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s var(--voltrack-transition-smooth);
}

.voltrack-investor-opportunity-cta-primary {
  background: linear-gradient(135deg, var(--voltrack-primary-blue), var(--voltrack-secondary-blue));
  color: var(--voltrack-text-white);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.voltrack-investor-opportunity-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

.voltrack-investor-opportunity-cta-secondary {
  background: rgba(0, 136, 204, 0.1);
  color: var(--voltrack-primary-blue);
  border: 2px solid rgba(0, 136, 204, 0.4);
}

.voltrack-investor-opportunity-cta-secondary:hover {
  background: rgba(0, 136, 204, 0.2);
  border-color: var(--voltrack-primary-blue);
  transform: translateY(-3px);
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .voltrack-investor-hero-title {
    font-size: 64px;
  }

  .voltrack-investor-section-title {
    font-size: 48px;
  }

  .voltrack-investor-crisis-container,
  .voltrack-investor-opportunity-content,
  .voltrack-investor-team-container,
  .voltrack-investor-final-cta-container {
    flex-direction: column;
    gap: 60px;
  }

  .voltrack-investor-crisis-visualization,
  .voltrack-investor-opportunity-visual,
  .voltrack-investor-final-cta-visual {
    flex: 1;
    width: 100%;
  }

  .voltrack-investor-team-values {
    flex: 1;
  }
}

@media (max-width: 968px) {
  .voltrack-investor-hero-title {
    font-size: 52px;
  }

  .voltrack-investor-section-title {
    font-size: 40px;
  }

  .voltrack-investor-hero-stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .voltrack-investor-roadmap-circuit-line, .voltrack-investor-milestone-node, .voltrack-investor-milestone-connector {
    display: none;
  }

  .voltrack-investor-advantage-card {
    flex: 1 1 100%;
  }

  .voltrack-investor-milestone-left,
  .voltrack-investor-milestone-right {
    padding: 0;
    justify-content: center;
  }

  .voltrack-investor-milestone-card {
    max-width: 100%;
  }

  .voltrack-investor-final-cta-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .voltrack-investor-hero-title {
    font-size: 42px;
  }

  .voltrack-investor-section-title {
    font-size: 36px;
  }

  .voltrack-investor-hero-subtitle {
    font-size: 18px;
  }

  .voltrack-investor-crisis-detail-item {
    flex-direction: column;
  }

  .voltrack-investor-crisis-section,
  .voltrack-investor-roadmap-section,
  .voltrack-investor-advantage-section,
  .voltrack-investor-opportunity-section,
  .voltrack-investor-traction-section,
  .voltrack-investor-team-section,
  .voltrack-investor-final-cta-section {
    padding: 80px 30px;
  }

  .voltrack-investor-section-header {
    margin-bottom: 50px;
  }

  .voltrack-investor-roadmap-circuit-line {
    display: none;
  }

  .voltrack-investor-final-cta-title {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .voltrack-investor-hero-title {
    font-size: 36px;
  }

  .voltrack-investor-section-title {
    font-size: 32px;
  }

  .voltrack-investor-final-cta-buttons {
    flex-direction: column;
  }

  .voltrack-investor-opportunity-cta-group, .voltrack-investor-opportunity-highlight-box {
    flex-direction: column;
  }

  .voltrack-investor-roadmap-section {
    padding: 80px 10px;
  }
  .voltrack-investor-milestone-card {
    padding: 30px 10px;
  }

  .voltrack-investor-opportunity-title {
    font-size: 30px;
  }
}



/* === CONTACT SECTION (SIMPLE VERSION) === */
.voltrack-investor-contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--voltrack-bg-darker) 0%, var(--voltrack-bg-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voltrack-investor-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 136, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Animated Triangle Background */
.voltrack-investor-contact-triangles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0.15;
}

.voltrack-investor-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.6;
  animation: voltrack-investor-triangle-float var(--duration, 20s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.voltrack-investor-triangle-1 {
  top: 10%;
  left: 5%;
  border-width: 0 60px 104px 60px;
  border-color: transparent transparent var(--voltrack-primary-blue) transparent;
  --duration: 15s;
  --delay: 0s;
}

.voltrack-investor-triangle-2 {
  top: 60%;
  right: 10%;
  border-width: 80px 0 80px 138px;
  border-color: transparent transparent transparent var(--voltrack-secondary-blue);
  --duration: 18s;
  --delay: 2s;
}

.voltrack-investor-triangle-3 {
  bottom: 15%;
  left: 15%;
  border-width: 70px 121px 0 121px;
  border-color: var(--voltrack-accent-cyan) transparent transparent transparent;
  --duration: 22s;
  --delay: 4s;
}

.voltrack-investor-triangle-4 {
  top: 30%;
  right: 25%;
  border-width: 0 50px 87px 50px;
  border-color: transparent transparent var(--voltrack-primary-blue) transparent;
  --duration: 20s;
  --delay: 1s;
}

.voltrack-investor-triangle-5 {
  bottom: 40%;
  left: 40%;
  border-width: 60px 0 60px 104px;
  border-color: transparent transparent transparent var(--voltrack-secondary-blue);
  --duration: 25s;
  --delay: 3s;
}

@keyframes voltrack-investor-triangle-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(10deg);
  }
  50% {
    transform: translate(-20px, 30px) rotate(-5deg);
  }
  75% {
    transform: translate(40px, 10px) rotate(8deg);
  }
}

.voltrack-investor-contact-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.voltrack-investor-contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CTA Box */
.voltrack-investor-contact-cta-box {
  width: 100%;
  max-width: 700px;
  background: linear-gradient(145deg, rgba(0, 136, 204, 0.08), rgba(0, 136, 204, 0.04));
  border: 2px solid rgba(0, 136, 204, 0.25);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s var(--voltrack-transition-smooth);
}

.voltrack-investor-contact-cta-box.voltrack-investor-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.voltrack-investor-contact-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.voltrack-investor-contact-icon {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  border: 3px solid var(--voltrack-primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--voltrack-primary-blue);
  margin: 0 auto 30px;
  position: relative;
  animation: voltrack-investor-icon-pulse 3s ease-in-out infinite;
}

@keyframes voltrack-investor-icon-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  }
}

.voltrack-investor-contact-icon::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  animation: voltrack-investor-icon-ring 3s ease-in-out infinite;
}

@keyframes voltrack-investor-icon-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.voltrack-investor-contact-title {
  font-family: var(--voltrack-font-tech);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--voltrack-text-white);
}

.voltrack-investor-contact-title span {
  color: var(--voltrack-primary-blue);
}

.voltrack-investor-contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--voltrack-text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats */
.voltrack-investor-contact-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 136, 204, 0.2);
  border-bottom: 1px solid rgba(0, 136, 204, 0.2);
}

.voltrack-investor-contact-stat {
  flex: 1;
  max-width: 150px;
}

.voltrack-investor-stat-value {
  font-family: var(--voltrack-font-tech);
  font-size: 36px;
  font-weight: 900;
  color: var(--voltrack-primary-blue);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.voltrack-investor-stat-label {
  font-size: 13px;
  color: var(--voltrack-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* CTA Button */
.voltrack-investor-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, var(--voltrack-primary-blue), var(--voltrack-secondary-blue));
  border: none;
  border-radius: 12px;
  font-family: var(--voltrack-font-tech);
  font-size: 18px;
  font-weight: 700;
  color: var(--voltrack-text-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s var(--voltrack-transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
  margin-bottom: 50px;
}

.voltrack-investor-contact-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.voltrack-investor-contact-button:hover::before {
  width: 400px;
  height: 400px;
}

.voltrack-investor-contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 136, 204, 0.5);
}

.voltrack-investor-contact-button:active {
  transform: translateY(-1px);
}

.voltrack-investor-contact-button span {
  position: relative;
  z-index: 1;
}

.voltrack-investor-contact-button i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.voltrack-investor-contact-button:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .voltrack-investor-contact-section {
    padding: 80px 30px;
  }

  .voltrack-investor-contact-cta-box {
    padding: 40px 30px;
  }

  .voltrack-investor-contact-title {
    font-size: 32px;
  }

  .voltrack-investor-contact-stats {
    flex-direction: column;
    gap: 20px;
  }

  .voltrack-investor-contact-stat {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .voltrack-investor-contact-title {
    font-size: 28px;
  }

  .voltrack-investor-contact-text {
    font-size: 16px;
  }

  .voltrack-investor-contact-button {
    width: 100%;
    justify-content: center;
  }

  .voltrack-investor-contact-social-links {
    flex-wrap: wrap;
  }
}