
/* Block 1 */
.hero-banner-section {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-banner-container {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(45, 45, 45, 0.6) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay,
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.hero-text-block {
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-action-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.hero-action-button i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .hero-banner-container {
        height: 60vh;
    }
    
    .hero-banner-section {
        min-height: 60vh;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-action-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.neural-showcase-section {
            background: linear-gradient(135deg, #0a0f2e 0%, #1a1d3a 35%, #2d1b69 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .neural-showcase-section::before {
            content: '';
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.1) 0%, transparent 50%);
            animation: neural-ambient 15s ease-in-out infinite alternate;
        }

        @keyframes neural-ambient {
            0% { transform: translate(-10%, -10%) rotate(0deg); }
            100% { transform: translate(10%, 10%) rotate(180deg); }
        }

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

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

        .neural-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #00d4ff, #ff00e6, #ffff00);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .neural-subtitle {
            font-size: 1.3rem;
            color: #b8c5d6;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .neural-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .neural-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .neural-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .neural-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
        }

        .neural-card:hover::before {
            opacity: 1;
        }

        .neural-card-primary:hover {
            box-shadow: 0 30px 60px rgba(138, 43, 226, 0.3);
        }

        .neural-card-secondary:hover {
            box-shadow: 0 30px 60px rgba(255, 20, 147, 0.3);
        }

        .neural-card-accent:hover {
            box-shadow: 0 30px 60px rgba(50, 205, 50, 0.3);
        }

        .neural-icon-wrapper {
            width: 80px;
            height: 80px;
            margin-bottom: 30px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .neural-icon-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.2);
            transition: all 0.3s ease;
        }

        .neural-card:hover .neural-icon-image {
            filter: brightness(1.1) contrast(1.4) saturate(1.3);
            transform: scale(1.1);
        }

        .neural-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .neural-card-text {
            color: #b8c5d6;
            line-height: 1.7;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .neural-stats {
            display: flex;
            gap: 20px;
        }

        .neural-stat-item {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(30, 144, 255, 0.3));
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
        }

        .neural-progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .neural-progress-fill {
            height: 100%;
            width: 75%;
            background: linear-gradient(90deg, #ff006e, #fb5607, #ffbe0b);
            border-radius: 10px;
            animation: progress-glow 2s ease-in-out infinite alternate;
        }

        @keyframes progress-glow {
            0% { box-shadow: 0 0 10px rgba(255, 0, 110, 0.5); }
            100% { box-shadow: 0 0 20px rgba(255, 190, 11, 0.8); }
        }

        .neural-badge {
            background: linear-gradient(135deg, #32cd32, #228b22);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
        }

        .neural-interactive-zone {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .neural-hologram-display {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
        }

        .hologram-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: hue-rotate(180deg) brightness(0.8);
        }

        .hologram-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 212, 255, 0.9);
            padding: 15px 30px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .hologram-text {
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .neural-control-panel {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .control-title {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .neural-sliders {
            margin-bottom: 40px;
        }

        .neural-slider {
            margin-bottom: 25px;
        }

        .slider-label {
            display: block;
            color: #b8c5d6;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .slider-track {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            position: relative;
        }

        .slider-thumb {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #00d4ff, #ff00e6);
            border-radius: 50%;
            position: absolute;
            top: -7px;
            left: 30%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
        }

        .slider-thumb-active {
            left: 70%;
            box-shadow: 0 4px 15px rgba(255, 0, 230, 0.6);
        }

        .slider-thumb-mid {
            left: 50%;
            background: linear-gradient(135deg, #ffbe0b, #fb5607);
            box-shadow: 0 4px 15px rgba(255, 190, 11, 0.5);
        }

        .neural-generate-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #8a2be2, #1e90ff);
            border: none;
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .neural-generate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
        }

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

        .btn-particles {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .neural-generate-btn:hover .btn-particles {
            left: 100%;
        }

        @media (max-width: 1024px) {
            .neural-interactive-zone {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .neural-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .neural-card {
                padding: 30px 20px;
            }
            
            .neural-showcase-section {
                padding: 60px 0;
            }
        }

/* Block 3 */
.immersive-experience-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.immersive-experience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120, 80, 200, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 120, 120, 0.1) 0%, transparent 50%);
}

.immersive-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

.experience-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.experience-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.experience-showcase {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-viewport {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #000428 0%, #004e92 100%);
}

.showcase-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  opacity: 0.8;
}

.ar-overlay-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ar-tool {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.ar-tool-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.ar-tool-2 {
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.ar-tool-3 {
  bottom: 20%;
  left: 50%;
  animation-delay: 2s;
}

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

.ar-tool-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.showcase-ui-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ui-element {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ui-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.ui-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00f5ff;
}

.precision-indicator {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.precision-bar {
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, #00f5ff 0%, #ff00ff 100%);
  border-radius: 3px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.showcase-controls {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.control-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.control-primary:hover {
  border-color: #00f5ff;
}

.control-secondary:hover {
  border-color: #ff00ff;
}

.control-accent:hover {
  border-color: #ffff00;
}

.btn-icon {
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-label {
  font-size: 0.9rem;
}

.experience-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-metrics {
  display: flex;
  gap: 30px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00f5ff;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.feature-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00ff00;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.status-text {
  color: #00ff00;
  font-weight: 600;
}

.feature-users {
  display: flex;
  align-items: center;
  gap: -10px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.users-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.experience-workshop {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}

.workshop-timeline {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-event {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.timeline-event:hover {
  background: rgba(255, 255, 255, 0.1);
}

.event-active {
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.event-time {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00f5ff;
  min-width: 60px;
}

.event-content {
  flex: 1;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.event-instructor {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.event-preview {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.workshop-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button {
  position: relative;
  background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 15px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: particles 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover .cta-particles {
  opacity: 1;
}

@keyframes particles {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-workshop {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .experience-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .immersive-experience-section {
    padding: 60px 0;
  }
  
  .experience-title {
    font-size: 2rem;
  }
  
  .showcase-controls {
    flex-wrap: wrap;
  }
  
  .feature-metrics {
    justify-content: center;
  }
  
  .timeline-event {
    flex-direction: column;
    gap: 10px;
  }
}

/* Block 4 */
.quantum-order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.quantum-order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.quantum-order-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.order-header {
    text-align: center;
    margin-bottom: 60px;
}

.order-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.order-subtitle {
    font-size: 1.3rem;
    color: #a3a3ff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.order-preview-zone {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(20px);
}

.preview-display {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.preview-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.hologram-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="0.5" fill="%23a3a3ff" opacity="0.8"><animate attributeName="opacity" values="0.8;0.3;0.8" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1.5" fill="%239333ea" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 10s ease-in-out infinite;
}

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

.preview-info-badge {
    background: rgba(147, 51, 234, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.preview-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.preview-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.preview-thumbnail:hover {
    border-color: rgba(147, 51, 234, 0.5);
    transform: scale(1.05);
}

.preview-active {
    border-color: #9333ea !important;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    color: #a3a3ff;
}

.order-form-zone {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #a3a3ff;
    font-size: 1.1rem;
}

.form-field-group {
    margin-bottom: 35px;
}

.form-field {
    position: relative;
    margin-bottom: 25px;
}

.field-label {
    display: block;
    font-size: 0.9rem;
    color: #a3a3ff;
    margin-bottom: 8px;
    font-weight: 500;
}

.field-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(163, 163, 255, 0.3);
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.field-input:focus {
    border-bottom-color: #9333ea;
}

.field-input:focus + .field-underline {
    transform: scaleX(1);
}

.field-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.customization-panel {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.panel-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    font-size: 0.9rem;
    color: #a3a3ff;
    margin-bottom: 10px;
}

.option-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-chip {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    color: #a3a3ff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.option-chip:hover {
    background: rgba(147, 51, 234, 0.2);
}

.chip-active {
    background: #9333ea !important;
    color: white !important;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.size-selector {
    display: flex;
    gap: 10px;
}

.size-option {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #a3a3ff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.size-option:hover {
    background: rgba(147, 51, 234, 0.2);
}

.size-selected {
    background: #9333ea !important;
    color: white !important;
    border-color: #9333ea !important;
}

.color-palette {
    display: flex;
    gap: 15px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.color-purple {
    background: linear-gradient(135deg, #9333ea, #6b21a8);
}

.color-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.color-emerald {
    background: linear-gradient(135deg, #10b981, #047857);
}

.color-crimson {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.color-active {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.order-summary {
    background: rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-label {
    color: #a3a3ff;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.1rem;
}

.summary-total .summary-value {
    color: #9333ea;
    font-size: 1.3rem;
}

.submit-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

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

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-order-btn:hover .btn-glow {
    left: 100%;
}

.btn-particles-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.3"><animate attributeName="cy" values="100;0;100" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="20" r="0.5" fill="%23ffffff" opacity="0.5"><animate attributeName="cy" values="100;0;100" dur="2s" repeatCount="indefinite"/></circle><circle cx="90" cy="15" r="1.5" fill="%23ffffff" opacity="0.2"><animate attributeName="cy" values="100;0;100" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat-x;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-order-btn:hover .btn-particles-effect {
    opacity: 1;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a3a3ff;
    font-size: 0.9rem;
}

.trust-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .order-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .quantum-order-container {
        padding: 0 15px;
    }
    
    .order-title {
        font-size: 2.2rem;
    }
    
    .order-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-zone {
        padding: 25px;
    }
    
    .option-chips {
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .ai-stats {
        grid-template-columns: 1fr;
    }
    
    .preview-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
