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

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.85) 0%, rgba(27, 38, 79, 0.75) 50%, rgba(13, 27, 62, 0.9) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: #64b5f6;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e8eaf6;
    font-weight: 400;
    max-width: 90%;
}

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

.btn-primary-hero {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.4);
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(25, 118, 210, 0.6);
    color: #ffffff;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #64b5f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
}

/* Block 2 */
.services-overview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

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

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.services-content {
    padding: 0 20px;
}

.content-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.3;
}

.content-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.services-grid {
    margin: 50px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

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

.btn-primary-cta, .btn-secondary-cta {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

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

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

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

.services-visual {
    position: relative;
    padding: 20px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.stats-overlay {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 4px 0 2px 0;
    display: block;
}

.stat-desc {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
}

.benefits-row {
    margin-top: 80px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

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

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

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

.benefit-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services-overview-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .services-grid {
        margin: 30px 0;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 16px;
    }
    
    .stats-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-primary-cta, .btn-secondary-cta {
        flex: 1;
        text-align: center;
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    .stats-overlay {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        min-width: 120px;
    }
}

/* Block 3 */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.content-intro {
    margin-bottom: 40px;
}

.intro-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

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

.featured-testimonial {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    transform: scale(1.02);
}

.featured-testimonial .client-name,
.featured-testimonial .testimonial-text {
    color: white;
}

.featured-testimonial .client-position {
    color: rgba(255, 255, 255, 0.8);
}

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

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.client-info {
    flex: 1;
}

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

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

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.2);
    font-family: serif;
    line-height: 0;
    margin-right: 8px;
}

.testimonial-metrics {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbbf24;
}

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

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3b82f6;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.trust-text {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.testimonials-visual {
    position: relative;
    z-index: 1;
}

.main-testimonial-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.success-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.metric-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

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

.metric-card .metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

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

.metric-card .metric-label {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
}

.client-logos {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.client-logo {
    height: 50px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.action-section {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.action-section::before {
    content: '';
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

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

.action-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.rating-summary {
    margin-top: 20px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.btn-primary-action,
.btn-secondary-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-action {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

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

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

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

@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-section {
        text-align: center;
    }
    
    .action-buttons {
        margin-top: 30px;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .action-title {
        font-size: 1.6rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
}

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

        .process-workflow-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
        }

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

        .section-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
            line-height: 1.2;
        }

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

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

        .content-introduction {
            margin-bottom: 50px;
        }

        .intro-heading {
            font-size: 2.1rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
        }

        .intro-text {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

        .step-item {
            display: flex;
            gap: 25px;
            margin-bottom: 45px;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
        }

        .step-content {
            flex: 1;
        }

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

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

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

        .feature-tag {
            background: linear-gradient(135deg, #ddd6fe 0%, #e0e7ff 100%);
            color: #5b21b6;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .process-benefits {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .benefits-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

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

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

        .process-visual {
            position: relative;
        }

        .main-process-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .timeline-overlay {
            position: absolute;
            top: 40px;
            right: 30px;
            background: rgba(255, 255, 255, 0.95);
            padding: 25px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 220px;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-badge {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .timeline-content h5 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }

        .timeline-content p {
            font-size: 0.8rem;
            color: #6b7280;
            margin: 0;
        }

        .quality-indicators {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .quality-card {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            flex: 1;
            text-align: center;
        }

        .quality-icon {
            color: #059669;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .quality-number {
            display: block;
            font-size: 1.2rem;
            font-weight: 800;
            color: #1f2937;
        }

        .quality-label {
            font-size: 0.8rem;
            color: #6b7280;
        }

        .technology-showcase {
            margin-top: 40px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .tech-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
            text-align: center;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .tech-item {
            text-align: center;
            padding: 15px;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .tech-item:hover {
            transform: translateY(-5px);
        }

        .tech-logo {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 10px;
        }

        .tech-name {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 600;
        }

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

        .action-container {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 60px;
            border-radius: 24px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .action-heading {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .action-text {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .action-stats {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .stat-point {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        .stat-point strong {
            color: #fbbf24;
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex-shrink: 0;
        }

        .btn-start-process, .btn-schedule-meeting {
            padding: 18px 35px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 220px;
        }

        .btn-start-process {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        .btn-start-process:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
            color: white;
        }

        .btn-schedule-meeting {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-schedule-meeting:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
        }

        @media (max-width: 992px) {
            .process-content {
                padding-right: 0;
                margin-bottom: 50px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .step-item {
                flex-direction: column;
                text-align: center;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .action-container {
                flex-direction: column;
                text-align: center;
            }

            .action-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

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

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

            .timeline-overlay {
                position: static;
                width: 100%;
                margin-top: 20px;
            }

            .quality-indicators {
                flex-direction: column;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-start-process, .btn-schedule-meeting {
                min-width: auto;
            }
        }

/* Block 5 */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 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" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
}

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

.form-content {
    padding: 40px;
    height: 100%;
}

.form-header {
    margin-bottom: 48px;
}

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

.form-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.form-features {
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

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

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

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

.trust-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.trust-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

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

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #667eea;
}

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

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    color: #4a5568;
    font-size: 0.875rem;
}

.badge-item i {
    color: #48bb78;
    margin-right: 8px;
    width: 16px;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.contact-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
}

.form-inner {
    padding: 40px;
}

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

.form-title-small {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.form-desc-small {
    color: #4a5568;
    font-size: 1rem;
    margin: 0;
}

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

.field-group {
    margin-bottom: 24px;
}

.field-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 1rem;
    z-index: 2;
}

.form-input, .form-select {
    width: 100%;
    height: 56px;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    color: #2d3748;
}

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

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

.privacy-notice {
    margin-bottom: 32px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.checkbox-wrapper:last-child {
    margin-bottom: 0;
}

.privacy-checkbox, .marketing-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.privacy-label, .marketing-label {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

.privacy-label a {
    color: #667eea;
    text-decoration: none;
}

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

.form-actions {
    text-align: center;
}

.submit-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

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

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

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

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #718096;
    font-size: 0.875rem;
}

.form-note i {
    color: #48bb78;
}

.contact-alternatives {
    margin-top: 32px;
    padding: 24px;
    background: #f7fafc;
    border-radius: 16px;
}

.alternative-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

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

.contact-method:hover .method-icon i {
    color: white;
}

.contact-method:hover .method-title,
.contact-method:hover .method-detail {
    color: white;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.method-icon i {
    font-size: 1.125rem;
    color: #667eea;
    transition: all 0.2s ease;
}

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

.method-title {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.method-detail {
    color: #4a5568;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

@media (max-width: 991px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-content {
        padding: 0 20px 40px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-inner {
        padding: 32px 24px;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-inner {
        padding: 24px 20px;
    }
    
    .feature-item {
        margin-bottom: 24px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .trust-section {
        padding: 24px;
    }
}
