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

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

.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(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    padding: 60px 0;
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    color: var(--secondary-color);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.innovation-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.innovation-showcase::before {
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.innovation-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.innovation-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f8fafc;
}

.feature-text p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.innovation-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-thumbs {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.thumb-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.7;
}

.thumb-image:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.thumb-image.active {
    border-color: #3b82f6;
    opacity: 1;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

@media (max-width: 992px) {
    .innovation-showcase {
        padding: 60px 0;
    }
    
    .innovation-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .innovation-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .innovation-features {
        margin-bottom: 40px;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 40px 0;
    }
    
    .innovation-title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
    }
    
    .thumb-image {
        width: 60px;
        height: 60px;
    }
}

/* Block 3 */
.ai-ecosystem {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.ai-ecosystem::before {
  content: '';
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.ecosystem-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.ecosystem-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.ai-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(20px);
  height: 100%;
}

.ai-card:hover {
  transform: translateY(-15px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.ai-card-header {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.ai-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.ai-card-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.ai-card-body {
  padding: 2rem;
}

.ai-card-title {
  color: #f8fafc;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ai-card-text {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.ai-metrics {
  display: flex;
  gap: 2rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.ecosystem-timeline {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(20px);
}

.timeline-title {
  color: #f8fafc;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 16px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(10px);
}

.timeline-marker {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.timeline-content h5 {
  color: #3b82f6;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-content p {
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ecosystem-title {
    font-size: 2.5rem;
  }
  
  .ecosystem-subtitle {
    font-size: 1.1rem;
  }
  
  .ai-card-header {
    height: 200px;
  }
  
  .ai-card-body {
    padding: 1.5rem;
  }
  
  .ai-metrics {
    gap: 1rem;
  }
  
  .ecosystem-timeline {
    padding: 2rem;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }
  
  .timeline-marker {
    align-self: center;
  }
}

@media (max-width: 576px) {
  .ai-ecosystem {
    padding: 60px 0;
  }
  
  .ecosystem-title {
    font-size: 2rem;
  }
  
  .timeline-container {
    gap: 1.5rem;
  }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff20"><path d="M0,0v50c166.7,0,166.7,50,333.3,50S666.7,50,833.3,50,1000,100,1000,100V0Z"/></svg>');
    width: 100%;
    height: 100px;
    display: block;
    top: 0;
    left: 0;
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.consultation-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
    width: 18px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #374151;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: #ffffff;
    transform: translateY(-2px);
}

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

.input-focus-line {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.form-actions {
    margin: 40px 0 30px 0;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    inset: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

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

.form-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

.consultation-preview {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.preview-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.preview-step {
    text-align: center;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .consultation-form, .consultation-preview {
        padding: 30px 25px;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .preview-title {
        font-size: 1.6rem;
    }
    
    .step-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .consultation-form, .consultation-preview {
        padding: 25px 20px;
    }
    
    .form-input {
        padding: 15px 16px;
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}
