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

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

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: -1;
}

.hero-content {
    color: #ffffff;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    color: #ced4da;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.btn-primary-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
    color: #ffffff;
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #adb5bd;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

/* Block 2 */
.features-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.8rem;
    color: #ffffff;
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-description {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.feature-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

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

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c5ce7;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #8b9cb5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.features-showcase-image {
    margin: 5rem 0;
    text-align: center;
}

.showcase-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 8px solid #ffffff;
}

.features-benefits {
    margin-top: 5rem;
}

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

.benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.benefits-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check {
    color: #00b894;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.benefits-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-cta {
    margin-top: 5rem;
    text-align: center;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 24px;
    padding: 3rem 2rem;
    color: #ffffff;
}

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

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    color: #6c5ce7;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    color: #5a4fcf;
}

@media (max-width: 992px) {
    .features-title {
        font-size: 2.2rem;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .features-showcase {
        padding: 3rem 0;
    }
    
    .features-title {
        font-size: 1.9rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-metrics {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}

/* Block 3 */
.testimonials-showcase {
            background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
            padding: 100px 0;
            margin: 60px 0;
        }

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

        .testimonials-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
            line-height: 1.2;
        }

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

        .testimonial-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f5f9;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            background: linear-gradient(135deg, #667eea, #764ba2);
            height: 4px;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

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

        .featured-testimonial {
            border: 2px solid #667eea;
            transform: scale(1.05);
        }

        .testimonial-badge {
            position: absolute;
            top: -1px;
            right: 24px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 20px;
            border-radius: 0 0 16px 16px;
            font-size: 0.85rem;
            font-weight: 600;
        }

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

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            object-fit: cover;
            border: 3px solid #f1f5f9;
        }

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

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

        .testimonial-role {
            font-size: 1rem;
            color: #667eea;
            font-weight: 500;
            margin-bottom: 8px;
        }

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

        .testimonial-rating i {
            color: #fbbf24;
            font-size: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 32px;
            font-weight: 400;
        }

        .testimonial-metrics {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
            padding: 20px 0;
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
        }

        .metric {
            text-align: center;
            flex: 1;
        }

        .metric-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 800;
            color: #667eea;
            margin-bottom: 4px;
        }

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

        .testimonial-company {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #64748b;
            font-weight: 500;
        }

        .testimonial-company-icon {
            color: #667eea;
            font-size: 1.1rem;
        }

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

        .stat-card {
            color: white;
            text-align: center;
            padding: 20px;
        }

        .stat-icon {
            background: rgba(255, 255, 255, 0.15);
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

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

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

        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .stat-description {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0;
        }

        .testimonials-cta {
            text-align: center;
            margin-top: 60px;
        }

        .cta-content {
            background: white;
            padding: 60px 40px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid #f1f5f9;
        }

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

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

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

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

        .cta-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
            color: #64748b;
            font-size: 0.95rem;
        }

        .cta-guarantee i {
            color: #10b981;
        }

        @media (max-width: 768px) {
            .testimonials-title {
                font-size: 2.5rem;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .testimonials-stats {
                margin: 40px 0;
                padding: 40px 0;
            }
            
            .testimonial-metrics {
                flex-direction: column;
                gap: 16px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .featured-testimonial {
                transform: none;
            }
        }

/* 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: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 100%);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.step-icon {
    font-size: 1.75rem;
    color: #3b82f6;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-metrics {
    margin-top: 20px;
}

.metric-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.step-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.step-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
}

.overlay-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 1.1rem;
}

.overlay-stat i {
    font-size: 1.25rem;
}

.process-benefits {
    margin-top: 80px;
    padding: 60px 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.benefit-card:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 100%);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

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

.benefit-stat {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

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

.cta-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

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

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

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 1rem;
}

.cta-feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.cta-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

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

@media (max-width: 991px) {
    .process-title {
        font-size: 2.25rem;
    }
    
    .process-subtitle {
        font-size: 1.125rem;
    }
    
    .step-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .step-image-wrapper {
        min-height: 300px;
        margin-bottom: 30px;
    }
    
    .process-benefits {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .benefits-title {
        font-size: 1.875rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-image {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .process-workflow {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 1.875rem;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-container {
        padding: 30px 20px;
    }
    
    .cta-features {
        align-items: flex-start;
    }
}

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

.contact-order-form::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><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.05"/><stop offset="100%" stop-color="%23764ba2" stop-opacity="0.02"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
    z-index: 1;
}

.contact-order-form .container {
    position: relative;
    z-index: 2;
}

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

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

.form-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
}

.form-benefits .benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.form-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 500px;
}

.form-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.2;
}

.form-section-subtitle {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-form {
    width: 100%;
}

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

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

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

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

.form-control::placeholder {
    color: #9ca3af;
    font-size: 0.95rem;
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1rem;
    z-index: 3;
    margin-top: 14px;
}

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

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -8px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

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

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

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

.form-security {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

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

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

.visual-stats {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.visual-stats .stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.visual-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.visual-stats .stat-label {
    font-size: 0.75rem;
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-testimonial {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    font-size: 1.125rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

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

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(59, 130, 246, 0.2);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 8px;
}

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

.author-rating i {
    color: #f59e0b;
    font-size: 1rem;
}

.form-guarantee {
    margin-top: 60px;
    text-align: center;
}

.guarantee-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 32px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px -8px rgba(16, 185, 129, 0.3);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.guarantee-text {
    text-align: left;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.guarantee-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-benefits {
        gap: 20px;
    }
    
    .form-wrapper {
        padding: 32px 24px;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-order-form {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .form-testimonial {
        padding: 24px;
    }
}
