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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 80px 0 60px 0;
}

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

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

.hero-description {
    font-size: 1.1rem;
    color: #d1ecf1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.hero-secondary {
    font-size: 1rem;
    color: #b8dce8;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: justify;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #7c9bf0 0%, #8a5aa8 100%);
    color: white;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

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

.benefit-item i {
    color: #4ade80;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description,
    .hero-secondary {
        text-align: left;
        font-size: 1rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-hero {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

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

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

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

.process-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon-wrapper i {
    font-size: 3rem;
    color: #3182ce;
    background: linear-gradient(135deg, #3182ce, #2b6cb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -15px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-visual-section {
    margin-bottom: 60px;
}

.process-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.process-benefits {
    padding-left: 2rem;
}

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

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

.benefit-metric {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3182ce;
}

.metric-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 2rem;
    color: #3182ce;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.metric-content p {
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.process-cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    color: white;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

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

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

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

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

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
    color: #5a67d8;
}

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

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

@media (max-width: 768px) {
    .process-main-title {
        font-size: 2.2rem;
    }
    
    .process-benefits {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

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

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

        .testimonials-subtitle {
            font-size: 1.2rem;
            color: #4a5568;
            margin-bottom: 40px;
            line-height: 1.6;
        }

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

        .trust-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #3182ce;
            line-height: 1;
        }

        .trust-label {
            font-size: 0.9rem;
            color: #718096;
            margin-top: 8px;
            font-weight: 500;
        }

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

        .testimonial-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 1px solid rgba(226, 232, 240, 0.5);
        }

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

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

        .testimonial-card.horizontal {
            flex-direction: row;
            align-items: center;
            padding: 30px;
        }

        .featured-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 25px;
            color: #fbbf24;
            font-size: 1.1rem;
        }

        .testimonial-card.featured .testimonial-rating {
            color: #fef3c7;
        }

        .testimonial-content {
            flex: 1;
            margin-bottom: 25px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a5568;
            font-style: italic;
            margin: 0;
        }

        .testimonial-card.featured .testimonial-text {
            color: rgba(255, 255, 255, 0.95);
        }

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

        .testimonial-card.horizontal .testimonial-author {
            margin-left: 30px;
            min-width: 200px;
        }

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

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

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a202c;
            margin: 0 0 5px 0;
        }

        .testimonial-card.featured .author-name {
            color: white;
        }

        .author-role {
            font-size: 0.9rem;
            color: #3182ce;
            font-weight: 600;
            margin: 0 0 3px 0;
        }

        .testimonial-card.featured .author-role {
            color: #fef3c7;
        }

        .author-company {
            font-size: 0.85rem;
            color: #718096;
            margin: 0;
        }

        .testimonial-card.featured .author-company {
            color: rgba(255, 255, 255, 0.8);
        }

        .industry-validation {
            margin-bottom: 80px;
        }

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

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

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

        .awards-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .award-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .award-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3182ce, #2c5282);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .award-info h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a202c;
            margin: 0 0 5px 0;
        }

        .award-info p {
            font-size: 0.9rem;
            color: #718096;
            margin: 0;
        }

        .validation-image-container {
            text-align: center;
        }

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

        .testimonials-cta {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            padding: 60px;
            border-radius: 24px;
            text-align: center;
            color: white;
        }

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

        .cta-testimonials-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.9;
        }

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

        .btn-testimonials-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #3182ce, #2c5282);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-testimonials-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(49, 130, 206, 0.4);
            color: white;
        }

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

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

        .social-proof {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 40px;
        }

        .social-proof-text {
            font-size: 1rem;
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .company-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .company-logo {
            height: 40px;
            width: auto;
            opacity: 0.7;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .company-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .testimonials-showcase {
                padding: 60px 0;
            }
            
            .testimonials-main-title {
                font-size: 2rem;
            }
            
            .trust-indicators {
                gap: 30px;
            }
            
            .trust-number {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 30px 20px;
            }
            
            .testimonial-card.horizontal {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-card.horizontal .testimonial-author {
                margin-left: 0;
                margin-top: 20px;
                min-width: auto;
                justify-content: center;
            }
            
            .validation-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .testimonials-cta {
                padding: 40px 20px;
            }
            
            .cta-testimonials-title {
                font-size: 1.8rem;
            }
            
            .cta-testimonials-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-testimonials-primary,
            .btn-testimonials-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .company-logos {
                gap: 20px;
            }
            
            .company-logo {
                height: 30px;
            }
        }

/* Block 4 */
.advanced-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.advanced-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: 1;
}

.features-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.features-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-showcase {
    margin-bottom: 80px;
}

.feature-highlight-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

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

.feature-image-wrapper {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.feature-highlight-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-highlight-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

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

.feature-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.08);
}

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.feature-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-card-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-card-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #374151;
}

.benefit-point i {
    color: #10b981;
    font-size: 0.75rem;
}

.features-demo-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 30px;
}

.demo-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.demo-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
}

.demo-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.demo-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.demo-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-demo-primary, .btn-demo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-demo-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: white;
    border: none;
}

.btn-demo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
    color: white;
}

.btn-demo-secondary {
    background: white;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.btn-demo-secondary:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.demo-visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.demo-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.demo-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.demo-play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-play-button:hover {
    transform: scale(1.1);
}

.demo-play-button i {
    font-size: 1.75rem;
    color: #4f46e5;
    margin-left: 4px;
}

.features-cta-section {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

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

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

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

.btn-features-primary, .btn-features-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: 1.1rem;
}

.btn-features-primary {
    background: white;
    color: #4f46e5;
    border: none;
}

.btn-features-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.3);
    color: #4f46e5;
}

.btn-features-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-features-secondary:hover {
    background: white;
    color: #4f46e5;
    transform: translateY(-2px);
}

.trial-benefits {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trial-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trial-benefit i {
    color: #10b981;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .features-main-title {
        font-size: 2.5rem;
    }
    
    .feature-highlight-card {
        padding: 30px;
    }
    
    .demo-title {
        font-size: 1.875rem;
    }
    
    .cta-features-title {
        font-size: 2rem;
    }
    
    .feature-metrics {
        justify-content: center;
    }
    
    .demo-stats {
        justify-content: center;
    }
    
    .trial-benefits {
        gap: 20px;
    }
}

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

        .contact-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="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            pointer-events: none;
        }

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

        .form-main-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .benefit-point {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 500;
        }

        .benefit-point i {
            color: #4ade80;
            font-size: 1.1rem;
        }

        .form-container {
            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.25);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

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

        .form-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.4);
        }

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

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

        .form-description {
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.5;
        }

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

        .form-label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            font-size: 0.95rem;
            letter-spacing: 0.025em;
        }

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

        .input-wrapper i {
            position: absolute;
            left: 16px;
            color: #9ca3af;
            font-size: 1.1rem;
            z-index: 2;
        }

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

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

        .form-input::placeholder {
            color: #9ca3af;
        }

        .form-submit-section {
            margin-top: 40px;
            text-align: center;
        }

        .form-submit-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 18px 48px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 0 auto 24px;
            box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.4);
        }

        .form-submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px -5px rgba(102, 126, 234, 0.5);
        }

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

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

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

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

        .form-sidebar {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .sidebar-image-container {
            height: 200px;
            overflow: hidden;
        }

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

        .sidebar-content {
            padding: 32px 24px;
        }

        .sidebar-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 24px;
        }

        .process-step {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .step-number {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

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

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

        .sidebar-guarantee {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .guarantee-badge {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .guarantee-badge i {
            color: white;
            font-size: 1.2rem;
        }

        .guarantee-content h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .guarantee-content p {
            font-size: 0.85rem;
            color: #475569;
            line-height: 1.4;
            margin: 0;
        }

        .final-testimonial {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-quote {
            text-align: center;
            margin-bottom: 32px;
        }

        .testimonial-quote i {
            font-size: 2rem;
            color: #667eea;
            margin-bottom: 16px;
        }

        .testimonial-quote p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #374151;
            font-style: italic;
            margin: 0;
        }

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

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

        .author-details h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 4px;
        }

        .author-details p {
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 6px;
        }

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

        .author-rating i {
            color: #fbbf24;
            font-size: 0.9rem;
        }

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

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

            .form-container {
                padding: 32px 24px;
            }

            .form-benefits-bar {
                gap: 20px;
            }

            .form-trust-indicators {
                gap: 16px;
            }

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

            .final-testimonial {
                padding: 24px;
            }
        }
