
/* Block 1 */
.hero-banner {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    
    .hero-background {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        

    }
    
    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        z-index: 1;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        color: #e9ecef;
        margin-bottom: 2rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .hero-description {
        font-size: 1.1rem;
        color: #f8f9fa;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .hero-description-secondary {
        font-size: 1rem;
        color: #dee2e6;
        line-height: 1.6;
        margin-bottom: 3rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .hero-features {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #ffffff;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: #ffc107;
    }
    
    .feature-text {
        font-size: 0.9rem;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .btn-primary-hero {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
        transition: all 0.3s ease;
    }
    
    .btn-primary-hero:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
        color: #ffffff;
        text-decoration: none;
    }
    
    .btn-secondary-hero {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .btn-secondary-hero:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        color: #ffffff;
        text-decoration: none;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        color: #ffffff;
    }
    
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffc107;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
        display: block;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .hero-features {
            gap: 1.5rem;
        }
        
        .hero-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-primary-hero,
        .btn-secondary-hero {
            width: 280px;
            justify-content: center;
        }
        
        .hero-stats {
            gap: 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-features {
            justify-content: space-around;
            gap: 1rem;
        }
        
        .feature-item {
            flex-direction: row;
            gap: 0.5rem;
        }
        
        .feature-icon {
            font-size: 1.5rem;
            margin-bottom: 0;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }

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

.translation-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2394a3b8" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    z-index: 0;
}

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

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

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

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

.process-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.process-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.process-image-container:hover .process-image {
    transform: scale(1.05);
}

.process-content {
    padding: 2rem;
}

.process-step {
    position: relative;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 3px solid #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.step-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.feature-badge i {
    font-size: 1rem;
}

.process-cta {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

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

.btn-process-primary,
.btn-process-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-process-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-process-secondary {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-process-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .translation-process {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 2.2rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
    }
    
    .process-content {
        padding: 1rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .process-image {
        height: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-process-primary,
    .btn-process-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.testimonial-featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.client-position {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 8px;
}

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

.rating-stars i {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

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

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

.metric-label {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-group {
    text-align: center;
    flex: 1;
}

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

.stat-description {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.4;
}

.testimonials-summary {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

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

.stat-title {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.rating-bars {
    max-width: 280px;
    margin: 0 auto;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bar-label {
    font-size: 0.9rem;
    color: #718096;
    min-width: 60px;
    text-align: left;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.bar-percentage {
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

.client-industries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.industry-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.retention-note {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-top: 12px;
}

.testimonials-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f7faff 0%, #edf2f7 100%);
    border-radius: 20px;
    border: 2px dashed #cbd5e0;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-testimonial-primary,
.btn-testimonial-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.btn-testimonial-secondary {
    background: white;
    color: #667eea;
    border-color: #667eea;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-testimonial-primary,
    .btn-testimonial-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

.industry-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-header {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.expertise-card:hover .expertise-image {
    transform: scale(1.05);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(102, 16, 242, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card:hover .industry-overlay {
    opacity: 1;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.card-content {
    padding: 30px;
}

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

.expertise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.feature-item i {
    color: #0d6efd;
    margin-right: 8px;
    font-size: 1rem;
    width: 20px;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 5px;
}

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

.healthcare-card:hover {
    box-shadow: 0 25px 60px rgba(220, 53, 69, 0.15);
}

.legal-card:hover {
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.15);
}

.tech-card:hover {
    box-shadow: 0 25px 60px rgba(102, 16, 242, 0.15);
}

.finance-card:hover {
    box-shadow: 0 25px 60px rgba(25, 135, 84, 0.15);
}

.manufacturing-card:hover {
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.15);
}

.certification-showcase {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.certification-header {
    position: relative;
    height: 250px;
}

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

.certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85), rgba(102, 16, 242, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
}

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

.certification-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.certification-content {
    padding: 40px;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.cert-badge {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: #e3f2fd;
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.cert-badge i {
    font-size: 2rem;
    color: #0d6efd;
    margin-right: 15px;
    min-width: 40px;
}

.cert-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cert-info p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.certification-stats {
    display: flex;
    justify-content: space-around;
    padding: 25px 0;
    border-top: 2px solid #e9ecef;
}

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

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 8px;
}

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

.expertise-cta {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.cta-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    margin-right: 10px;
    font-size: 1.2rem;
    opacity: 0.8;
}

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

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

.btn-expertise-primary {
    background: white;
    color: #0d6efd;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-expertise-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    color: #0d6efd;
}

.btn-expertise-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-expertise-primary i,
.btn-expertise-secondary i {
    margin-right: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .expertise-features {
        grid-template-columns: 1fr;
    }
    
    .industry-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .certification-badges {
        grid-template-columns: 1fr;
    }
    
    .certification-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .expertise-cta {
        padding: 35px 25px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .industry-expertise {
        padding: 60px 0;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .certification-content {
        padding: 25px 20px;
    }
}

/* Block 5 */
.premium-contact-form {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .premium-contact-form::before {
            content: '';
            background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .form-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
        }
        
        .form-icon i {
            font-size: 32px;
            color: white;
        }
        
        .form-title {
            font-size: 48px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        
        .form-subtitle {
            font-size: 20px;
            color: #64748b;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-container {
            background: white;
            border-radius: 32px;
            padding: 60px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            margin-bottom: 60px;
        }
        
        .form-grid {
            display: grid;
            gap: 32px;
            margin-bottom: 40px;
        }
        
        .input-group {
            position: relative;
        }
        
        .input-label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        
        .input-wrapper {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .form-input {
            width: 100%;
            height: 64px;
            padding: 0 24px 0 60px;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            font-size: 16px;
            background: #fafafa;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
        }
        
        .form-input:focus {
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }
        
        .form-input:focus + .input-focus-line {
            transform: scaleX(1);
        }
        
        .form-input:focus ~ .input-icon {
            color: #3b82f6;
            transform: translateY(-50%) scale(1.1);
        }
        
        .input-focus-line {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            border-radius: 0 0 16px 16px;
        }
        
        .form-features {
            display: flex;
            justify-content: space-around;
            margin-bottom: 40px;
            padding: 24px;
            background: #f8fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }
        
        .feature-item i {
            color: #3b82f6;
            font-size: 16px;
        }
        
        .submit-container {
            text-align: center;
        }
        
        .submit-button {
            width: 100%;
            height: 72px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border: none;
            border-radius: 20px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .submit-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
        }
        
        .submit-button:hover::before {
            left: 100%;
        }
        
        .submit-button:active {
            transform: translateY(-2px);
        }
        
        .button-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
        }
        
        .submit-button:hover .button-icon {
            transform: translateX(4px);
        }
        
        .privacy-note {
            margin-top: 24px;
            font-size: 14px;
            color: #6b7280;
            line-height: 1.5;
        }
        
        .privacy-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }
        
        .privacy-link:hover {
            text-decoration: underline;
        }
        
        .contact-alternatives {
            margin-bottom: 60px;
        }
        
        .alternatives-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .alternatives-title {
            font-size: 32px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }
        
        .alternatives-subtitle {
            font-size: 16px;
            color: #64748b;
        }
        
        .contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        
        .contact-option {
            background: white;
            padding: 32px 24px;
            border-radius: 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .contact-option:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-decoration: none;
        }
        
        .option-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }
        
        .phone-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }
        
        .email-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        .whatsapp-icon {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        }
        
        .option-content {
            flex: 1;
        }
        
        .option-title {
            font-size: 18px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 4px;
        }
        
        .option-detail {
            font-size: 16px;
            color: #374151;
            margin-bottom: 4px;
        }
        
        .option-status {
            font-size: 14px;
            color: #6b7280;
            font-style: italic;
        }
        
        .trust-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 32px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }
        
        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .trust-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            object-fit: cover;
        }
        
        .trust-text {
            font-size: 12px;
            font-weight: 500;
            color: #64748b;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .premium-contact-form {
                padding: 80px 0;
            }
            
            .form-title {
                font-size: 36px;
            }
            
            .form-subtitle {
                font-size: 18px;
            }
            
            .form-container {
                padding: 40px 24px;
                border-radius: 24px;
            }
            
            .form-features {
                flex-direction: column;
                gap: 16px;
            }
            
            .contact-options {
                grid-template-columns: 1fr;
            }
            
            .contact-option {
                flex-direction: column;
                text-align: center;
                padding: 24px;
            }
            
            .trust-indicators {
                flex-wrap: wrap;
                gap: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .form-title {
                font-size: 28px;
            }
            
            .form-subtitle {
                font-size: 16px;
            }
            
            .alternatives-title {
                font-size: 24px;
            }
            
            .trust-indicators {
                grid-template-columns: repeat(2, 1fr);
                display: grid;
            }
        }
