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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 32, 71, 0.85) 0%, rgba(45, 123, 251, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    color: white;
    z-index: 2;
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #b3d9ff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64b5f6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary-custom {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
    color: white;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-badge i {
    color: #64b5f6;
}

.hero-image-container {
    position: relative;
    height: 500px;
    margin-top: 2rem;
}

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

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 280px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
}

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

.services-showcase::before {
    content: '';
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.05;
    top: -150px;
    right: -150px;
    z-index: 1;
}

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

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

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

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

.service-card::before {
    content: '';
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.primary-service, .secondary-service {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

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

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

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.service-features i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.service-image {
    margin-top: auto;
}

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

.compact-service {
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.compact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.compact-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

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

.compact-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.compact-highlight {
    background: linear-gradient(135deg, #ddd6fe, #fce7f3);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    margin-top: auto;
}

.highlight-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #7c3aed;
}

.service-cta-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    position: relative;
}

.service-cta-section::before {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

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

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

.cta-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.cta-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-cta-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .service-stats {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .services-showcase {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-cta-section {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

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

.process-workflow::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

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

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

.workflow-visual {
    position: relative;
    margin-bottom: 40px;
}

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

.visual-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.success-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.metric-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.workflow-steps {
    padding-left: 20px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 70px;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #e2e8f0, transparent);
}

.step-item:last-child::before {
    display: none;
}

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

.active-step .step-number {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

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

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

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
}

.workflow-benefits {
    margin-top: 80px;
    text-align: center;
}

.benefits-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

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

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

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

.workflow-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

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

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

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

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

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

.primary-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
    color: #667eea;
}

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

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

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.stat-big-label {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .workflow-title {
        font-size: 2.4rem;
    }
    
    .workflow-subtitle {
        font-size: 1.1rem;
    }
    
    .step-item {
        gap: 16px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .workflow-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-stats {
        flex-direction: row;
        justify-content: center;
        gap: 48px;
    }
}

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

        .testimonials-showcase::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="testimonial-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
            pointer-events: none;
        }

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

        .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 24px;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
        }

        .testimonials-title {
            font-size: 48px;
            font-weight: 800;
            color: #1e293b;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1e293b, #475569);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
        }

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

        .featured-testimonial {
            border: 2px solid #3b82f6;
            box-shadow: 0 24px 80px rgba(59, 130, 246, 0.2);
        }

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

        .client-avatar {
            position: relative;
        }

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

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

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

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

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

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

        .testimonial-text::before {
            content: '"';
            font-size: 64px;
            color: #e2e8f0;
            position: absolute;
            top: -20px;
            left: -16px;
            font-family: serif;
        }

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

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

        .metric-value {
            display: block;
            font-size: 24px;
            font-weight: 800;
            color: #3b82f6;
            line-height: 1;
        }

        .metric-label {
            font-size: 12px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .testimonial-highlight {
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            padding: 16px;
            border-radius: 12px;
            border-left: 4px solid #3b82f6;
            margin-top: 20px;
        }

        .testimonial-highlight i {
            color: #3b82f6;
            font-size: 18px;
        }

        .testimonial-highlight span {
            font-weight: 600;
            color: #1e293b;
        }

        .testimonial-video-section {
            margin-bottom: 32px;
        }

        .video-thumbnail {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
        }

        .video-bg {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            text-align: center;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background: white;
            color: #3b82f6;
        }

        .video-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .video-description {
            font-size: 16px;
            opacity: 0.9;
        }

        .testimonials-summary {
            padding: 40px 0;
        }

        .summary-title {
            font-size: 36px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
        }

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

        .summary-stats {
            margin-bottom: 40px;
        }

        .stat-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            padding: 20px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .stat-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .stat-number {
            display: block;
            font-size: 24px;
            font-weight: 800;
            color: #1e293b;
            line-height: 1.2;
        }

        .stat-description {
            font-size: 14px;
            color: #64748b;
            line-height: 1.4;
        }

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

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

        .testimonial-cta-btn.primary {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
        }

        .testimonial-cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
            color: white;
        }

        .testimonial-cta-btn.secondary {
            background: white;
            color: #3b82f6;
            border: 2px solid #3b82f6;
        }

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

        .testimonials-footer {
            margin-top: 80px;
            padding: 40px 0;
            border-top: 1px solid #e2e8f0;
        }

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

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
        }

        .trust-badge i {
            color: #3b82f6;
            font-size: 18px;
        }

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

            .testimonials-title {
                font-size: 36px;
            }

            .testimonials-subtitle {
                font-size: 18px;
            }

            .testimonial-card {
                padding: 24px;
            }

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

            .testimonial-metrics {
                justify-content: center;
            }

            .summary-title {
                font-size: 28px;
            }

            .summary-actions {
                flex-direction: column;
            }

            .testimonial-cta-btn {
                justify-content: center;
            }

            .trust-indicators {
                gap: 20px;
            }

            .trust-badge {
                font-size: 12px;
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }

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

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

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.form-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 80px;
}

.form-visual {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    align-items: flex-end;
}

.success-indicators {
    width: 100%;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

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

.indicator-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.indicator-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.indicator-title {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.indicator-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.form-content {
    padding: 48px;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-intro {
    margin-bottom: 36px;
}

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

.intro-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

.form-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    margin: 0;
}

.input-wrapper {
    position: relative;
}

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

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #fafbfc;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.form-input:focus + .input-icon,
.form-input:not(:placeholder-shown) + .input-icon {
    color: #667eea;
}

.field-hint {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
}

.form-benefits {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.benefits-title {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 16px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-number {
    width: 28px;
    height: 28px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.benefit-desc {
    color: #6b7280;
    font-size: 13px;
}

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

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    min-width: 280px;
    justify-content: center;
}

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

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

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

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

.submit-note {
    margin-top: 16px;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
}

.alternative-contact {
    margin-top: 40px;
}

.divider {
    text-align: center;
    position: relative;
    margin: 32px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    background: white;
    color: #9ca3af;
    padding: 0 16px;
    font-size: 14px;
    position: relative;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-option:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.option-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-title {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.option-desc {
    color: #6b7280;
    font-size: 13px;
}

.trust-section {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.client-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.security-badge i {
    color: #10b981;
}

@media (max-width: 992px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-visual {
        min-height: 300px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-content {
        padding: 32px;
    }
    
    .trust-logos {
        gap: 24px;
    }
    
    .client-logo {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.125rem;
    }
    
    .form-content {
        padding: 24px;
    }
    
    .submit-button {
        min-width: 100%;
    }
    
    .security-badges {
        gap: 16px;
    }
    
    .trust-section {
        padding: 32px 24px;
    }
}
