/* Conversion Trust Block */
.conversion-trust-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.conversion-trust-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745);
    border-radius: 0 0 4px 4px;
}

.trust-message {
    margin-bottom: 32px;
}

.trust-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: 18px;
    color: #495057;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.trust-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}

.proof-number {
    font-size: 32px;
    font-weight: 900;
    color: #0066cc;
    line-height: 1;
}

.proof-text {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.phone-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.phone-intro {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-link-large {
    font-size: 28px;
    font-weight: 900;
    color: #0066cc;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.phone-link-large:hover {
    color: #0052a3;
    text-decoration: none;
    transform: scale(1.05);
}

.simple-call-btn {
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.simple-call-btn:hover {
    background: #0052a3;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

@media (max-width: 767px) {
    .conversion-trust-block {
        padding: 32px 24px;
    }
    
    .trust-title {
        font-size: 24px;
    }
    
    .trust-subtitle {
        font-size: 16px;
    }
    
    .trust-proof {
        gap: 24px;
        margin-bottom: 28px;
    }
    
    .proof-number {
        font-size: 28px;
    }
    
    .proof-text {
        font-size: 12px;
    }
    
    .phone-highlight {
        padding: 16px 24px;
        width: 100%;
        max-width: 300px;
    }
    
    .phone-link-large {
        font-size: 24px;
    }
    
    .simple-call-btn {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
}