
/* 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.9) 100%);
    z-index: 2;
}

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

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

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

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-secondary-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #ffb347 100%);
    color: #ffffff;
}

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

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

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

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

.hero-feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description,
    .hero-secondary-text {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature-item {
        padding: 0.8rem 1.2rem;
        gap: 0.5rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

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

.services-overview::before {
  content: '';
  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="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

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

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

.services-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 0;
}

.services-hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.services-hero-image:hover {
  transform: translateY(-8px);
}

.services-grid {
  margin-bottom: 100px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 32px;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

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

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

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

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

.service-badge {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #bfdbfe;
}

.services-stats {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 100px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

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

.services-cta {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 32px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.services-cta::before {
  content: '';
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

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

.cta-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

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

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

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

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

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

.cta-image {
  flex: 0 0 300px;
  position: relative;
  z-index: 1;
}

.cta-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .services-title {
    font-size: 2.5rem;
  }
  
  .services-cta {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }
  
  .cta-image {
    flex: none;
  }
}

@media (max-width: 768px) {
  .services-overview {
    padding: 60px 0;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 32px 24px;
  }
  
  .services-stats {
    padding: 40px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .services-cta {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

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

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

.testimonials-title {
font-size: 2.75rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 24px;
line-height: 1.2;
}

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

.testimonials-carousel {
margin-bottom: 100px;
}

.testimonial-card {
background: white;
border-radius: 20px;
padding: 40px;
height: 100%;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
transition: all 0.4s ease;
margin-bottom: 30px;
}

.testimonial-card:hover {
transform: translateY(-12px);
box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
border-color: #3b82f6;
}

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

.client-avatar {
width: 70px;
height: 70px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #f1f5f9;
}

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

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

.client-company {
font-size: 0.9rem;
color: #3b82f6;
font-weight: 600;
}

.rating-stars {
margin-bottom: 20px;
}

.rating-stars i {
color: #fbbf24;
font-size: 1.2rem;
margin-right: 4px;
}

.testimonial-text {
font-size: 1.1rem;
line-height: 1.7;
color: #374151;
margin-bottom: 30px;
}

.project-results {
display: flex;
gap: 30px;
padding-top: 20px;
border-top: 1px solid #e2e8f0;
}

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

.metric-value {
display: block;
font-size: 1.5rem;
font-weight: 700;
color: #3b82f6;
}

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

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

.overview-content {
padding-right: 40px;
}

.overview-title {
font-size: 2.25rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 24px;
line-height: 1.3;
}

.overview-description {
font-size: 1.15rem;
color: #64748b;
line-height: 1.7;
margin-bottom: 40px;
}

.overview-metrics {
display: flex;
flex-direction: column;
gap: 24px;
}

.overview-metric {
display: flex;
align-items: center;
gap: 20px;
}

.metric-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: 1.5rem;
}

.metric-number {
display: block;
font-size: 1.75rem;
font-weight: 700;
color: #1e293b;
}

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

.overview-image {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-cta {
background: linear-gradient(135deg, #1e293b, #334155);
padding: 60px;
border-radius: 24px;
text-align: center;
}

.cta-wrapper {
max-width: 600px;
margin: 0 auto;
}

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

.cta-subtitle {
font-size: 1.15rem;
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 40px;
}

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

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

.cta-button.primary {
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
color: white;
border: 2px solid #3b82f6;
}

.cta-button.primary:hover {
background: linear-gradient(135deg, #1d4ed8, #1e40af);
color: white;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
background: transparent;
color: white;
border: 2px solid #64748b;
}

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

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

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

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

.testimonial-card {
padding: 30px 20px;
}

.testimonial-header {
flex-direction: column;
text-align: center;
gap: 15px;
}

.overview-content {
padding-right: 0;
margin-bottom: 40px;
}

.overview-title {
font-size: 1.75rem;
}

.project-results {
flex-direction: column;
gap: 20px;
}

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

.cta-button {
width: 100%;
max-width: 300px;
justify-content: center;
}

.testimonials-cta {
padding: 40px 20px;
}
}

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

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

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

.process-main-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.methodology-overview {
  margin-bottom: 80px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.methodology-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #4299e1;
}

.highlight-item i {
  color: #4299e1;
  font-size: 1.2rem;
}

.highlight-item span {
  font-weight: 500;
  color: #2d3748;
  font-size: 0.9rem;
}

.methodology-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.timeline-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.timeline-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-container {
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #4299e1, #667eea);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

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

.timeline-step.reverse .step-content {
  text-align: right;
  margin-left: 0;
  margin-right: 60px;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4299e1, #667eea);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
  z-index: 2;
}

.step-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-left: 60px;
  max-width: 450px;
}

.timeline-step.reverse .step-content {
  margin-left: 0;
  margin-right: 60px;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.step-duration {
  background: #edf2f7;
  color: #4a5568;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.step-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deliverable {
  background: #e6fffa;
  color: #234e52;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #b2f5ea;
}

.step-image {
  flex: 1;
  max-width: 400px;
  margin-right: 60px;
}

.timeline-step.reverse .step-image {
  margin-right: 0;
  margin-left: 60px;
}

.step-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4299e1, #667eea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.feature-description {
  color: #4a5568;
  line-height: 1.6;
}

.success-metrics {
  margin-bottom: 60px;
}

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

.metrics-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.metrics-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
}

.metric-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
  display: block;
}

.metric-label {
  color: #4a5568;
  font-weight: 500;
}

.process-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  overflow: hidden;
}

.cta-container {
  display: flex;
  align-items: center;
  min-height: 300px;
}

.cta-content {
  flex: 1;
  padding: 40px;
  color: white;
}

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

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.cta-primary-btn {
  background: white;
  color: #667eea;
}

.cta-primary-btn:hover {
  background: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.cta-secondary-btn:hover {
  background: rgba(255,255,255,0.3);
  color: white;
}

.cta-visual {
  flex: 1;
  max-width: 400px;
}

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

@media (max-width: 992px) {
  .timeline-container::before {
    left: 30px;
  }
  
  .timeline-step {
    flex-direction: column !important;
    align-items: flex-start;
  }
  
  .timeline-step.reverse {
    flex-direction: column !important;
  }
  
  .step-number {
    left: 30px;
  }
  
  .step-content {
    margin-left: 80px !important;
    margin-right: 0 !important;
    text-align: left !important;
    max-width: none;
  }
  
  .step-image {
    margin: 20px 0 0 80px !important;
    max-width: calc(100% - 80px);
  }
  
  .cta-container {
    flex-direction: column;
  }
  
  .cta-visual {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .process-main-title {
    font-size: 2.2rem;
  }
  
  .methodology-title {
    font-size: 1.8rem;
  }
  
  .timeline-title {
    font-size: 2rem;
  }
  
  .methodology-highlights {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-primary-btn, .cta-secondary-btn {
    justify-content: center;
  }
}

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

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

.form-wrapper {
  position: relative;
  z-index: 2;
}

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

.form-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

.project-order-form {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.input-group {
  position: relative;
}

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

.input-label i {
  color: #667eea;
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1.1rem;
  background: #ffffff;
  color: #2d3748;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  z-index: 1;
}

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

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

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

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

.form-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #4a5568;
}

.feature-item i {
  color: #667eea;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 16px;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(102, 126, 234, 0.3),
    0 4px 16px rgba(102, 126, 234, 0.2);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 16px 48px rgba(102, 126, 234, 0.4),
    0 8px 24px rgba(102, 126, 234, 0.3);
}

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

.button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.button-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-privacy {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #718096;
  text-align: center;
  line-height: 1.5;
}

.form-privacy i {
  color: #667eea;
  margin-right: 8px;
}

.form-privacy a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.form-privacy a:hover {
  text-decoration: underline;
}

.form-visual {
  margin-top: 80px;
  text-align: center;
}

.visual-content {
  position: relative;
  display: inline-block;
}

.visual-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.visual-stats {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 80px;
}

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

.stat-label {
  font-size: 0.8rem;
  color: #4a5568;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0 80px;
  }
  
  .form-title {
    font-size: 2.4rem;
  }
  
  .form-subtitle {
    font-size: 1.1rem;
  }
  
  .project-order-form {
    padding: 30px 20px;
    margin: 0 16px;
  }
  
  .form-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .visual-stats {
    position: static;
    transform: none;
    margin-top: 30px;
  }
  
  .stat-card {
    min-width: 70px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }
  
  .project-order-form {
    padding: 24px 16px;
  }
  
  .form-grid {
    gap: 24px;
  }
  
  .visual-stats {
    gap: 12px;
  }
  
  .stat-card {
    min-width: 60px;
    padding: 10px 12px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
}
