
/* Block 1 */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 0;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 1rem 0;
  }
}

/* Block 2 */
.transformation-metrics {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
            position: relative;
            overflow: hidden;
        }

        .transformation-metrics::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .transformation-metrics::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .metrics-content {
            position: relative;
            z-index: 2;
        }

        .metrics-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .metrics-description {
            font-size: 1.125rem;
            color: #4a5568;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .metric-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .metric-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .metric-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            display: block;
        }

        .metric-label {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 500;
            line-height: 1.4;
        }

        .metrics-visual {
            position: relative;
            z-index: 2;
        }

        .metrics-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .metrics-image:hover {
            transform: scale(1.02);
        }

        .floating-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            animation: float 3s ease-in-out infinite;
        }

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

        @media (max-width: 991px) {
            .transformation-metrics {
                padding: 80px 0;
            }

            .metrics-title {
                font-size: 2rem;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .floating-badge {
                position: static;
                margin: 1rem auto 0;
                width: fit-content;
            }
        }

        @media (max-width: 576px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .metric-item {
                padding: 1rem;
            }

            .metric-number {
                font-size: 2rem;
            }

            .metrics-title {
                font-size: 1.75rem;
            }

            .floating-badge {
                font-size: 0.75rem;
                padding: 8px 16px;
            }
        }

/* Block 3 */
.advanced-learning-pathways {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 50%, #f0f7ff 100%);
      overflow: hidden;
    }

    .section-header {
      margin-bottom: 60px;
    }

    .pathway-main-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pathway-subtitle {
      font-size: 1.2rem;
      color: #6c757d;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    .pathway-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .pathway-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .pathway-header {
      position: relative;
      height: 240px;
      overflow: hidden;
    }

    .pathway-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .pathway-card:hover .pathway-image {
      transform: scale(1.1);
    }

    .pathway-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 8px 16px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      color: white;
      backdrop-filter: blur(10px);
    }

    .pathway-foundation .pathway-badge {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .pathway-advanced .pathway-badge {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .pathway-mastery .pathway-badge {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .pathway-content {
      padding: 30px;
    }

    .pathway-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a2332;
      margin-bottom: 15px;
    }

    .pathway-description {
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .pathway-features {
      margin-bottom: 25px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      font-size: 0.9rem;
      color: #495057;
    }

    .feature-item i {
      width: 20px;
      margin-right: 12px;
      font-size: 1rem;
    }

    .pathway-foundation .feature-item i {
      color: #4facfe;
    }

    .pathway-advanced .feature-item i {
      color: #667eea;
    }

    .pathway-mastery .feature-item i {
      color: #f5576c;
    }

    .pathway-progress {
      border-top: 1px solid #e9ecef;
      padding-top: 20px;
    }

    .progress-indicator {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .progress-label {
      font-weight: 600;
      color: #495057;
      font-size: 0.9rem;
    }

    .progress-bar {
      flex: 1;
      height: 6px;
      background: #e9ecef;
      border-radius: 10px;
      margin-left: 15px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      border-radius: 10px;
      transition: width 2s ease;
    }

    .foundation-progress {
      width: 75%;
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .advanced-progress {
      width: 60%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .mastery-progress {
      width: 45%;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .adaptive-intelligence {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 25px;
      padding: 50px;
      color: white;
      position: relative;
      overflow: hidden;
      margin-top: 40px;
    }

    .ai-visual {
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 100%;
      overflow: hidden;
      border-radius: 0 25px 25px 0;
    }

    .ai-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }

    .ai-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    }

    .ai-particles {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: white;
      border-radius: 50%;
      animation: float 6s infinite linear;
    }

    .particle:nth-child(1) {
      top: 20%;
      left: 20%;
      animation-delay: 0s;
    }

    .particle:nth-child(2) {
      top: 60%;
      left: 60%;
      animation-delay: 2s;
    }

    .particle:nth-child(3) {
      top: 40%;
      left: 80%;
      animation-delay: 4s;
    }

    .particle:nth-child(4) {
      top: 80%;
      left: 30%;
      animation-delay: 1s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
      }
      50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
      }
    }

    .ai-content {
      position: relative;
      z-index: 2;
      max-width: calc(100% - 320px);
    }

    .ai-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .ai-description {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .ai-metrics {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      backdrop-filter: blur(10px);
      min-width: 180px;
    }

    .metric-icon {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .metric-icon i {
      font-size: 1.2rem;
      color: white;
    }

    .metric-value {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1;
    }

    .metric-text {
      display: block;
      font-size: 0.85rem;
      opacity: 0.8;
      line-height: 1.2;
    }

    @media (max-width: 992px) {
      .pathway-main-title {
        font-size: 2.2rem;
      }

      .ai-content {
        max-width: 100%;
      }

      .ai-visual {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 30px;
        border-radius: 15px;
      }

      .adaptive-intelligence {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .pathway-main-title {
        font-size: 1.9rem;
      }

      .pathway-subtitle {
        font-size: 1rem;
      }

      .ai-metrics {
        justify-content: center;
      }

      .metric-card {
        min-width: 150px;
      }
    }

/* Block 4 */
.quantum-consultation-form {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.quantum-consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
}

.consultation-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.consultation-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.consultation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%);
}

.data-stream {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 300px;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00bfff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00bfff;
    animation: dataFlow 3s infinite ease-in-out;
}

.data-particle:nth-child(1) { left: 20px; animation-delay: 0s; }
.data-particle:nth-child(2) { left: 40px; animation-delay: 0.6s; }
.data-particle:nth-child(3) { left: 60px; animation-delay: 1.2s; }
.data-particle:nth-child(4) { left: 80px; animation-delay: 1.8s; }
.data-particle:nth-child(5) { left: 100px; animation-delay: 2.4s; }

@keyframes dataFlow {
    0% { transform: translateY(300px); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-50px); opacity: 0; }
}

.biometric-scanner {
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 120px;
    height: 120px;
}

.scanner-ring {
    width: 100%;
    height: 100%;
    border: 2px solid #8a2be2;
    border-radius: 50%;
    border-top-color: transparent;
    animation: scanRotate 2s linear infinite;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.scanner-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #8a2be2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 1s ease-in-out infinite;
}

@keyframes scanRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 10px #8a2be2; }
    50% { transform: translate(-50%, -50%) scale(1.5); box-shadow: 0 0 30px #8a2be2; }
}

.consultation-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-badge {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    gap: 12px;
}

.stat-icon {
    color: #00bfff;
    font-size: 18px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: #ccc;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-form-container {
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 40px;
    position: relative;
}

.header-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #00bfff);
    border-radius: 2px;
    margin-bottom: 20px;
}

.form-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.neural-input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.neural-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.neural-input:focus {
    border-color: #00bfff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.neural-label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #888;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.neural-input:focus + .neural-label,
.neural-input:not(:placeholder-shown) + .neural-label {
    transform: translateY(-35px) scale(0.85);
    color: #00bfff;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #00bfff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.neural-input:focus ~ .input-line {
    width: 100%;
}

.input-focus-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.neural-input:focus ~ .input-focus-indicator {
    opacity: 1;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #00bfff;
    border-radius: 50%;
    animation: indicatorPulse 2s infinite;
}

.indicator-wave {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border: 2px solid #00bfff;
    border-radius: 50%;
    animation: waveExpand 2s infinite;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes waveExpand {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.quantum-metrics {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.metric-display {
    margin-bottom: 15px;
}

.metric-display:last-child {
    margin-bottom: 0;
}

.metric-label {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-bar {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #8a2be2, #00bfff);
    border-radius: 4px;
    animation: fillProgress 2s ease-out;
}

.quantum-probability {
    width: 94.7%;
}

@keyframes fillProgress {
    0% { width: 0; }
    100% { width: 94.7%; }
}

.metric-percentage {
    position: absolute;
    right: 8px;
    top: -20px;
    color: #00bfff;
    font-size: 12px;
    font-weight: 600;
}

.sync-indicators {
    display: flex;
    gap: 8px;
}

.sync-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sync-dot.active {
    background: #00bfff;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.quantum-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #8a2be2 0%, #00bfff 100%);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.quantum-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-energy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.energy-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: energyFlow 2s infinite linear;
}

.energy-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.energy-particle:nth-child(2) {
    left: 50%;
    animation-delay: 0.7s;
}

.energy-particle:nth-child(3) {
    left: 80%;
    animation-delay: 1.4s;
}

@keyframes energyFlow {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.quantum-submit-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 12px;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-notice i {
    color: #00bfff;
}

@media (max-width: 991.98px) {
    .consultation-wrapper .row {
        flex-direction: column-reverse;
    }
    
    .consultation-visual {
        min-height: 300px;
    }
    
    .consultation-form-container {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .consultation-stats {
        flex-direction: row;
        justify-content: center;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .quantum-consultation-form {
        padding: 60px 0;
    }
    
    .consultation-form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .consultation-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
}
