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

.hero-background {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(49, 27, 146, 0.75) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-banner .container {
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 90, 82, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 82, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
}

.search-training-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.search-training-form .form-control,
.search-training-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-training-form .form-control:focus,
.search-training-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.search-training-form button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-training-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Block 2 */
.ai-search-evolution {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.ai-search-evolution::before {
  content: '';
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="2"/></g></svg>');
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.ai-search-evolution .container {
  position: relative;
  z-index: 2;
}

.evolution-badge {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.evolution-description {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.evolution-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
  margin-top: 0.5rem;
}

.evolution-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.evolution-main-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-elements {
  position: relative;
}

.float-element {
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #2d3748;
  animation: floatAnimation 3s ease-in-out infinite;
}

.float-element i {
  color: #667eea;
  font-size: 1.2rem;
}

.float-1 {
  margin-top: -120px;
  margin-left: -50px;
  animation-delay: 0s;
}

.float-2 {
  margin-top: 20px;
  margin-right: -60px;
  animation-delay: 1s;
}

.float-3 {
  margin-top: -80px;
  margin-left: 20px;
  animation-delay: 2s;
}

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

.features-grid {
  margin-top: 4rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.feature-text {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-metrics {
  display: flex;
  gap: 1rem;
}

.metric {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .evolution-title {
    font-size: 2rem;
  }
  
  .evolution-stats {
    gap: 1rem;
  }
  
  .float-element {
    position: static;
    margin: 10px 0;
    justify-content: center;
  }
  
  .floating-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }
  
  .float-1, .float-2, .float-3 {
    margin: 10px 0;
  }
}

/* Block 3 */
.quantum-workspace-integration {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.quantum-workspace-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.innovation-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.workspace-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #ffffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.workspace-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.holographic-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hologram-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.2) contrast(1.1);
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #00ffff 0%, transparent 70%);
    border-radius: 50%;
    animation: quantumFloat 4s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 80%; left: 30%; animation-delay: 2s; }
.particle-4 { top: 30%; left: 70%; animation-delay: 3s; }

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

.holo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%);
    animation: holoScan 3s infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scanMove 2s infinite;
}

@keyframes holoScan {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(400px); }
}

.workspace-features {
    padding-left: 30px;
}

.feature-block {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.feature-visual {
    position: relative;
    margin-right: 25px;
    flex-shrink: 0;
}

.feature-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.feature-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #00ffff;
    border-radius: 15px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.feature-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 10px;
}

.feature-detail {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.capability-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.capability-tag {
    font-size: 11px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.quantum-stats-bar {
    margin: 60px 0;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.quantum-stat {
    padding: 20px;
}

.stat-icon-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    filter: brightness(1.3);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.immersive-demo-section {
    margin-top: 60px;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.demo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 20px;
}

.demo-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.demo-highlights {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
}

.demo-icon {
    color: #00ffff;
    font-size: 1.2rem;
}

.quantum-cta-button {
    position: relative;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quantum-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.button-energy {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: energyFlow 2s infinite;
}

@keyframes energyFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.quantum-portal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00ffff;
}

.portal-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s infinite linear;
}

.ring-1 { width: 320px; height: 320px; margin: -160px 0 0 -160px; animation-duration: 8s; }
.ring-2 { width: 360px; height: 360px; margin: -180px 0 0 -180px; animation-duration: 12s; animation-direction: reverse; }
.ring-3 { width: 400px; height: 400px; margin: -200px 0 0 -200px; animation-duration: 15s; }

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .workspace-title { font-size: 2.5rem; }
    .workspace-features { padding-left: 0; }
    .feature-block { flex-direction: column; text-align: center; }
    .feature-visual { margin-right: 0; margin-bottom: 20px; }
    .demo-highlights { justify-content: center; }
    .portal-image { width: 200px; height: 200px; }
    .ring-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
    .ring-2 { width: 250px; height: 250px; margin: -125px 0 0 -125px; }
    .ring-3 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
}

/* Block 4 */
.neural-order-form {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.neural-order-form::before {
    content: '';
    background: url('neural-network-bg.jpg') center/cover;
    opacity: 0.1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.neural-icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
}

.pulse-ring {
    border: 2px solid #00d4ff;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    80%, 100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.form-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.form-description {
    color: #b8c5d6;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-body {
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

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

.neural-input:focus {
    border-bottom-color: #00d4ff;
}

.neural-input:focus + .neural-label,
.neural-input:valid + .neural-label {
    top: -15px;
    font-size: 0.9rem;
    color: #00d4ff;
}

.neural-label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 1.1rem;
    color: #b8c5d6;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-effects {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.effect-line {
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.neural-input:focus ~ .input-effects .effect-line {
    transform: scaleX(1);
}

.effect-particles {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neural-input:focus ~ .input-effects .effect-particles {
    opacity: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particle-float 2s ease-in-out infinite;
}

.particle.p1 {
    left: 20%;
    animation-delay: 0s;
}

.particle.p2 {
    left: 50%;
    animation-delay: 0.5s;
}

.particle.p3 {
    left: 80%;
    animation-delay: 1s;
}

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

.submission-area {
    text-align: center;
    margin-bottom: 30px;
}

.neural-submit-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.neural-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

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

.btn-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: scanner-sweep 3s ease-in-out infinite;
}

@keyframes scanner-sweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #b8c5d6;
    font-size: 0.9rem;
}

.security-icon {
    width: 20px;
    height: 20px;
}

.form-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-desc {
    color: #b8c5d6;
    font-size: 0.9rem;
    margin: 0;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .input-group:last-child {
        grid-column: span 2;
    }
    
    .form-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .neural-submit-btn {
        width: 100%;
    }
}
