
/* Block 1 */
.hero-banner {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

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

    .hero-background-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(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 2rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        color: #e8f4fd;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-description {
        font-size: 1.2rem;
        color: #f8f9fa;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-description-secondary {
        font-size: 1.1rem;
        color: #e9ecef;
        margin-bottom: 3rem;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
        transition: all 0.3s ease;
        border: none;
        display: inline-flex;
        align-items: center;
    }

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6);
        color: white;
        text-decoration: none;
    }

    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

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

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #28a745;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1rem;
        font-weight: 500;
        color: #e9ecef;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
        }

        .hero-description {
            font-size: 1.1rem;
        }

        .hero-description-secondary {
            font-size: 1rem;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
        }

        .hero-stats {
            gap: 2rem;
        }

        .stat-number {
            font-size: 2rem;
        }
    }

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

        .hero-stats {
            gap: 1.5rem;
        }

        .stat-item {
            flex: 1;
            min-width: 120px;
        }
    }

/* Block 2 */
.services-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-content {
    padding-right: 2rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-description-extended {
    font-size: 1rem;
    color: #868e96;
    line-height: 1.6;
    margin-bottom: 0;
}

.services-image-container {
    position: relative;
}

.services-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services-main-image:hover {
    transform: translateY(-5px);
}

.services-grid {
    margin-top: 5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #0d6efd;
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

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

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-pricing {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.service-pricing .price {
    font-size: 1.2rem;
    color: #0d6efd;
    font-weight: 700;
}

.services-cta {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: white;
    color: #0d6efd;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
}

.btn-primary-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary-cta {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
}

.btn-secondary-cta:hover {
    background: white;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .services-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 280px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .services-cta {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}

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

.customer-testimonials::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="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.testimonials-main-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.testimonials-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.stat-block {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.stat-icon i {
  color: white;
  font-size: 24px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #212529;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #6f42c1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-testimonial {
  grid-column: span 2;
  background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
  color: white;
}

.featured-testimonial::before {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

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

.customer-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f8f9fa;
  margin-right: 20px;
  flex-shrink: 0;
}

.featured-testimonial .customer-photo {
  border-color: rgba(255, 255, 255, 0.3);
}

.customer-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: inherit;
}

.customer-position {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 12px;
  line-height: 1.4;
}

.featured-testimonial .customer-position {
  color: rgba(255, 255, 255, 0.8);
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: inherit;
  font-weight: 400;
}

.testimonial-text-extended,
.testimonial-text-secondary {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  font-weight: 400;
  margin-bottom: 0;
}

.featured-testimonial .testimonial-text-extended,
.featured-testimonial .testimonial-text-secondary {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-meta {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.featured-testimonial .testimonial-meta {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-type,
.service-duration {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d6efd;
  display: flex;
  align-items: center;
}

.service-type::before {
  content: '●';
  margin-right: 8px;
}

.service-duration::before {
  content: '⏱';
  margin-right: 8px;
}

.featured-testimonial .service-type,
.featured-testimonial .service-duration {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-cta-section {
  background: white;
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: #f8f9fa;
  border-radius: 12px;
  font-weight: 600;
  color: #495057;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.trust-item i {
  color: #0d6efd;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-testimonials,
.btn-secondary-testimonials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-testimonials {
  background: linear-gradient(135deg, #0d6efd, #6f42c1);
  color: white;
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
}

.btn-primary-testimonials:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.4);
  color: white;
}

.btn-secondary-testimonials {
  background: transparent;
  color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary-testimonials:hover {
  background: #0d6efd;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.3);
}

@media (max-width: 768px) {
  .customer-testimonials {
    padding: 80px 0;
  }
  
  .testimonials-main-title {
    font-size: 2.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .featured-testimonial {
    grid-column: span 1;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .testimonials-cta-section {
    padding: 48px 24px;
    border-radius: 24px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-testimonials,
  .btn-secondary-testimonials {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .testimonials-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-block {
    padding: 24px 20px;
  }
  
  .stat-icon {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .customer-photo {
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .testimonial-meta {
    flex-direction: column;
    gap: 12px;
  }
}

/* Block 4 */
.process-workflow {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.process-header {
  margin-bottom: 60px;
}

.process-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.process-steps-container {
  margin-bottom: 80px;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.process-step.reverse {
  flex-direction: row-reverse;
}

.process-step.reverse::before {
  background: linear-gradient(90deg, #28a745, #1e7e34);
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 30px;
  min-width: 120px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.process-step.reverse .step-number {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  font-size: 1.2rem;
}

.process-step.reverse .step-icon {
  color: #28a745;
}

.step-content {
  flex: 1;
  margin: 0 30px;
}

.step-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.step-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.step-features li {
  padding: 8px 0;
  color: #495057;
  position: relative;
  padding-left: 25px;
}

.step-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 600;
}

.step-duration {
  display: inline-block;
  background: linear-gradient(135deg, #17a2b8, #138496);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.step-image {
  min-width: 280px;
  margin: 0 20px;
}

.step-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.process-benefits {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.benefits-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.benefits-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.benefits-metrics {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

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

.metric-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #007bff;
  display: block;
}

.metric-label {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 5px;
}

.tech-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.tech-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6f42c1, #563d7c);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.tech-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.tech-content p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.process-cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.cta-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-process-primary,
.btn-process-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-process-primary {
  background: white;
  color: #007bff;
}

.btn-process-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
  color: #007bff;
}

.btn-process-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-process-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  color: white;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  padding: 12px 25px;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .process-step,
  .process-step.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .step-visual,
  .step-content,
  .step-image {
    margin: 15px 0;
  }
  
  .benefits-metrics {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-process-primary,
  .btn-process-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Block 5 */
.order-form-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
padding: 80px 0;
min-height: 100vh;
display: flex;
align-items: center;
}

.form-header {
margin-bottom: 60px;
}

.form-main-title {
font-size: 3rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 20px;
letter-spacing: -0.025em;
}

.form-subtitle {
font-size: 1.25rem;
color: #6c757d;
margin-bottom: 40px;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.form-benefits {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
margin-top: 30px;
}

.benefit-item {
display: flex;
align-items: center;
gap: 8px;
color: #28a745;
font-weight: 600;
font-size: 0.95rem;
}

.benefit-item i {
font-size: 1.1rem;
}

.form-container {
margin-bottom: 60px;
}

.form-card {
background: #ffffff;
border-radius: 24px;
padding: 48px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
backdrop-filter: blur(10px);
}

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

.card-title {
font-size: 1.75rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 12px;
}

.card-description {
color: #6c757d;
font-size: 1rem;
line-height: 1.5;
}

.quote-form {
display: flex;
flex-direction: column;
gap: 32px;
}

.form-group {
position: relative;
display: flex;
flex-direction: column;
}

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

.form-label i {
color: #6c757d;
font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
padding: 16px 20px;
border: 2px solid #e9ecef;
border-radius: 12px;
font-size: 1rem;
background: #ffffff;
color: #1a1a1a;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
outline: none;
font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
border-color: #007bff;
box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
color: #adb5bd;
}

.form-select {
appearance: none;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 16px center;
background-size: 16px;
cursor: pointer;
}

.form-textarea {
resize: vertical;
min-height: 120px;
}

.input-focus-line {
position: absolute;
bottom: -2px;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, #007bff, #28a745);
transform: scaleX(0);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 1px;
}

.form-input:focus ~ .input-focus-line,
.form-select:focus ~ .input-focus-line,
.form-textarea:focus ~ .input-focus-line {
transform: scaleX(1);
}

.form-trust-indicators {
display: flex;
flex-direction: column;
gap: 12px;
padding: 20px;
background: #f8f9fa;
border-radius: 12px;
margin: 8px 0;
}

.trust-item {
display: flex;
align-items: center;
gap: 12px;
color: #495057;
font-size: 0.9rem;
}

.trust-item i {
color: #28a745;
font-size: 1rem;
}

.submit-button {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 32px;
background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
color: #ffffff;
border: none;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
min-height: 56px;
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

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

.button-icon {
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-footer-text {
text-align: center;
margin-top: 16px;
}

.form-footer-text p {
color: #6c757d;
font-size: 0.85rem;
margin: 0;
}

.quote-info-panel {
background: #ffffff;
border-radius: 24px;
padding: 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
height: fit-content;
}

.info-header {
text-align: center;
margin-bottom: 32px;
}

.info-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a1a;
}

.info-steps {
display: flex;
flex-direction: column;
gap: 24px;
margin-bottom: 40px;
}

.info-step {
display: flex;
gap: 16px;
align-items: flex-start;
}

.step-number {
width: 32px;
height: 32px;
background: linear-gradient(135deg, #007bff, #28a745);
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 0.9rem;
flex-shrink: 0;
}

.step-content h5 {
color: #1a1a1a;
font-weight: 600;
margin-bottom: 8px;
font-size: 1rem;
}

.step-content p {
color: #6c757d;
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 6px;
}

.step-time {
color: #28a745;
font-size: 0.8rem;
font-weight: 600;
}

.contact-alternatives {
border-top: 1px solid #e9ecef;
padding-top: 32px;
margin-bottom: 32px;
}

.alternatives-title {
color: #1a1a1a;
font-weight: 600;
margin-bottom: 20px;
font-size: 1.1rem;
}

.contact-option {
display: flex;
align-items: center;
gap: 16px;
padding: 12px 0;
border-bottom: 1px solid #f8f9fa;
}

.contact-option:last-child {
border-bottom: none;
}

.contact-option i {
width: 24px;
color: #007bff;
font-size: 1.1rem;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 2px;
}

.contact-details strong {
color: #1a1a1a;
font-size: 0.95rem;
}

.contact-details span {
color: #6c757d;
font-size: 0.9rem;
}

.contact-details small {
color: #28a745;
font-size: 0.8rem;
font-weight: 500;
}

.guarantee-box {
display: flex;
gap: 16px;
padding: 24px;
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
border-radius: 16px;
border: 1px solid #dee2e6;
}

.guarantee-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #28a745, #20c997);
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.guarantee-content h6 {
color: #1a1a1a;
font-weight: 600;
margin-bottom: 8px;
font-size: 1rem;
}

.guarantee-content p {
color: #6c757d;
font-size: 0.9rem;
line-height: 1.5;
margin: 0;
}

.testimonial-highlight {
margin-top: 60px;
}

.highlight-card {
background: #ffffff;
border-radius: 24px;
padding: 48px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content {
text-align: center;
margin-bottom: 40px;
}

.testimonial-quote {
font-size: 1.25rem;
font-style: italic;
color: #495057;
line-height: 1.6;
margin-bottom: 32px;
position: relative;
}

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

.testimonial-author {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
}

.author-photo {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
}

.author-info {
text-align: left;
}

.author-info strong {
display: block;
color: #1a1a1a;
font-weight: 600;
font-size: 1.1rem;
}

.author-info span {
color: #6c757d;
font-size: 0.95rem;
}

.testimonial-stats {
display: flex;
justify-content: center;
gap: 60px;
flex-wrap: wrap;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 2rem;
font-weight: 700;
color: #007bff;
display: block;
}

.stat-label {
color: #6c757d;
font-size: 0.9rem;
font-weight: 500;
margin-top: 4px;
}

@media (max-width: 768px) {
.order-form-section {
padding: 40px 0;
}

.form-main-title {
font-size: 2rem;
}

.form-subtitle {
font-size: 1.1rem;
}

.form-benefits {
gap: 20px;
}

.form-card,
.quote-info-panel {
padding: 32px 24px;
}

.highlight-card {
padding: 32px 24px;
}

.testimonial-stats {
gap: 40px;
}

.stat-number {
font-size: 1.5rem;
}
}

@media (max-width: 576px) {
.form-benefits {
flex-direction: column;
align-items: center;
gap: 16px;
}

.testimonial-author {
flex-direction: column;
text-align: center;
}

.author-info {
text-align: center;
}
}
