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

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

.hero-bg-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(13, 110, 253, 0.85) 0%, rgba(25, 25, 25, 0.75) 100%);
  z-index: 2;
}

.hero-banner .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  padding: 3rem 0;
}

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

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-action {
  margin-top: 2rem;
}

.hero-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(13, 110, 253, 0.6);
  background: linear-gradient(45deg, #0b5ed7, #520dc2);
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 992px) {
  .hero-banner {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 55vh;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 1.5rem 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 300px;
  }
}

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

.quantum-web-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%), 
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.quantum-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    line-height: 1.2;
}

.quantum-description {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.quantum-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: #000000;
}

.feature-text h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-text p {
    color: #b8b8b8;
    margin: 0;
    font-size: 0.95rem;
}

.btn-gradient-primary {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    color: #000000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    color: #000000;
}

.quantum-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.quantum-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.quantum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.quantum-stats {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .quantum-web-section {
        padding: 60px 0;
    }
    
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .quantum-description {
        font-size: 1.1rem;
    }
    
    .quantum-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Block 3 */
.neural-analytics-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.neural-analytics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.neural-analytics-section .container {
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

.analytics-dashboard {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.2);
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.analytics-dashboard:hover {
    transform: translateY(-30px);
    box-shadow: 0 40px 80px rgba(13, 110, 253, 0.3);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.dashboard-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 16px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 8px;
    text-align: center;
}

.analytics-content {
    padding-left: 40px;
}

.capability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.capability-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(13, 110, 253, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.capability-icon {
    font-size: 1.5rem;
    color: #0d6efd;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.capability-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.capability-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

.analytics-cta {
    display: flex;
    gap: 20px;
}

.btn-neural-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-neural-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.3);
    color: white;
}

.btn-neural-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-neural-primary:hover::before {
    left: 100%;
}

.btn-neural-outline {
    background: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-neural-outline:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

@media (max-width: 1199px) {
    .analytics-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .neural-analytics-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .dashboard-overlay {
        flex-direction: column;
        gap: 12px;
    }
    
    .capability-grid {
        gap: 24px;
    }
    
    .capability-card {
        padding: 24px;
    }
    
    .analytics-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-neural-primary,
    .btn-neural-outline {
        width: 100%;
        text-align: center;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00bfff, #8a2be2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.order-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.form-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

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

.quantum-order-form {
    position: relative;
    z-index: 3;
}

.form-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.form-label-modern {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-modern:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.form-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-underline {
    height: 2px;
    background: linear-gradient(90deg, #00bfff, #8a2be2);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: 0.5rem;
}

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

.form-benefits {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfff, #8a2be2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-quantum-submit {
    width: 100%;
    background: linear-gradient(135deg, #00bfff 0%, #8a2be2 100%);
    border: none;
    border-radius: 16px;
    padding: 1.2rem 2rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

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

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

.btn-quantum-submit:hover .btn-effect {
    left: 100%;
}

.form-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-badge {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .order-form-container {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .form-trust-indicators {
        gap: 1rem;
    }
    
    .trust-badge {
        height: 32px;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
