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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(45, 55, 72, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
}

.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, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  cursor: pointer;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.hero-cta-btn i {
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

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

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

.tech-innovations-2025::before {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.content-wrapper {
    padding-right: 30px;
    z-index: 2;
    position: relative;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

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

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #475569;
}

.feature-item i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 16px;
}

.explore-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .tech-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 992px) {
    .content-wrapper {
        padding-right: 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .tech-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .tech-innovations-2025 {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .explore-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tech-image {
        height: 300px;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .stat-card {
        padding: 20px 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Block 3 */
.neural-interface-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
}

.innovation-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(45deg, #00d4aa, #00a8ff);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00d4aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

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

.main-neural-card {
    background: linear-gradient(145deg, #1e1e3f 0%, #2a2a4a 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.neural-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.neural-pulse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
}

.pulse-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00d4aa;
    border-radius: 50%;
    animation: neuralPulse 2s infinite ease-in-out;
}

.pulse-dot:nth-child(1) {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.pulse-dot:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 0.7s;
}

.pulse-dot:nth-child(3) {
    bottom: 25%;
    left: 40%;
    animation-delay: 1.4s;
}

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

.neural-content {
    padding: 30px;
}

.neural-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 15px;
}

.neural-description {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.neural-metrics {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

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

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #8888aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neural-features-panel {
    background: linear-gradient(145deg, #1a1a35 0%, #252547 100%);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.features-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00a8ff;
    margin-bottom: 25px;
    text-align: center;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 10px;
    border-left: 3px solid #00d4aa;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00d4aa, #00a8ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    font-size: 18px;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.85rem;
    color: #b8b8d1;
    line-height: 1.4;
    margin: 0;
}

.research-card {
    background: linear-gradient(145deg, #1e1e3f 0%, #2a2a4a 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 170, 0.2);
}

.research-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: brightness(0.7);
}

.research-content {
    padding: 20px;
}

.research-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d4aa;
    margin-bottom: 10px;
}

.research-text {
    font-size: 0.9rem;
    color: #b8b8d1;
    line-height: 1.5;
    margin-bottom: 15px;
}

.research-stat {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(45deg, #00a8ff, #00d4aa);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .neural-features-panel {
        margin-top: 30px;
    }
    
    .neural-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .metric-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .neural-interface-showcase {
        padding: 60px 0;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .neural-content {
        padding: 20px;
    }
    
    .neural-features-panel {
        padding: 20px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .research-image {
        height: 150px;
    }
    
    .research-content {
        padding: 15px;
    }
}

/* Block 4 */
.order-form-2025 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.order-form-2025::before {
    content: '';
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.order-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.form-visual-section {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.consultation-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.highlight-item i {
    font-size: 16px;
    opacity: 0.9;
}

.custom-order-form {
    padding: 50px 40px;
}

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

.section-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.input-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.floating-input {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px 0 15px 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-bottom-color: #667eea;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    transform: translateY(-25px);
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
}

.form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-border {
    width: 100%;
}

.form-actions {
    text-align: center;
    margin-top: 50px;
}

.submit-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.submit-order-btn:active {
    transform: translateY(0);
}

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

.btn-icon {
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.submit-order-btn:hover .btn-icon {
    transform: translateX(5px);
}

.privacy-notice {
    margin-top: 25px;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .order-form-2025 {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .custom-order-form,
    .form-visual-section {
        padding: 30px 25px;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .consultation-image {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.75rem;
    }
    
    .submit-order-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
}
