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

    .hero-image-container {
        position: relative;
        z-index: 1;
    }

    .hero-background-image {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -2;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(79, 70, 229, 0.75) 50%, rgba(124, 58, 237, 0.85) 100%);
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .hero-content {
        text-align: center;
        color: white;
        z-index: 10;
        position: relative;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        font-weight: 600;
        margin-bottom: 2rem;
        color: #f1f5f9;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: #e2e8f0;
        font-weight: 400;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description-secondary {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        color: #cbd5e1;
        font-weight: 300;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

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

    .feature-text {
        font-size: 1rem;
        font-weight: 500;
        color: #f8fafc;
    }

    .hero-cta-section {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 2.5rem;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }

    .cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
        color: white;
    }

    .cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 2.5rem;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-weight: 500;
        font-size: 1.1rem;
        text-decoration: none;
        border-radius: 50px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        color: white;
    }

    .cta-icon {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .cta-primary:hover .cta-icon {
        transform: translateX(3px);
    }

    @media (max-width: 768px) {
        .hero-features {
            gap: 1rem;
        }
        
        .feature-item {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
        }
        
        .hero-cta-section {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-primary, .cta-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .hero-content {
            padding: 2rem 0;
        }
        
        .hero-features {
            flex-direction: column;
            align-items: center;
        }
    }

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

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

.primary-service {
    height: auto;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.service-content {
    padding: 40px;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.service-features {
    margin-bottom: 32px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.feature-row .feature-icon {
    color: #3b82f6;
    width: 20px;
    flex-shrink: 0;
}

.service-metrics {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

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

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
}

.service-grid {
    display: grid;
    gap: 24px;
    height: 100%;
}

.mini-service {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mini-service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.mini-service-icon i {
    font-size: 1.5rem;
    color: white;
}

.mini-service-content {
    flex: 1;
}

.mini-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.mini-service-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.mini-service-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-item {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.services-summary {
    margin-top: 80px;
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.summary-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.summary-action {
    text-align: center;
}

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

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .mini-service {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .services-summary {
        padding: 30px 20px;
    }
    
    .service-metrics {
        justify-content: center;
    }
}

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

.testimonials-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

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

.testimonials-header {
  margin-bottom: 80px;
}

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

.testimonials-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.stat-box {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 8px;
}

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

.stat-stars {
  margin-top: 12px;
}

.stat-stars i {
  color: #fbbf24;
  margin: 0 2px;
}

.testimonials-grid {
  margin-bottom: 80px;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.featured-testimonial {
  border: 2px solid #3b82f6;
  background: linear-gradient(135deg, white 0%, #f0f9ff 100%);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.client-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  border: 3px solid #e2e8f0;
}

.client-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.client-position {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.client-rating i {
  color: #fbbf24;
  margin-right: 2px;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 24px 0;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: #3b82f6;
  position: absolute;
  top: -20px;
  left: -16px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.85rem;
  color: #64748b;
}

.testimonial-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-project {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.project-type {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
}

.project-duration {
  color: #64748b;
  font-size: 0.85rem;
}

.testimonial-achievement {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.horizontal-testimonial {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.testimonial-content {
  flex: 1;
}

.testimonial-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 120px;
  justify-content: center;
}

.result-item {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #f0f9ff, #dbeafe);
  border-radius: 12px;
}

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 4px;
}

.result-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.testimonials-footer {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.footer-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
}

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

.footer-guarantees {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #374151;
}

.guarantee-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.footer-action {
  text-align: center;
}

.success-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

.testimonials-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.testimonials-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

.cta-note {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonials-showcase {
    padding: 60px 0;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  
  .testimonial-card {
    padding: 24px 20px;
  }
  
  .horizontal-testimonial {
    flex-direction: column;
  }
  
  .footer-guarantees {
    flex-direction: column;
    gap: 16px;
  }
  
  .testimonials-footer {
    padding: 40px 24px;
  }
}

/* Block 4 */
.innovation-ecosystem {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    position: relative;
}

.innovation-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(106, 90, 224, 0.05) 0%, transparent 100%);
}

.ecosystem-header {
    margin-bottom: 80px;
}

.ecosystem-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c1810 0%, #6a5ae0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ecosystem-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

.ecosystem-highlights {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(106, 90, 224, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #6a5ae0;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a5ae0 0%, #9f7aea 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.highlight-text {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.ecosystem-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.ecosystem-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.metric-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(106, 90, 224, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.bubble-1 { top: 15%; right: 10%; animation-delay: 0s; }
.bubble-2 { bottom: 25%; left: 15%; animation-delay: 1s; }
.bubble-3 { top: 50%; right: 5%; animation-delay: 2s; }

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

.bubble-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #6a5ae0;
    line-height: 1;
}

.bubble-label {
    display: block;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 4px;
}

.technology-stack {
    margin: 100px 0;
    padding: 80px 0;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.stack-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #2d3748;
    margin-bottom: 60px;
}

.tech-card {
    background: #f7fafc;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: white;
    border-color: #6a5ae0;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(106, 90, 224, 0.15);
}

.tech-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-wrapper {
    transform: scale(1.1);
}

.tech-icon {
    font-size: 2rem;
    color: white;
}

.tech-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.tech-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.tech-metrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-item {
    background: rgba(106, 90, 224, 0.1);
    color: #6a5ae0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.implementation-process {
    margin: 80px 0;
}

.process-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 24px;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a5ae0 0%, #9f7aea 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-duration {
    font-size: 0.9rem;
    color: #6a5ae0;
    font-weight: 600;
    background: rgba(106, 90, 224, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
}

.success-metrics {
    margin: 100px 0;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    color: white;
}

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

.metrics-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.metrics-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.metric-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.metric-value {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.metric-context {
    font-size: 0.9rem;
    opacity: 0.8;
}

.ecosystem-cta {
    margin-top: 80px;
    padding: 80px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-radius: 32px;
    color: white;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(106, 90, 224, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a5ae0;
}

.cta-action-panel {
    text-align: center;
}

.cta-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ecosystem-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6a5ae0 0%, #9f7aea 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(106, 90, 224, 0.3);
}

.ecosystem-cta-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(106, 90, 224, 0.4);
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.8;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .ecosystem-title { font-size: 2.4rem; }
    .stack-title { font-size: 2.2rem; }
    .process-title { font-size: 2rem; }
    .metrics-title { font-size: 2.2rem; }
    .cta-title { font-size: 2rem; }
    
    .ecosystem-highlights { gap: 24px; }
    .highlight-item { padding: 24px; flex-direction: column; text-align: center; }
    .process-steps .step-item { flex-direction: column; text-align: center; }
    .ecosystem-cta { padding: 60px 40px; }
    .cta-benefits { align-items: center; }
    .benefit-item { justify-content: center; }
}

@media (max-width: 768px) {
    .innovation-ecosystem { padding: 80px 0; }
    .ecosystem-title { font-size: 2rem; }
    .ecosystem-description { font-size: 1.1rem; }
    .highlight-title { font-size: 1.2rem; }
    .tech-card { padding: 32px 24px; }
    .process-image { height: 300px; }
    .metric-value { font-size: 2.4rem; }
    .ecosystem-cta { padding: 40px 24px; margin: 60px -24px 0; border-radius: 24px; }
}

/* Block 5 */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-form-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(59,130,246,0.05)"/><circle cx="90" cy="30" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 48px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.3);
}

.header-icon i {
    font-size: 32px;
    color: white;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 56px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

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

.form-input:focus ~ .input-icon {
    color: #3b82f6;
    transform: translateY(-50%) scale(1.1);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 0 0 16px 16px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.4);
}

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

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

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

.submit-button:hover .submit-icon {
    transform: translateX(4px);
}

.submit-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button:active .submit-ripple {
    transform: scale(1);
    transition: transform 0.1s;
}

.form-benefits {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.benefit-icon {
    color: #3b82f6;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}

.contact-visual {
    padding-left: 32px;
}

.consultation-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    margin-bottom: 32px;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 4px;
}

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

.contact-info-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 32px;
    color: white;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail i {
    font-size: 18px;
    color: #3b82f6;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 40px 24px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-benefits {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .form-wrapper {
        border-radius: 16px;
        padding: 32px 20px;
    }
    
    .header-icon {
        width: 64px;
        height: 64px;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-input {
        padding: 16px 16px 16px 48px;
    }
    
    .submit-button {
        padding: 16px;
        font-size: 1rem;
    }
}
