
/* 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(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

.hero-description {
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-main {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-text-secondary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-text-accent {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-style: italic;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #ee5a52, #ff6b6b);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-button i {
    font-size: 1.1em;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    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.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-text-main {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text-main {
        font-size: 1rem;
    }
    
    .hero-text-secondary,
    .hero-text-accent {
        font-size: 0.95rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature-item {
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

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

.services-overview::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="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

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

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.service-primary {
  grid-column: span 2;
}

.service-primary .service-content {
  padding: 40px;
}

.service-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-primary .service-image-wrapper {
  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-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

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

.service-content {
  padding: 30px;
}

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

.service-primary .service-title {
  font-size: 1.6rem;
}

.service-text {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.services-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 8px;
}

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

.services-cta {
  background: linear-gradient(135deg, #212529, #343a40);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
}

.cta-content {
  margin-bottom: 30px;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  color: white;
}

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

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

@media (max-width: 768px) {
  .services-overview {
    padding: 50px 0;
  }
  
  .services-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-primary {
    grid-column: span 1;
  }
  
  .services-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-cta {
    padding: 30px 20px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Block 3 */
.testimonials-showcase {
      padding: 120px 0;
      background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f1f7ff 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% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .testimonials-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .section-badge i {
      font-size: 16px;
    }

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

    .testimonials-description {
      font-size: 1.2rem;
      color: #64748b;
      line-height: 1.8;
      margin: 0;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
      gap: 32px;
      margin-bottom: 80px;
    }

    .testimonial-card {
      background: white;
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border: 1px solid #f1f5f9;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    }

    .testimonial-card.featured {
      grid-column: span 2;
      background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
      border: 2px solid #e2e8f0;
      transform: scale(1.02);
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    }

    .client-info {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .client-photo {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e2e8f0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .client-details h4 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #1e293b;
      margin: 0 0 8px 0;
    }

    .client-role {
      font-size: 1rem;
      color: #3b82f6;
      font-weight: 600;
      margin: 0 0 8px 0;
    }

    .project-type {
      font-size: 0.9rem;
      color: #64748b;
      background: #f1f5f9;
      padding: 6px 12px;
      border-radius: 12px;
      display: inline-block;
    }

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

    .rating-stars i {
      color: #f59e0b;
      font-size: 18px;
    }

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

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

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

    .testimonial-highlight i {
      font-size: 20px;
    }

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

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .stat-card {
      display: flex;
      align-items: center;
      gap: 20px;
      background: white;
      padding: 32px;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border: 1px solid #f1f5f9;
    }

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

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

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

    .testimonials-cta {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    }

    .cta-background {
      position: relative;
      height: 300px;
      overflow: hidden;
    }

    .cta-bg-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(16, 185, 129, 0.8));
    }

    .cta-content-wrapper {
      padding: 60px 40px;
      text-align: center;
      position: relative;
    }

    .cta-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .cta-description {
      font-size: 1.2rem;
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      border-radius: 16px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .cta-button.primary {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    }

    .cta-button.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
      color: white;
    }

    .cta-button.secondary {
      background: white;
      color: #3b82f6;
      border: 2px solid #3b82f6;
    }

    .cta-button.secondary:hover {
      background: #3b82f6;
      color: white;
      transform: translateY(-2px);
    }

    .trust-indicators {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #64748b;
      font-weight: 600;
    }

    .trust-item i {
      color: #10b981;
      font-size: 20px;
    }

    @media (max-width: 768px) {
      .testimonials-showcase {
        padding: 80px 0;
      }

      .testimonials-title {
        font-size: 2.4rem;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .testimonial-card.featured {
        grid-column: span 1;
        transform: none;
      }

      .stats-container {
        grid-template-columns: 1fr;
      }

      .cta-content-wrapper {
        padding: 40px 20px;
      }

      .cta-title {
        font-size: 2rem;
      }

      .trust-indicators {
        flex-direction: column;
        gap: 20px;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

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

.process-workflow::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 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="50" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3);
}

.process-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.step-item:hover::before {
  transform: scaleY(1);
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-active {
  border: 2px solid #007bff;
  background: linear-gradient(135deg, #f8fbff, #e3f2fd);
}

.step-active::before {
  transform: scaleY(1);
}

.step-number {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.4);
  margin-top: 20px;
  flex-shrink: 0;
}

.step-visual {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

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

.step-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-item:hover .step-overlay {
  opacity: 1;
}

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

.step-icon {
  color: white;
  font-size: 2.5rem;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.step-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.highlight-item i {
  font-size: 0.85rem;
}

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

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

.benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.benefits-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.3);
}

.benefit-icon i {
  color: white;
  font-size: 1.8rem;
}

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

.benefit-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.process-cta {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: white;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
}

.cta-content {
  margin-bottom: 40px;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button.primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.6);
  color: white;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: white;
  color: #1a1a1a;
  border-color: white;
}

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

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

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

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .process-title {
    font-size: 2.8rem;
  }
  
  .step-item {
    flex-direction: column !important;
    gap: 30px;
    padding: 30px;
  }
  
  .step-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .step-number {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .process-workflow {
    padding: 60px 0;
  }
  
  .process-title {
    font-size: 2.2rem;
  }
  
  .process-description {
    font-size: 1.1rem;
  }
  
  .step-item {
    padding: 24px;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-highlights {
    flex-direction: column;
  }
  
  .highlight-item {
    justify-content: center;
  }
  
  .process-benefits {
    padding: 40px 24px;
  }
  
  .benefits-title {
    font-size: 2rem;
  }
  
  .process-cta {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .process-stats {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .process-header {
    margin-bottom: 50px;
  }
  
  .step-item {
    margin-bottom: 40px;
  }
  
  .step-visual {
    height: 180px;
  }
}

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.form-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

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

.form-description {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.form-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.visual-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.9), rgba(29, 78, 216, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.visual-content {
  text-align: center;
  color: white;
}

.visual-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visual-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.visual-features .feature-item i {
  font-size: 1.2rem;
  color: #fbbf24;
}

.form-content {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.form-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.form-text {
  color: #64748b;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.form-group {
  position: relative;
}

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

.form-label i {
  color: #3b82f6;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #1f2937;
}

.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-helper {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 8px;
  padding-left: 4px;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 20px 32px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  margin-bottom: 24px;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

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

.button-accent {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.form-security {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.9rem;
}

.security-item i {
  color: #10b981;
  font-size: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-card {
  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(226, 232, 240, 0.6);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.benefit-text {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
}

.testimonial-highlight {
  background: linear-gradient(135deg, #1e293b, #374151);
  border-radius: 24px;
  padding: 48px;
  color: white;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.testimonial-quote i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 16px;
  display: block;
}

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

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-role {
  color: #94a3b8;
  font-size: 0.9rem;
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stats .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  display: block;
}

.testimonial-stats .stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .form-title {
    font-size: 2.2rem;
  }
  
  .form-content {
    padding: 32px 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .form-security {
    flex-direction: column;
    gap: 16px;
  }
  
  .visual-features {
    grid-template-columns: 1fr;
  }
  
  .testimonial-highlight {
    padding: 32px 24px;
  }
}
