
/* 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-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.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;
    padding: 4rem 0;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e8f4f8;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: #f8f9ff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-additional {
    font-size: 1.1rem;
    color: #e8f4f8;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    color: #ffffff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description,
    .hero-additional {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(5px);
    }
}

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

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

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

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.services-additional {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.services-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
}

.services-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.services-image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.services-stats-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stats-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
}

.services-grid {
  margin-top: 80px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

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

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

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #718096;
}

.service-features .fas {
  color: #667eea;
  font-size: 0.8rem;
}

.services-bottom-cta {
  margin-top: 80px;
  background: white;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.bottom-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

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

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

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

.cta-primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.cta-secondary-btn {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.cta-secondary-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

@media (max-width: 992px) {
  .services-text-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-grid {
    margin-top: 60px;
  }
  
  .services-bottom-cta {
    margin-top: 60px;
    padding: 40px 20px;
  }
  
  .bottom-cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .services-overview {
    padding: 60px 0;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary-btn, .cta-secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .services-main-image {
    height: 300px;
  }
  
  .services-stats-card {
    padding: 15px;
  }
  
  .stats-number {
    font-size: 1.5rem;
  }
}

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

.testimonials-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.testimonials-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.2;
}

.testimonials-intro {
  font-size: 1.1rem;
  color: #546e7a;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.featured-testimonial {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.featured-testimonial .author-name,
.featured-testimonial .author-position,
.featured-testimonial .company-name,
.featured-testimonial .testimonial-text {
  color: white;
}

.featured-testimonial .testimonial-rating i {
  color: #ffd700;
}

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

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(102, 126, 234, 0.2);
}

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

.testimonial-author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 4px 0;
}

.author-position {
  font-size: 0.9rem;
  color: #667eea;
  margin: 0 0 2px 0;
  font-weight: 500;
}

.company-name {
  font-size: 0.85rem;
  color: #78909c;
  margin: 0;
  font-style: italic;
}

.testimonial-rating {
  font-size: 14px;
}

.testimonial-rating i {
  color: #ffd700;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #455a64;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-metrics {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

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

.metric-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

.testimonial-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.1);
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 16px;
}

.testimonial-highlight i {
  color: #667eea;
  font-size: 16px;
}

.testimonial-highlight span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #667eea;
}

.horizontal-testimonial {
  display: flex;
  flex-direction: column;
}

.horizontal-testimonial .testimonial-header {
  margin-bottom: 16px;
}

.testimonial-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.testimonial-stats .stat {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonials-summary {
  margin-bottom: 60px;
  padding: 60px 0;
}

.summary-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.summary-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #546e7a;
  margin-bottom: 30px;
}

.summary-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-item i {
  color: #667eea;
  font-size: 18px;
  width: 24px;
}

.highlight-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #37474f;
}

.success-metrics-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.metrics-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

.metrics-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 20px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.metric-desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.testimonials-cta {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #546e7a;
  margin-bottom: 32px;
}

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

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

.cta-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.cta-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.cta-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .testimonials-main-title {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .testimonial-metrics {
    justify-content: center;
  }
  
  .summary-highlights {
    align-items: center;
    text-align: center;
  }
  
  .metrics-overlay {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .testimonials-showcase {
    padding: 50px 0;
  }
  
  .testimonial-stats {
    justify-content: center;
  }
  
  .metrics-overlay {
    padding: 20px;
  }
  
  .metric-card {
    padding: 16px;
  }
  
  .testimonials-cta {
    padding: 30px 20px;
  }
}

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

.process-workflow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.workflow-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.workflow-intro {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.workflow-steps {
  margin-top: 60px;
}

.step-content {
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
}

.step-number-badge::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

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

.step-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.step-additional {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.step-features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #4a5568;
  font-weight: 500;
}

.step-features i {
  color: #667eea;
  margin-right: 12px;
  font-size: 1.1rem;
}

.step-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

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

.step-image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
}

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

.process-timeline {
  margin-top: 80px;
  padding: 60px 0;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.timeline-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 50px;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: white;
  border: 4px solid #667eea;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-icon i {
  font-size: 1.5rem;
  color: #667eea;
}

.timeline-content {
  text-align: center;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.timeline-duration {
  font-size: 0.9rem;
  color: #667eea;
  font-weight: 600;
}

.process-guarantees {
  margin-top: 60px;
  padding: 60px 0;
}

.guarantees-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 50px;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.guarantee-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin-bottom: 25px;
}

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

.guarantee-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.guarantee-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

.process-cta {
  margin-top: 60px;
}

.cta-container {
  padding: 60px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-primary-btn, .cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary-btn {
  background: white;
  color: #667eea;
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,255,255,0.4);
  color: #4c51bf;
}

.cta-secondary-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

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

@media (max-width: 768px) {
  .workflow-main-title {
    font-size: 2rem;
  }
  
  .step-content {
    padding: 30px 20px;
  }
  
  .step-title {
    font-size: 1.4rem;
  }
  
  .timeline-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .timeline-container::before {
    display: none;
  }
  
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary-btn, .cta-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

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

.order-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="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.08"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.form-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.form-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.form-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.form-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

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

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

.input-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  letter-spacing: 0.025em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 20px;
  color: #a0aec0;
  font-size: 18px;
  z-index: 1;
  transition: all 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 20px 20px 20px 56px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #2d3748;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  color: #667eea;
  transform: scale(1.1);
}

.form-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.form-actions {
  margin-bottom: 32px;
}

.submit-btn {
  width: 100%;
  padding: 20px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

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

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

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

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

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.privacy-note,
.response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #718096;
}

.privacy-note i,
.response-time i {
  color: #667eea;
}

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

.alternative-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 24px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: #4a5568;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.contact-method:hover {
  border-color: #667eea;
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.method-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
}

.method-value {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .form-title {
    font-size: 36px;
  }
  
  .form-description {
    font-size: 18px;
  }
  
  .form-container {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .form-grid {
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .form-input {
    padding: 16px 16px 16px 48px;
  }
  
  .input-icon {
    left: 16px;
    font-size: 16px;
  }
  
  .submit-btn {
    padding: 18px 24px;
    font-size: 16px;
  }
  
  .form-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .contact-method {
    padding: 16px;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 28px;
  }
  
  .form-description {
    font-size: 16px;
  }
  
  .form-container {
    padding: 24px 16px;
    margin: 0 16px;
  }
}
